:root {
    --canvas: #F9F1EB;
    --surface: #FFFBF8;
    --ink: #211712;
    --n1: #F2E8E0; --n2: #E8DAD0; --n3: #CFBEB1; --n4: #A0907F; --n5: #66564B;
    --a1: #FCE7DC; --a2: #F6C6AF; --a3: #EE9B79; --a4: #E2714D; --a5: #B0432A;
    --jade: #3F8F73;
    --glow: rgba(226,113,77,0.30);
    --radius: 22px;
    --shadow-float: 0 18px 40px -12px rgba(33,28,21,0.18);
    --shadow-lift: 0 30px 60px -20px rgba(33,28,21,0.28);
    --maxw: 1160px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    color: var(--ink);
    background: var(--canvas);
    line-height: 1.5;
    overflow-x: hidden;
  }
  h1, h2, h3, .display { font-family: 'Quicksand', sans-serif; letter-spacing: -0.02em; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .accent { color: var(--a4); }
  .grad-text {
    background: linear-gradient(105deg, var(--a4), var(--a3) 55%, var(--a2));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }

  /* ---------- buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Hanken Grotesk'; font-weight: 700; font-size: 15px;
    padding: 13px 22px; border-radius: 999px; cursor: pointer; border: none;
    transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, background .25s;
  }
  .btn-primary { background: var(--a4); color: #fff; box-shadow: 0 10px 24px -8px var(--glow); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px var(--glow); background: var(--a5); }
  .btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--n2); }
  .btn-ghost:hover { border-color: var(--a3); transform: translateY(-2px); }

  /* ---------- store badges ---------- */
  .badges { display: flex; gap: 12px; flex-wrap: wrap; }
  .store {
    display: inline-flex; align-items: center; gap: 11px;
    background: var(--ink); color: #fff; border-radius: 14px; padding: 10px 18px;
    transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
    box-shadow: 0 10px 24px -14px rgba(33,28,21,.6);
  }
  .store:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -14px rgba(33,28,21,.6); }
  .store svg { width: 24px; height: 24px; flex: none; }
  .store .s-top { font-size: 10px; opacity: .8; letter-spacing: .04em; line-height: 1; }
  .store .s-big { font-family: 'Quicksand'; font-weight: 600; font-size: 17px; line-height: 1.2; }

  /* ---------- nav ---------- */
  header {
    position: sticky; top: 0; z-index: 50; transition: all .3s;
    padding: 18px 0; border-bottom: 1px solid transparent;
  }
  header.scrolled {
    background: rgba(249,241,235,0.78); backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--n1); padding: 12px 0;
  }
  nav { display: flex; align-items: center; justify-content: space-between; }
  .logo { display: flex; align-items: center; gap: 11px; font-family: 'Quicksand'; font-weight: 700; font-size: 21px; }
  .logo img { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 4px 12px -4px var(--glow); }
  .nav-links { display: flex; gap: 30px; font-weight: 600; font-size: 15px; color: var(--n5); }
  .nav-links a { transition: color .2s; }
  .nav-links a:hover { color: var(--a4); }
  .nav-cta { display: flex; align-items: center; gap: 14px; }
  @media (max-width: 860px) { .nav-links { display: none; } }

  /* ---------- hero ---------- */
  .hero { position: relative; text-align: center; padding: 70px 0 30px; }
  .hero-glow {
    position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 700px; pointer-events: none; z-index: 0;
    background: radial-gradient(ellipse at center, var(--glow), transparent 62%);
    filter: blur(20px); animation: breathe 9s ease-in-out infinite;
  }
  @keyframes breathe { 0%,100% { opacity:.85; transform: translateX(-50%) scale(1);} 50% { opacity:1; transform: translateX(-50%) scale(1.06);} }
  .hero .inner { position: relative; z-index: 1; }
  .pill {
    display: inline-flex; align-items: center; gap: 8px; background: var(--surface);
    border: 1px solid var(--n2); color: var(--n5); font-weight: 600; font-size: 13.5px;
    padding: 7px 15px; border-radius: 999px; box-shadow: var(--shadow-float);
  }
  .pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--a4); box-shadow: 0 0 0 4px var(--a1); }
  .hero h1 { font-size: clamp(40px, 7vw, 76px); font-weight: 700; line-height: 1.02; margin: 22px 0 0; }
  .hero p.sub { font-size: clamp(16px, 2vw, 20px); color: var(--n5); max-width: 600px; margin: 20px auto 0; }
  .hero .cta-row { display: flex; justify-content: center; margin-top: 30px; }
  .rating-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; color: var(--n5); font-size: 14px; font-weight: 600; }
  .stars { color: var(--a4); letter-spacing: 2px; }

  /* ---------- phone ---------- */
  .phone {
    position: relative; width: 280px; border-radius: 44px; padding: 11px;
    background: linear-gradient(165deg, #2a201a, #181210);
    box-shadow: var(--shadow-lift), inset 0 0 0 1.5px rgba(255,255,255,.06);
  }
  .phone::before {
    content: ''; position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
    width: 92px; height: 24px; background: #181210; border-radius: 0 0 16px 16px; z-index: 3;
  }
  .phone img { border-radius: 34px; width: 100%; }
  .phone-stage { position: relative; display: flex; justify-content: center; margin-top: 44px; }
  .phone-stage .phone { animation: float 6s ease-in-out infinite; }
  @keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-16px);} }
  .phone-halo {
    position: absolute; width: 460px; height: 460px; top: 40px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(circle, var(--glow), transparent 65%); filter: blur(10px); z-index: 0;
  }
  /* floating glass chips */
  .chip {
    position: absolute; z-index: 4; background: rgba(255,251,248,.82); backdrop-filter: blur(8px);
    border: 1px solid var(--n1); border-radius: 16px; padding: 11px 15px; box-shadow: var(--shadow-float);
    display: flex; align-items: center; gap: 10px; animation: floatChip 7s ease-in-out infinite;
  }
  .chip .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 17px; }
  .chip .c-label { font-size: 11px; color: var(--n4); font-weight: 600; line-height: 1; }
  .chip .c-val { font-family: 'Quicksand'; font-weight: 700; font-size: 17px; line-height: 1.2; }
  .chip.left { top: 120px; left: max(20px, calc(50% - 290px)); animation-delay: -1.5s; }
  .chip.right { top: 250px; right: max(20px, calc(50% - 300px)); animation-delay: -3.5s; }
  @keyframes floatChip { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }
  @media (max-width: 720px) { .chip { display: none; } }

  /* ---------- stat strip ---------- */
  .strip { display: flex; justify-content: center; gap: clamp(24px, 6vw, 80px); flex-wrap: wrap; padding: 56px 0 10px; }
  .stat { text-align: center; }
  .stat .num { font-family: 'Quicksand'; font-weight: 700; font-size: clamp(30px, 4vw, 44px); }
  .stat .lab { color: var(--n5); font-weight: 600; font-size: 14px; margin-top: 2px; }

  /* ---------- sections ---------- */
  section { padding: 70px 0; }
  .eyebrow { color: var(--a4); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
  .sec-head { text-align: center; max-width: 640px; margin: 0 auto 10px; }
  .sec-head h2 { font-size: clamp(30px, 4.5vw, 48px); font-weight: 700; line-height: 1.05; margin-top: 12px; }
  .sec-head p { color: var(--n5); font-size: 18px; margin-top: 14px; }

  .feature { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(30px, 6vw, 80px); padding: 50px 0; }
  .feature.rev .f-text { order: 2; }
  .f-text h3 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 700; line-height: 1.08; margin: 14px 0 16px; }
  .f-text p { color: var(--n5); font-size: 17px; max-width: 440px; }
  .f-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
  .f-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
  .f-list .check { width: 24px; height: 24px; border-radius: 50%; background: var(--a1); color: var(--a5); display: grid; place-items: center; flex: none; font-size: 13px; }
  .f-visual { display: flex; justify-content: center; position: relative; }
  .f-visual .phone { width: 250px; }
  .f-visual .phone-halo { width: 380px; height: 380px; top: 20px; }
  @media (max-width: 800px) {
    .feature { grid-template-columns: 1fr; text-align: center; }
    .feature.rev .f-text { order: 0; }
    .f-text p, .f-list { margin-left: auto; margin-right: auto; }
    .f-list li { justify-content: center; }
  }

  /* ---------- how it works ---------- */
  .how { background: var(--surface); border-radius: 40px; margin: 0 24px; }
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
  .step { background: var(--canvas); border: 1px solid var(--n1); border-radius: var(--radius); padding: 30px; text-align: center; }
  .step .n { width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 16px; background: linear-gradient(160deg, var(--a3), var(--a4)); color: #fff; display: grid; place-items: center; font-family: 'Quicksand'; font-weight: 700; font-size: 22px; box-shadow: 0 10px 22px -8px var(--glow); }
  .step h4 { font-family: 'Quicksand'; font-weight: 700; font-size: 21px; margin-bottom: 8px; }
  .step p { color: var(--n5); font-size: 15px; }
  @media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

  /* ---------- testimonials ---------- */
  .tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
  .tcard { background: var(--surface); border: 1px solid var(--n1); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-float); }
  .tcard .stars { font-size: 15px; }
  .tcard blockquote { font-size: 16px; margin: 14px 0 20px; color: var(--ink); }
  .tperson { display: flex; align-items: center; gap: 12px; }
  .tperson .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: 'Quicksand'; font-weight: 700; }
  .tperson .who { font-weight: 700; font-size: 15px; }
  .tperson .role { color: var(--n4); font-size: 13px; }
  @media (max-width: 820px) { .tgrid { grid-template-columns: 1fr; } }

  /* ---------- final CTA ---------- */
  .cta-panel {
    position: relative; overflow: hidden; text-align: center; color: #fff;
    background: linear-gradient(150deg, var(--a4), var(--a5)); border-radius: 40px;
    padding: 70px 30px; margin: 0 24px; box-shadow: var(--shadow-lift);
  }
  .cta-panel::after { content: ''; position: absolute; width: 600px; height: 600px; top: -300px; right: -200px; background: radial-gradient(circle, rgba(255,255,255,.25), transparent 60%); }
  .cta-panel h2 { font-size: clamp(32px, 5vw, 54px); font-weight: 700; position: relative; }
  .cta-panel p { font-size: 19px; opacity: .92; margin: 16px auto 30px; max-width: 520px; position: relative; }
  .cta-panel .badges { justify-content: center; position: relative; }
  .cta-panel .store { background: #fff; color: var(--ink); }

  /* ---------- footer ---------- */
  footer { padding: 60px 0 40px; }
  .foot-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--n1); }
  .foot-cols { display: flex; gap: clamp(30px, 8vw, 90px); flex-wrap: wrap; }
  .foot-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--n4); margin-bottom: 12px; }
  .foot-col a { display: block; color: var(--n5); font-weight: 600; font-size: 15px; padding: 5px 0; transition: color .2s; }
  .foot-col a:hover { color: var(--a4); }
  .foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; color: var(--n4); font-size: 13.5px; }
  .foot-bottom .disclaimer { max-width: 560px; }

  /* ---------- scroll reveal ---------- */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-glow, .phone-stage .phone, .chip { animation: none; }
  }

  /* =========================================================
     SUBPAGE STYLES (privacy, terms, faq, pricing, about, contact, 404)
     Added for the multi-page build. Warm, rounded, generous
     whitespace, consistent with the hero design language.
     ========================================================= */

  /* ===== shared page hero (subpages) ===== */
  .page-hero { position: relative; text-align: center; padding: 86px 0 26px; }
  .page-hero-glow {
    position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
    width: 820px; height: 620px; pointer-events: none; z-index: 0;
    background: radial-gradient(ellipse at center, var(--glow), transparent 62%);
    filter: blur(20px);
  }
  .page-hero .inner { position: relative; z-index: 1; }
  .page-hero h1 { font-size: clamp(34px, 6vw, 62px); font-weight: 700; line-height: 1.04; margin-top: 20px; }
  .page-hero p.lead { font-size: clamp(16px, 2vw, 20px); color: var(--n5); max-width: 640px; margin: 18px auto 0; }
  .page-hero .updated { margin-top: 16px; color: var(--n4); font-size: 14px; font-weight: 600; }

  /* ===== legal / doc prose (privacy, terms) ===== */
  .doc { max-width: 840px; margin: 24px auto 0; padding: 0 24px; }
  .doc-card {
    background: var(--surface); border: 1px solid var(--n1); border-radius: 30px;
    padding: clamp(26px, 5vw, 56px); box-shadow: var(--shadow-float);
  }
  .doc h2 { font-size: clamp(21px, 3vw, 28px); font-weight: 700; margin: 38px 0 12px; line-height: 1.15; }
  .doc h2:first-child { margin-top: 0; }
  .doc h3 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 18px; margin: 24px 0 8px; }
  .doc p { color: var(--n5); font-size: 16.5px; margin-bottom: 14px; }
  .doc p:last-child { margin-bottom: 0; }
  .doc strong { color: var(--ink); font-weight: 700; }
  .doc a.inline { color: var(--a4); font-weight: 700; }
  .doc a.inline:hover { color: var(--a5); }
  .doc ul { list-style: none; margin: 4px 0 18px; display: flex; flex-direction: column; gap: 11px; }
  .doc ul li { position: relative; padding-left: 22px; color: var(--n5); font-size: 16.5px; }
  .doc ul li::before {
    content: ''; position: absolute; left: 2px; top: 9px;
    width: 8px; height: 8px; border-radius: 50%; background: var(--a3);
  }
  .doc .toc { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 8px; }
  .doc .toc a { font-size: 13.5px; font-weight: 600; color: var(--n5); background: var(--canvas); border: 1px solid var(--n2); border-radius: 999px; padding: 6px 13px; transition: all .2s; }
  .doc .toc a:hover { color: var(--a4); border-color: var(--a3); }
  .callout {
    background: var(--a1); border: 1px solid var(--a2); border-radius: 18px;
    padding: 18px 22px; margin: 22px 0; color: var(--n5); font-size: 15.5px;
  }
  .callout strong { color: var(--a5); }

  /* ===== faq accordion ===== */
  .faq-wrap { max-width: 760px; margin: 26px auto 0; padding: 0 24px; display: flex; flex-direction: column; gap: 14px; }
  .faq-item { background: var(--surface); border: 1px solid var(--n1); border-radius: 18px; overflow: hidden; transition: border-color .25s, box-shadow .25s; }
  .faq-item.open { border-color: var(--a2); box-shadow: var(--shadow-float); }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 17.5px; color: var(--ink);
  }
  .faq-q .ic {
    width: 28px; height: 28px; flex: none; border-radius: 50%; background: var(--a1); color: var(--a5);
    display: grid; place-items: center; font-size: 19px; line-height: 1; transition: transform .3s, background .25s, color .25s;
  }
  .faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--a4); color: #fff; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .faq-a-inner { padding: 0 24px 22px; color: var(--n5); font-size: 16px; }
  .faq-a-inner a { color: var(--a4); font-weight: 700; }

  /* ===== pricing ===== */
  .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; align-items: stretch; }
  .price-card {
    position: relative; background: var(--surface); border: 1px solid var(--n1); border-radius: 28px;
    padding: 36px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-float);
  }
  .price-card.featured { border: 1.6px solid var(--a3); box-shadow: var(--shadow-lift); }
  .price-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap;
    background: linear-gradient(150deg, var(--a3), var(--a4)); color: #fff; font-weight: 700;
    font-size: 12px; letter-spacing: .03em; padding: 6px 16px; border-radius: 999px;
    box-shadow: 0 10px 22px -8px var(--glow);
  }
  .price-name { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 22px; }
  .price-tag { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 4px; }
  .price-tag .amt { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 46px; line-height: 1; }
  .price-tag .per { color: var(--n4); font-weight: 600; font-size: 15px; }
  .price-sub { color: var(--n5); font-size: 14.5px; min-height: 21px; }
  .price-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
  .price-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--n5); }
  .price-list li .check { width: 22px; height: 22px; border-radius: 50%; background: var(--a1); color: var(--a5); display: grid; place-items: center; flex: none; font-size: 12px; margin-top: 1px; }
  .price-list li.muted { color: var(--n4); }
  .price-list li.muted .check { background: var(--n1); color: var(--n4); }
  .price-card .btn { width: 100%; justify-content: center; }
  .price-note { text-align: center; color: var(--n4); font-size: 14px; margin-top: 26px; }
  @media (max-width: 880px) {
    .price-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  }

  /* ===== about ===== */
  .about-lead { max-width: 760px; margin: 0 auto; text-align: center; }
  .about-lead p { color: var(--n5); font-size: 18px; margin-bottom: 18px; }
  .values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
  .value-card { background: var(--surface); border: 1px solid var(--n1); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-float); }
  .value-card .vic { width: 52px; height: 52px; border-radius: 16px; background: var(--a1); display: grid; place-items: center; font-size: 24px; margin-bottom: 16px; }
  .value-card h3 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 8px; }
  .value-card p { color: var(--n5); font-size: 15.5px; }
  @media (max-width: 720px) { .values { grid-template-columns: 1fr; } }

  /* ===== contact ===== */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; margin-top: 44px; align-items: start; }
  .ci-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
  .ci-item .ic { width: 46px; height: 46px; border-radius: 14px; background: var(--a1); display: grid; place-items: center; font-size: 20px; flex: none; }
  .ci-item h3 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 3px; }
  .ci-item p { color: var(--n5); font-size: 15px; }
  .ci-item a { color: var(--a4); font-weight: 700; }
  .form-card { background: var(--surface); border: 1px solid var(--n1); border-radius: 28px; padding: 34px; box-shadow: var(--shadow-float); }
  .field { margin-bottom: 18px; }
  .field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; }
  .field input, .field textarea {
    width: 100%; font-family: inherit; font-size: 15px; color: var(--ink); background: var(--canvas);
    border: 1.5px solid var(--n2); border-radius: 14px; padding: 13px 15px; transition: border-color .2s, box-shadow .2s;
  }
  .field input:focus, .field textarea:focus { outline: none; border-color: var(--a3); box-shadow: 0 0 0 4px var(--a1); }
  .field textarea { resize: vertical; min-height: 130px; }
  .form-card .btn { width: 100%; justify-content: center; margin-top: 4px; }
  .socials { display: flex; gap: 12px; margin-top: 12px; }
  .socials a { width: 44px; height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--n1); display: grid; place-items: center; color: var(--n5); font-weight: 700; font-size: 14px; transition: all .2s; }
  .socials a:hover { color: var(--a4); border-color: var(--a3); transform: translateY(-2px); }
  @media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

  /* ===== 404 ===== */
  .nf { min-height: 68vh; display: grid; place-items: center; text-align: center; position: relative; padding: 40px 24px; }
  .nf-glow { position: absolute; top: 46%; left: 50%; transform: translate(-50%,-50%); width: 720px; height: 600px; background: radial-gradient(ellipse at center, var(--glow), transparent 62%); filter: blur(20px); z-index: 0; pointer-events: none; }
  .nf .inner { position: relative; z-index: 1; }
  .nf .code { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: clamp(96px, 18vw, 180px); line-height: 1; }
  .nf h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 700; margin: 4px 0 14px; }
  .nf p { color: var(--n5); font-size: 18px; max-width: 460px; margin: 0 auto 28px; }
