:root {
  --bg: #f7f0e3;
  --bg-deep: #102019;
  --card: rgba(255, 250, 241, 0.84);
  --card-strong: #fff8ee;
  --ink: #101616;
  --muted: #526060;
  --line: rgba(16, 32, 25, 0.12);
  --brand: #ff6b2c;
  --brand-dark: #cf4b12;
  --accent: #0c7f62;
  --accent-soft: #dbfff0;
  --shadow: 0 30px 80px rgba(16, 32, 25, 0.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 157, 73, 0.28), transparent 32%),
    linear-gradient(180deg, #fff8ea 0%, var(--bg) 50%, #efe5d4 100%);
}

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

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.75;
  pointer-events: none;
}

.orb-a {
  width: 28rem;
  height: 28rem;
  background: rgba(255, 122, 70, 0.18);
  top: -8rem;
  right: -8rem;
}

.orb-b {
  width: 22rem;
  height: 22rem;
  background: rgba(22, 166, 126, 0.16);
  left: -7rem;
  top: 26rem;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 32, 25, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 25, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 85%);
  pointer-events: none;
}

.topbar,
.hero,
.trust-strip,
.section,
.footer {
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #ff9b54);
  color: #fff7f1;
  box-shadow: 0 12px 30px rgba(255, 107, 44, 0.28);
}

.topnav {
  display: inline-flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}

.topnav a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff9f3;
  background: linear-gradient(135deg, var(--brand) 0%, #ff9f59 100%);
  box-shadow: 0 16px 35px rgba(255, 107, 44, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(16, 32, 25, 0.12);
  backdrop-filter: blur(10px);
}

.button-ghost {
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(16, 32, 25, 0.08);
}

.button-large {
  padding: 18px 28px;
  font-size: 1.05rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  padding: 42px 0 26px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1,
.section-head h2,
.section-cta h2,
.privacy-box h2,
.price-card h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(2.35rem, 4.7vw, 4.45rem);
  max-width: 12ch;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 62ch;
  font-size: 1.14rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-lead span {
  color: var(--ink);
  font-weight: 700;
}

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

.hero-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #ffb16c);
  box-shadow: 0 0 0 8px rgba(255, 107, 44, 0.12);
}

.hero-card {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(420px, 100%);
  border-radius: 38px;
  padding: 18px;
  background: linear-gradient(180deg, #16251d 0%, #0e1714 100%);
  box-shadow: 0 30px 80px rgba(8, 14, 12, 0.32);
  transform: rotate(2deg);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d9fbe8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #63ffba;
  box-shadow: 0 0 0 8px rgba(99, 255, 186, 0.12);
}

.chat {
  background: linear-gradient(180deg, #f3eadf, #efe3d6);
  border-radius: 28px;
  padding: 18px;
  min-height: 520px;
}

.bubble {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 0.98rem;
}

.bubble-user {
  margin-left: auto;
  background: linear-gradient(135deg, #ff8d4c, #ffb268);
  color: #fff9f3;
}

.bubble-bot {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 32, 25, 0.08);
}

.bubble-highlight {
  background: linear-gradient(180deg, #e6fff0, #f6fff9);
  border-color: rgba(12, 127, 98, 0.16);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px 0 6px;
}

.trust-strip div {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(16, 32, 25, 0.08);
  box-shadow: 0 18px 40px rgba(16, 32, 25, 0.08);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: 64px 0 24px;
}

.section-head {
  max-width: 800px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.pain-grid,
.feature-grid,
.flow-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pain-card,
.feature-card,
.flow-step,
.quote-card,
.cta-box,
.privacy-box,
.price-card,
.faq-list details {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.pain-card,
.feature-card,
.flow-step {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.pain-card span {
  font-size: 2rem;
}

.pain-card h3,
.feature-card h3,
.flow-step h3 {
  margin: 12px 0 10px;
  font-size: 1.18rem;
}

.pain-card p,
.feature-card p,
.flow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: currentColor;
  opacity: 0.18;
}

.accent-sun { color: #d45a1f; }
.accent-lime { color: #127c62; }
.accent-rose { color: #a44636; }
.accent-cyan { color: #157a8f; }
.accent-violet { color: #5f5bbd; }
.accent-orange { color: #b96a10; }

.step-num {
  display: inline-flex;
  margin-bottom: 10px;
  font-family: "Unbounded", sans-serif;
  color: var(--brand-dark);
}

.family-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.family-copy,
.family-side {
  background: rgba(255, 248, 238, 0.78);
  border: 1px solid rgba(16, 32, 25, 0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}

.family-copy h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1.15;
}

.family-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.family-list {
  margin: 20px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.family-list li {
  color: var(--ink);
  font-weight: 600;
}

.family-side {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(12, 127, 98, 0.12), rgba(255, 107, 44, 0.08)),
    rgba(255, 248, 238, 0.78);
}

.quote-card {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.quote-card p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
}

.quote-card span {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
}

.privacy-box,
.price-card,
.cta-box {
  border-radius: var(--radius-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.privacy-box {
  background:
    linear-gradient(135deg, rgba(12, 127, 98, 0.14), rgba(255, 255, 255, 0.36)),
    rgba(255, 249, 243, 0.88);
}

.privacy-box h2,
.price-card h2,
.cta-box h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
}

.privacy-box p,
.price-card p,
.cta-actions p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.privacy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  align-content: center;
}

.privacy-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.privacy-list li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 10px;
}

.price-card {
  background:
    linear-gradient(135deg, rgba(255, 107, 44, 0.12), rgba(12, 127, 98, 0.08)),
    rgba(255, 249, 243, 0.86);
  align-items: center;
}

.price-box {
  padding: 24px;
  border-radius: 26px;
  background: #102019;
  color: #fff8ee;
  box-shadow: 0 30px 60px rgba(16, 32, 25, 0.22);
}

.price-label {
  display: block;
  color: #a4cbb7;
  font-weight: 700;
}

.price-box strong {
  display: block;
  margin: 8px 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.price-box p {
  color: #cfe1d8;
  margin-bottom: 18px;
}

.section-cta {
  padding-bottom: 8px;
}

.cta-box {
  background:
    linear-gradient(135deg, rgba(255, 107, 44, 0.12), rgba(12, 127, 98, 0.08)),
    rgba(255, 249, 243, 0.86);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.faq-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.faq-list details {
  border-radius: var(--radius-md);
  padding: 0 20px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 34px 0 96px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer-button {
  min-width: 220px;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 20;
  display: none;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fff9f3;
  background: linear-gradient(135deg, var(--brand), #ff9f59);
  box-shadow: 0 18px 40px rgba(255, 107, 44, 0.34);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .cta-box,
  .privacy-box,
  .price-card,
  .family-panel {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  .feature-grid,
  .flow-grid,
  .pain-grid,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topnav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .topbar-cta {
    width: 100%;
  }

  .feature-grid,
  .flow-grid,
  .pain-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 18px;
  }

  .hero h1 {
    max-width: none;
  }

  .phone {
    transform: none;
  }

  .chat {
    min-height: auto;
  }

  .footer {
    align-items: stretch;
  }

  .footer-button,
  .hero-actions .button,
  .price-box .button {
    width: 100%;
  }

  .sticky-cta {
    display: inline-flex;
  }
}
