:root {
  --bg: #f5efe4;
  --surface: rgba(255, 252, 247, 0.8);
  --surface-strong: #fffdf9;
  --ink: #1f1d1a;
  --muted: #6e665b;
  --line: rgba(82, 65, 40, 0.12);
  --accent: #d5521f;
  --accent-deep: #8d2f14;
  --accent-soft: #f5c48f;
  --shadow: 0 24px 80px rgba(88, 56, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(245, 196, 143, 0.9), transparent 28%),
    radial-gradient(circle at top right, rgba(213, 82, 31, 0.16), transparent 22%),
    linear-gradient(180deg, #fff6eb 0%, var(--bg) 45%, #f9f3ea 100%);
  font-family: "Noto Sans SC", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 60px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, #ffb54c 100%);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.brand-name,
.brand-subtitle,
.eyebrow,
.hero-points,
.panel-question,
.decision-label {
  margin: 0;
}

.brand-name {
  font-weight: 800;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ghost-link {
  color: var(--muted);
}

.cta-link,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cta-link,
.primary-btn {
  background: var(--accent);
  color: white;
  box-shadow: 0 14px 28px rgba(213, 82, 31, 0.24);
}

.cta-link:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-1px);
}

.cta-link {
  padding: 12px 18px;
}

.hero {
  padding: 8px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.feature-card,
.trust-card,
.contact-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 36px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(255, 247, 237, 0.9));
}

.eyebrow {
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.contact-card h2 {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  line-height: 1.02;
}

.hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  letter-spacing: -0.04em;
}

.hero-text,
.feature-card p,
.process-step p,
.trust-card p,
.contact-text {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.primary-btn,
.secondary-btn {
  min-width: 140px;
  padding: 14px 22px;
  font-weight: 700;
}

.secondary-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(245, 196, 143, 0.3);
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-panel {
  position: relative;
  padding: 24px;
  border-radius: 36px;
  background:
    linear-gradient(150deg, rgba(213, 82, 31, 0.12), rgba(255, 255, 255, 0.7)),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(255, 246, 235, 0.9));
  overflow: hidden;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-panel::before {
  top: -90px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: rgba(245, 196, 143, 0.48);
}

.hero-panel::after {
  bottom: -90px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: rgba(213, 82, 31, 0.12);
}

.panel-window {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(104, 71, 41, 0.1);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.panel-header {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(104, 71, 41, 0.08);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(141, 47, 20, 0.35);
}

.panel-body {
  padding: 24px;
}

.panel-question {
  color: var(--muted);
  font-size: 0.88rem;
}

.panel-bubble {
  margin: 10px 0 18px;
  padding: 16px 18px;
  border-radius: 22px 22px 22px 8px;
  background: linear-gradient(135deg, rgba(255, 218, 185, 0.88), rgba(255, 242, 227, 0.92));
  font-weight: 600;
  line-height: 1.7;
}

.decision-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 240, 0.94));
  border: 1px solid rgba(104, 71, 41, 0.1);
}

.decision-label {
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.decision-card h2 {
  margin: 8px 0 12px;
  font-size: 1.4rem;
}

.decision-card p,
.decision-card li {
  color: var(--muted);
  line-height: 1.7;
}

.decision-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.section {
  margin-top: 34px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}

.feature-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.trust-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.82);
}

.feature-card h3,
.trust-card h3,
.process-step h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid var(--line);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent) 0%, #ffb54c 100%);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(150deg, rgba(245, 196, 143, 0.28), rgba(255, 255, 255, 0.9)),
    rgba(255, 251, 245, 0.84);
}

.contact-card h2 {
  margin: 10px 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.contact-text strong {
  color: var(--ink);
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-grid,
  .trust-grid,
  .contact-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 12px;
  }

  .hero-copy,
  .hero-panel,
  .feature-card,
  .trust-card,
  .process-step,
  .contact-card {
    padding: 20px;
    border-radius: 24px;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .topbar-actions,
  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .secondary-btn,
  .cta-link {
    width: 100%;
  }

  .process-step {
    grid-template-columns: 1fr;
  }
}
