:root {
    --cream: #f4f0e5;
    --cream-2: #efe8d8;
    --cream-3: #e9e1cf;
    --surface: #ffffff;
    --ink: #19202e;
    --ink-2: #5c6678;
    --ink-3: #8b94a4;
    --green: #1aa05a;
    --green-2: #15924f;
    --green-deep: #117a41;
    --green-soft: rgba(26,160,90,0.10);
    --green-line: rgba(26,160,90,0.28);
    --line: rgba(25,32,46,0.09);
    --line-2: rgba(25,32,46,0.06);
    --pill: #e9e1cf;
    --shadow-card: 0 1px 2px rgba(25,32,46,0.04), 0 14px 40px rgba(25,32,46,0.07);
    --r-lg: 28px;
    --r-md: 20px;
    --r-sm: 14px;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--cream); color: var(--ink);
    font-family: 'Manrope', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  h1, h2, h3 { font-family: 'Epilogue', system-ui, sans-serif; margin: 0; letter-spacing: -0.02em; }
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }
  .mi { display: inline-flex; align-items: center; justify-content: center; width: 1em; height: 1em; line-height: 0; flex-shrink: 0; }
  .mi svg { width: 1em; height: 1em; display: block; }
  .wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }

  /* ── NAV ───────────────────────────────────────────── */
  header.nav {
    position: sticky; top: 0; z-index: 100;
    padding: 16px 0; transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  }
  header.nav.scrolled {
    background: rgba(244,240,229,0.82);
    -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%);
    box-shadow: 0 1px 0 var(--line); padding: 10px 0;
  }
  .nav-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .brand { display: inline-flex; align-items: center; gap: 11px; }
  .brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
  img.brand-mark { border-radius: 10px; object-fit: cover; box-shadow: 0 2px 8px rgba(25,32,46,0.22); }
  .dl-icon { position: relative; z-index: 2; display: block; width: 88px; height: 88px;
    border-radius: 21px; object-fit: cover; margin: 0 auto 24px;
    box-shadow: 0 16px 34px rgba(0,0,0,0.32), 0 0 0 1px rgba(255,255,255,0.12); }
  .brand-name { font-family: 'Epilogue'; font-weight: 900; font-size: 23px; letter-spacing: -0.04em; color: var(--ink); }
  .brand-name .dash { color: var(--green); }
  .nav-cta { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
    background: var(--green); color: #fff; font-weight: 800; font-size: 14px;
    padding: 11px 18px; border-radius: 999px; transition: transform .12s ease, background .2s ease;
    box-shadow: 0 6px 18px rgba(26,160,90,0.30); }
  .nav-cta:hover { background: var(--green-2); transform: translateY(-1px); }
  .nav-cta .mi { font-size: 19px; }

  /* ── BUTTONS / STORE BADGES ───────────────────────── */
  .badges { display: flex; flex-wrap: wrap; gap: 12px; }
  .badge {
    display: inline-flex; align-items: center; gap: 11px;
    background: var(--ink); color: #fff;
    padding: 11px 18px 11px 16px; border-radius: 14px;
    transition: transform .14s ease, box-shadow .2s ease;
    box-shadow: 0 8px 22px rgba(25,32,46,0.18);
  }
  .badge:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(25,32,46,0.26); }
  .badge svg { flex-shrink: 0; }
  .badge .b-txt { display: flex; flex-direction: column; line-height: 1.12; }
  .badge .b-top { font-size: 10.5px; font-weight: 600; letter-spacing: 0.02em; opacity: 0.86; }
  .badge .b-bot { font-family: 'Epilogue'; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }

  /* ── HERO ─────────────────────────────────────────── */
  .hero { position: relative; padding: 26px 0 60px; overflow: hidden; }
  .hero-grid {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
    position: relative; z-index: 2;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-soft); color: var(--green-deep);
    border: 1px solid var(--green-line); border-radius: 999px;
    padding: 7px 14px 7px 11px; font-size: 12.5px; font-weight: 800; letter-spacing: 0.02em;
    margin-bottom: 22px;
  }
  .eyebrow .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--green);
    box-shadow: 0 0 0 4px rgba(26,160,90,0.18); }
  h1.hero-title { font-size: clamp(38px, 5.4vw, 62px); font-weight: 900; line-height: 1.02; }
  h1.hero-title .hl { color: var(--green); }
  .hero-sub { font-size: clamp(16px, 1.7vw, 19px); color: var(--ink-2); font-weight: 500;
    line-height: 1.55; max-width: 30em; margin-top: 20px; }
  .hero-cta { margin-top: 30px; }
  .hero-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
    font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
  .hero-note .mi { font-size: 18px; color: var(--green); }

  /* radar backdrop */
  .radar-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
  .radar-rings { position: absolute; top: -8%; right: -14%; width: 760px; height: 760px;
    opacity: 0.5; }
  .radar-glow { position: absolute; top: -20%; right: -10%; width: 620px; height: 620px;
    background: radial-gradient(circle at center, rgba(26,160,90,0.16), rgba(26,160,90,0) 65%);
    border-radius: 50%; }
  .radar-sweep { position: absolute; top: -8%; right: -14%; width: 760px; height: 760px;
    border-radius: 50%; opacity: 0.45;
    background: conic-gradient(from 0deg, rgba(26,160,90,0.20), rgba(26,160,90,0) 28%, rgba(26,160,90,0) 100%);
    -webkit-mask: radial-gradient(circle, #000 62%, transparent 63%);
            mask: radial-gradient(circle, #000 62%, transparent 63%);
    animation: sweep 7s linear infinite; }
  @keyframes sweep { to { transform: rotate(360deg); } }

  /* ── PHONE ────────────────────────────────────────── */
  .phone-stage { position: relative; display: flex; justify-content: center; }
  .phone {
    position: relative; width: 100%; max-width: 320px;
    background: #0d1016; border-radius: 46px; padding: 9px;
    box-shadow: 0 2px 4px rgba(25,32,46,0.10), 0 40px 80px rgba(25,32,46,0.22),
      inset 0 0 0 2px rgba(255,255,255,0.06);
  }
  .phone img { display: block; width: 100%; border-radius: 38px; }
  .phone.tilt { transform: rotate(2.2deg); }

  .float {
    position: absolute; z-index: 5;
    background: var(--surface); border-radius: 16px; padding: 11px 14px;
    box-shadow: 0 12px 30px rgba(25,32,46,0.16); border: 1px solid var(--line-2);
    display: flex; align-items: center; gap: 11px;
  }
  .float .ico { width: 38px; height: 38px; border-radius: 11px; background: var(--green-soft);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .float .ico .mi { color: var(--green); font-size: 22px; }
  .float .f-label { font-size: 10.5px; font-weight: 700; color: var(--ink-3); letter-spacing: 0.02em; text-transform: uppercase; }
  .float .f-value { font-family: 'Epilogue'; font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1.1; }
  .float.tl { top: 12%; left: -8%; }
  .float.br { bottom: 13%; right: -7%; }
  .float.br .ico { background: rgba(217,73,45,0.12); }
  .float.br .ico .mi { color: #d9492d; }

  /* ── TRUST STRIP ──────────────────────────────────── */
  .trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    background: var(--cream-2); }
  .trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 14px 34px; padding: 22px 0; }
  .trust-label { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink-3); }
  .chains { display: flex; flex-wrap: wrap; gap: 10px; }
  .chain { display: inline-flex; align-items: center; gap: 8px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
    padding: 7px 14px 7px 8px; font-weight: 800; font-size: 13.5px; color: var(--ink); }
  .chain .swatch { width: 22px; height: 22px; border-radius: 7px; display: inline-flex;
    align-items: center; justify-content: center; color: #fff; font-size: 9px; font-weight: 800;
    font-family: 'Manrope'; letter-spacing: 0.02em; }

  /* ── SECTIONS ─────────────────────────────────────── */
  section { position: relative; }
  .sec-pad { padding: 92px 0; }
  .sec-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
  .sec-eyebrow { font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--green); margin-bottom: 14px; }
  h2.sec-title { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; line-height: 1.06; }
  .sec-sub { font-size: 17px; color: var(--ink-2); font-weight: 500; line-height: 1.55; margin-top: 16px; }

  /* feature showcase (phone + text) */
  .showcase { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
  .showcase .phone { max-width: 300px; }
  .show-list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
  .show-item { display: flex; gap: 16px; align-items: flex-start; }
  .show-item .ico { width: 46px; height: 46px; border-radius: 13px; background: var(--green-soft);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .show-item .ico .mi { color: var(--green); font-size: 24px; }
  .show-item h3 { font-size: 18px; font-weight: 800; }
  .show-item p { font-size: 15px; color: var(--ink-2); line-height: 1.5; margin-top: 5px; }

  /* feature grid */
  .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .feat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 32px 28px; box-shadow: var(--shadow-card); }
  .feat-card .ico { width: 56px; height: 56px; border-radius: 16px; background: var(--green-soft);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
  .feat-card .ico .mi { color: var(--green); font-size: 30px; }
  .feat-card h3 { font-size: 21px; font-weight: 800; }
  .feat-card p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin-top: 11px; }

  /* steps */
  .steps-sec { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
  .steps.two { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; gap: 40px; }
  .step { position: relative; padding-top: 8px; }
  .step .num { font-family: 'Epilogue'; font-size: 15px; font-weight: 800; color: var(--green);
    width: 40px; height: 40px; border-radius: 999px; background: var(--surface);
    border: 1.5px solid var(--green-line); display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; }
  .step h3 { font-size: 20px; font-weight: 800; }
  .step p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin-top: 9px; }
  .step::after { content: ''; position: absolute; top: 28px; left: 52px; right: -16px; height: 1.5px;
    background: repeating-linear-gradient(to right, var(--green-line) 0 6px, transparent 6px 12px); }
  .step:last-child::after { display: none; }

  /* download band */
  .download { padding: 0 0 92px; }
  .download-band { position: relative; overflow: hidden; border-radius: 36px;
    background: linear-gradient(135deg, var(--green-deep), var(--green) 62%, #22b366);
    padding: 64px 56px; text-align: center; color: #fff;
    box-shadow: 0 30px 70px rgba(17,122,65,0.35); }
  .download-band .ring { position: absolute; border: 1.5px solid rgba(255,255,255,0.16); border-radius: 50%; }
  .download-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); position: relative; z-index: 2; }
  .download-band p { color: rgba(255,255,255,0.9); font-size: 17px; font-weight: 500; margin-top: 14px;
    position: relative; z-index: 2; }
  .download-band .badges { justify-content: center; margin-top: 30px; position: relative; z-index: 2; }
  .download-band .badge { background: #fff; color: var(--ink); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }

  /* faq */
  .faq-sec { background: var(--cream-2); border-top: 1px solid var(--line); }
  .faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
    padding: 4px 22px; transition: border-color .2s ease; }
  .faq details[open] { border-color: var(--green-line); }
  .faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px;
    cursor: pointer; list-style: none; padding: 18px 0; font-family: 'Epilogue'; font-weight: 700;
    font-size: 17.5px; color: var(--ink); }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary .mi { color: var(--green); font-size: 24px; transition: transform .25s ease; }
  .faq details[open] summary .mi { transform: rotate(45deg); }
  .faq .ans { padding: 0 0 20px; font-size: 15.5px; color: var(--ink-2); line-height: 1.6; max-width: 60ch; }

  /* footer */
  footer { padding: 56px 0 40px; border-top: 1px solid var(--line); }
  .foot-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
  .foot-tag { font-size: 14px; color: var(--ink-2); font-weight: 500; margin-top: 12px; max-width: 30ch; line-height: 1.5; }
  .foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
  .foot-links a { font-size: 14px; font-weight: 700; color: var(--ink-2); transition: color .15s ease; }
  .foot-links a:hover { color: var(--green); }
  .foot-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 13px; color: var(--ink-3); font-weight: 600; }

  /* reveal */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
  .reveal.in { opacity: 1; transform: none; }

  /* responsive */
  @media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; gap: 18px; }
    .phone-stage { order: -1; margin-bottom: 20px; }
    .phone { max-width: 280px; }
    .showcase { grid-template-columns: 1fr; gap: 40px; }
    .showcase .phone-stage { order: 0; }
    .feat-grid { grid-template-columns: 1fr; gap: 16px; }
    .steps { grid-template-columns: 1fr; gap: 30px; }
    .step::after { display: none; }
    .sec-pad { padding: 68px 0; }
  }
  @media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    .nav-cta span.t { display: none; }
    .download-band { padding: 48px 26px; border-radius: 28px; }
    .float.tl { left: -2%; }
    .float.br { right: -2%; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
  }