  :root {
    --primary: #F7823D;
    --primary-deep: #E26A21;
    --accent: #F29079;
    --bg: #F9F6F2;
    --bg-2: #F3EDE5;
    --surface: #E8DBD3;
    --text: #6B4944;
    --text-soft: #9A7D78;
    --text-mute: #B9A29D;
    --line: #EADFD6;
    --card: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(107,73,68,0.06), 0 1px 1px rgba(107,73,68,0.04);
    --shadow-md: 0 10px 30px -12px rgba(107,73,68,0.18), 0 2px 6px rgba(107,73,68,0.05);
    --shadow-lg: 0 30px 60px -28px rgba(107,73,68,0.28), 0 10px 24px -12px rgba(107,73,68,0.10);
    --radius: 18px;
    --radius-lg: 26px;
    --radius-sm: 12px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
    line-height: 1.55;
    letter-spacing: -0.005em;
  }

  /* Warm paper grain */
  body::before {
    content: "";
    position: fixed; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(107,73,68,0.035) 1px, transparent 0);
    background-size: 3px 3px;
    pointer-events: none;
    z-index: 0;
  }

  .wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
  }

  .serif {
    font-family: "Newsreader", "Iowan Old Style", Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.02em;
  }

  /* ---------- NAV ---------- */
  nav.top {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(249,246,242,0.72);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
  }
  nav.top.scrolled {
    border-bottom-color: var(--line);
  }
  nav.top .inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
  }
  .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
  .brand img {
    width: 34px; height: 34px; border-radius: 9px;
    box-shadow: 0 2px 6px rgba(107,73,68,0.15);
  }
  .brand b { font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
  nav .links { display: flex; gap: 28px; align-items: center; }
  nav .links ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
    align-items: center;
  }
  nav .links li { margin: 0; }
  nav .links a {
    color: var(--text-soft); text-decoration: none; font-size: 14.5px; font-weight: 500;
    transition: color .15s ease;
  }
  nav .links a:hover { color: var(--text); }
  nav .mini-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--text); color: var(--bg); text-decoration: none;
    padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 500;
    transition: transform .15s ease, background .15s ease;
  }
  nav .mini-cta:hover { background: var(--primary); transform: translateY(-1px); }
  @media (max-width: 720px) {
    nav .links { display: none; }
  }

  /* ---------- HERO ---------- */
  header.hero {
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    header.hero { padding: 40px 0 32px; }
  }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px 6px 10px;
    background: rgba(247,130,61,0.10);
    color: var(--primary-deep);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(247,130,61,0.18);
  }
  .eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(247,130,61,0.2);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(247,130,61,0.18); }
    50% { box-shadow: 0 0 0 6px rgba(247,130,61,0.05); }
  }

  h1.display {
    font-size: clamp(44px, 6.2vw, 78px);
    line-height: 0.98;
    margin: 22px 0 22px;
    color: var(--text);
  }
  h1.display .accent {
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
  }

  .lede {
    font-size: clamp(17px, 1.5vw, 19px);
    color: var(--text-soft);
    max-width: 520px;
    margin: 0 0 14px;
    line-height: 1.55;
  }
  .sub {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--text-soft);
    margin-top: 4px;
  }
  .sub svg { width: 16px; height: 16px; color: var(--primary); flex: none; }

  /* ---------- CTA BUTTONS ---------- */
  .cta-row {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-top: 32px;
  }
  .store-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 22px 12px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    min-height: 56px;
    border: 1px solid transparent;
  }
  .store-btn .glyph {
    width: 26px; height: 26px; flex: none;
    display: grid; place-items: center;
  }
  .store-btn .glyph svg { width: 100%; height: 100%; }
  .store-btn .label { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
  .store-btn .label small {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
  }
  .store-btn .label span {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .store-btn.primary {
    background: var(--text);
    color: var(--bg);
  }
  .store-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -12px rgba(107,73,68,0.45);
    background: #5a3c38;
  }
  .store-btn.secondary {
    background: var(--card);
    color: var(--text);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
  }
  .store-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #d9c7bd;
  }

  .trust-row {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    margin-top: 28px;
    color: var(--text-soft);
    font-size: 13.5px;
  }
  .trust-row .item { display: inline-flex; align-items: center; gap: 7px; }
  .trust-row svg { width: 14px; height: 14px; color: var(--primary); }

  /* ---------- HERO VISUAL ---------- */
  .hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 560px;
  }
  .phone {
    position: relative;
    width: 290px;
    aspect-ratio: 9 / 19.5;
    background: #1a1412;
    border-radius: 42px;
    padding: 8px;
    box-shadow:
      0 50px 90px -30px rgba(107,73,68,0.35),
      0 20px 40px -20px rgba(107,73,68,0.25),
      inset 0 0 0 1px rgba(255,255,255,0.04);
    z-index: 2;
  }
  .phone .screen {
    width: 100%; height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: var(--bg);
    position: relative;
  }
  .phone .screen img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  /* notch */
  .phone::before {
    content: "";
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 14px; height: 14px;
    background: #0c0807;
    border-radius: 50%;
    z-index: 3;
  }

  /* floating cards */
  .float {
    position: absolute;
    background: var(--card);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    display: flex; align-items: center; gap: 12px;
    z-index: 3;
    animation: floaty 6s ease-in-out infinite;
  }
  .float .ic {
    width: 36px; height: 36px; border-radius: 10px;
    display: grid; place-items: center;
    background: rgba(247,130,61,0.12);
    color: var(--primary-deep);
    flex: none;
  }
  .float .ic svg { width: 18px; height: 18px; }
  .float .tt { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.25; }
  .float .st { font-size: 12px; color: var(--text-soft); line-height: 1.2; margin-top: 2px; }

  .float.a { top: 60px; left: -10px; animation-delay: 0s; }
  .float.b { bottom: 110px; right: -20px; animation-delay: -3s; }
  .float.c { bottom: 30px; left: 20px; animation-delay: -1.5s; }

  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  .halo {
    position: absolute;
    inset: 0;
    display: grid; place-items: center;
    pointer-events: none;
  }
  .halo::after {
    content: "";
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,130,61,0.18) 0%, rgba(247,130,61,0) 70%);
  }

  @media (max-width: 900px) {
    .hero-visual { min-height: 520px; }
    .phone { width: 260px; }
    .float.a { left: -6px; }
    .float.b { right: -6px; }
  }
  @media (max-width: 480px) {
    .float.b { right: 0; bottom: 140px; }
    .float.a { top: 80px; }
    .float.c { left: 0; }
  }

  /* ---------- SECTIONS ---------- */
  section { padding: 96px 0; position: relative; z-index: 1; }
  @media (max-width: 720px) { section { padding: 64px 0; } }

  .section-head { max-width: 680px; margin-bottom: 56px; }
  .section-eyebrow {
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-deep);
    margin-bottom: 16px;
  }
  h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.05;
    margin: 0 0 18px;
    color: var(--text);
  }
  .section-head p {
    font-size: 18px;
    color: var(--text-soft);
    line-height: 1.55;
    margin: 0;
    max-width: 560px;
  }

  /* ---------- FEATURES ---------- */
  .features-wrap { background: var(--bg-2); border-radius: 32px; padding: 64px 48px; }
  @media (max-width: 720px) { .features-wrap { padding: 40px 24px; border-radius: 24px; } }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  @media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }

  .feat {
    background: var(--card);
    border-radius: var(--radius);
    padding: 26px 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .feat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .feat .ic {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(247,130,61,0.10);
    color: var(--primary-deep);
    margin-bottom: 18px;
  }
  .feat .ic svg { width: 22px; height: 22px; }
  .feat h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text);
    letter-spacing: -0.01em;
  }
  .feat p {
    font-size: 14.5px;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.5;
  }

  /* ---------- HOW IT WORKS ---------- */
  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 24px;
  }
  @media (max-width: 820px) { .how-grid { grid-template-columns: 1fr; gap: 24px; } }

  .step {
    position: relative;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
  .step .num {
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    color: var(--primary-deep);
    letter-spacing: 0.12em;
    font-weight: 500;
    margin-bottom: 14px;
  }
  .step h3 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.15;
    margin: 0 0 10px;
    color: var(--text);
    letter-spacing: -0.02em;
  }
  .step p { font-size: 15px; color: var(--text-soft); margin: 0; }

  /* ---------- SCREENSHOTS ---------- */
  .shots-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 48px; }

  .shots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 48px;
  }
  @media (max-width: 820px) {
    .shots-grid { grid-template-columns: 1fr; gap: 32px; }
  }

  .shot {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .shot-frame {
    position: relative;
    background: linear-gradient(180deg, #efe4d9, #e6d6c9);
    border-radius: 28px;
    padding: 40px 48px 0;
    display: grid;
    place-items: end center;
    overflow: hidden;
    aspect-ratio: 5 / 4;
  }
  .shot-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(247,130,61,0.12), transparent 60%);
  }
  .shot-phone {
    width: 64%;
    max-width: 260px;
    aspect-ratio: 9 / 19.5;
    background: #1a1412;
    border-radius: 32px;
    padding: 6px;
    box-shadow: 0 30px 60px -20px rgba(107,73,68,0.35), 0 10px 30px -10px rgba(107,73,68,0.25);
    position: relative;
    z-index: 1;
    transform: translateY(12px);
    transition: transform .3s ease;
  }
  .shot:hover .shot-phone { transform: translateY(6px); }
  .shot-phone .inner {
    width: 100%; height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: var(--bg);
  }
  .shot-phone img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: top;
    display: block;
  }
  .shot-cap {
    padding: 0 4px;
  }
  .shot-cap .tag {
    display: inline-block;
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-deep);
    margin-bottom: 8px;
  }
  .shot-cap h4 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 6px;
    color: var(--text);
    letter-spacing: -0.015em;
  }
  .shot-cap p {
    font-size: 14.5px;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.5;
  }

  .shot.shot--wide { grid-column: 1 / -1; }
  .shot.shot--wide .shot-frame {
    aspect-ratio: 16 / 8;
    padding: 0;
  }
  .shot.shot--wide .shot-phone {
    width: 30%;
    max-width: 240px;
  }
  .shot.shot--wide .shot-cap { max-width: 520px; }

  /* ---------- PRIVACY PLEDGE ---------- */
  .pledge {
    background: linear-gradient(135deg, #2a1e1b 0%, #3b2824 100%);
    color: #F3EDE5;
    border-radius: 32px;
    padding: 72px 56px;
    position: relative;
    overflow: hidden;
  }
  .pledge::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(247,130,61,0.28), transparent 70%);
    pointer-events: none;
  }
  .pledge-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
  }
  @media (max-width: 820px) {
    .pledge { padding: 48px 28px; border-radius: 24px; }
    .pledge-inner { grid-template-columns: 1fr; gap: 32px; }
  }
  .pledge .eyebrow {
    background: rgba(247,130,61,0.18);
    color: #FFC7A8;
    border-color: rgba(247,130,61,0.3);
  }
  .pledge h2 { color: #F3EDE5; margin-top: 20px; max-width: 640px; }
  .pledge h2 em { color: var(--primary); font-style: italic; font-weight: 500; }
  .pledge p {
    color: rgba(243,237,229,0.72);
    max-width: 560px;
    font-size: 16px;
    margin: 14px 0 0;
  }

  .pledge-seal {
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(247,130,61,0.28), rgba(247,130,61,0.08));
    border: 1px solid rgba(247,130,61,0.3);
    display: grid; place-items: center;
    position: relative;
    flex: none;
  }
  .pledge-seal::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 1px dashed rgba(247,130,61,0.35);
    animation: rotate 40s linear infinite;
  }
  @keyframes rotate {
    to { transform: rotate(360deg); }
  }
  .pledge-seal svg {
    width: 60px; height: 60px;
    color: var(--primary);
    position: relative;
  }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 780px; margin: 0 auto; }
  details.faq {
    border-bottom: 1px solid var(--line);
    padding: 22px 4px;
    cursor: pointer;
  }
  details.faq:first-child { border-top: 1px solid var(--line); }
  details.faq summary {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-size: 17px; font-weight: 500;
    color: var(--text);
    list-style: none;
    letter-spacing: -0.005em;
  }
  details.faq summary::-webkit-details-marker { display: none; }
  details.faq summary::after {
    content: "+";
    color: var(--primary);
    font-size: 22px;
    font-weight: 400;
    transition: transform .2s ease;
    line-height: 1;
  }
  details.faq[open] summary::after { content: "–"; }
  details.faq p {
    color: var(--text-soft);
    font-size: 15px;
    margin: 14px 0 4px;
    max-width: 680px;
    line-height: 1.6;
  }

  /* ---------- FINAL CTA ---------- */
  .final-cta {
    text-align: center;
    padding-bottom: 20px;
  }
  .final-cta h2 { margin-bottom: 20px; }
  .final-cta p { color: var(--text-soft); max-width: 520px; margin: 0 auto 32px; font-size: 17px; }
  .final-cta .cta-row { justify-content: center; }

  /* ---------- FOOTER ---------- */
  footer {
    border-top: 1px solid var(--line);
    padding: 40px 0 56px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
  }
  .foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .foot-brand { display: flex; align-items: center; gap: 10px; }
  .foot-brand img { width: 28px; height: 28px; border-radius: 7px; }
  .foot-brand .name { font-weight: 600; color: var(--text); font-size: 15px; }
  .foot-brand .copy { color: var(--text-mute); font-size: 13.5px; margin-left: 14px; }
  .foot-links { display: flex; gap: 24px; }
  .foot-links a { color: var(--text-soft); text-decoration: none; font-size: 14px; }
  .foot-links a:hover { color: var(--text); }

  /* Dark mode */
  body.dark {
    --bg: #1f1614;
    --bg-2: #291d1a;
    --card: #2b1f1c;
    --surface: #3b2824;
    --line: #3a2925;
    --text: #F3EDE5;
    --text-soft: #C5ADA8;
    --text-mute: #7C635F;
  }
  body.dark::before { background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0); }
  body.dark nav.top { background: rgba(31,22,20,0.72); }
  body.dark .pledge { background: linear-gradient(135deg, #120c0a 0%, #1e1512 100%); }
  body.dark .shot-frame { background: linear-gradient(180deg, #3a2925, #2e211d); }
