  :root {
    --paper: #F8F6F1;
    --card: #FFFFFF;
    --sunk: #EFECE5;
    --clay: #C9613D;
    --clay-soft: rgba(201, 97, 61, .10);
    --ink: #1C1B19;
    --ink-2: #6B6862;
    --ink-3: #A5A199;
    --hair: rgba(0, 0, 0, .08);
    --shadow: 0 30px 60px -20px rgba(28, 27, 25, .35);
    --on-clay: #FFFFFF;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; color-scheme: light; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--paper); color: var(--ink);
    -webkit-font-smoothing: antialiased; line-height: 1.55; overflow-x: hidden;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: var(--clay); }
  :focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 4px; }

  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
  .prose { max-width: 640px; }
  .centre { text-align: center; margin-inline: auto; }
  h1, h2, h3 { letter-spacing: -.02em; line-height: 1.08; text-wrap: balance; }
  h2 { font-size: clamp(30px, 4.4vw, 42px); font-weight: 750; }
  h3 { font-size: 19px; font-weight: 700; }
  p { color: var(--ink-2); }
  .lede { font-size: clamp(17px, 2.1vw, 19.5px); }
  .eyebrow {
    font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--clay); font-weight: 700; margin-bottom: 14px;
  }

  /* ---- phone mockup: a dark frame around the raw screenshot, corners scale with width ---- */
  .phone { container-type: inline-size; width: 300px; max-width: 100%; }
  .phone .frame { padding: 3cqw; background: #1C1B19; border-radius: 16.5cqw; box-shadow: var(--shadow); }
  .phone img { width: 100%; height: auto; border-radius: 13.5cqw; background: var(--paper); }

  /* ---- nav ---- */
  nav {
    position: sticky; top: 0; z-index: 10;
    background: rgba(248, 246, 241, .86);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hair);
  }
  .nav-inner { max-width: 1080px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 26px; }
  .brand { display: flex; align-items: center; gap: 10px; font-weight: 750; font-size: 17px; color: var(--ink); text-decoration: none; margin-right: auto; }
  .brand svg { width: 28px; height: 28px; }
  nav a.link { color: var(--ink-2); text-decoration: none; font-size: 15px; font-weight: 500; }
  nav a.link:hover { color: var(--clay); }
  .pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--clay); color: var(--on-clay); text-decoration: none; font-weight: 650;
    font-size: 15px; padding: 12px 22px; border-radius: 999px; transition: transform .15s ease;
    border: 0; cursor: pointer; font-family: inherit;
  }
  .pill:hover { transform: translateY(-1px); }
  .pill.quiet { background: transparent; color: var(--ink); border: 1.5px solid rgba(0,0,0,.14); }
  nav .pill { padding: 9px 18px; font-size: 14px; }
  @media (max-width: 720px) { nav a.link { display: none; } }

  /* ---- header ---- */
  .hero { padding: 64px 0 40px; position: relative; overflow: hidden; }
  .hero::before {
    content: ""; position: absolute; inset: auto -10% -40% auto; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
    background: radial-gradient(closest-side, rgba(201, 97, 61, .16), transparent 70%); pointer-events: none;
  }
  .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; }
  h1 { font-size: clamp(42px, 6.6vw, 72px); font-weight: 780; letter-spacing: -.03em; line-height: 1.0; }
  h1 em { font-style: normal; color: var(--clay); }
  .hero .lede { margin-top: 22px; max-width: 500px; }
  .ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
  .terms-line { margin-top: 18px; font-size: 13.5px; color: var(--ink-3); }
  .hero-art { position: relative; width: min(440px, 100%); margin-left: auto; padding: 0 0 36px 44px; }
  .hero-art .photo { border-radius: 30px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 20px 50px -20px rgba(28,27,25,.3); }
  .hero-art .photo img { width: 100%; height: 100%; object-fit: cover; }
  .hero-art .phone { position: absolute; left: 0; bottom: 0; width: 44%; }
  @media (max-width: 860px) {
    .hero { padding-top: 44px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero .lede { margin-inline: auto; }
    .hero .ctas { justify-content: center; }
    .hero-art { margin-inline: auto; width: min(400px, 100%); padding-left: 24px; padding-bottom: 28px; }
  }

  /* ---- stat band ---- */
  .band { border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding: 40px 0; text-align: center; background: var(--card); }
  .band .big { font-size: clamp(20px, 3.2vw, 27px); font-weight: 650; color: var(--ink); line-height: 1.35; }
  .band .big em { font-style: normal; color: var(--clay); }
  .band small { display: block; margin-top: 10px; font-size: 13px; color: var(--ink-3); }

  section { padding: 88px 0; }
  section.tight { padding-top: 48px; }

  /* ---- what it is ---- */
  .about { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: center; margin-top: 48px; }
  .about .phone { width: 300px; margin: 0 auto; }
  .points { display: grid; gap: 14px; }
  .point { background: var(--card); border: 1px solid var(--hair); border-radius: 20px; padding: 22px 24px; display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
  .point .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--clay-soft); color: var(--clay); display: grid; place-items: center; }
  .point .ic svg { width: 22px; height: 22px; }
  .point h3 { font-size: 17.5px; }
  .point p { font-size: 15px; margin-top: 4px; }
  @media (max-width: 860px) { .about { grid-template-columns: 1fr; gap: 40px; } .about .phone { width: 260px; } }

  /* ---- how it works ---- */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
  .step { text-align: center; }
  .step .phone { width: min(280px, 100%); margin: 0 auto 22px; }
  .step .n { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--clay); color: var(--on-clay); font-weight: 750; font-size: 14px; margin-bottom: 10px; }
  .step p { font-size: 15.5px; margin-top: 6px; max-width: 320px; margin-inline: auto; }
  @media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 52px; } .step .phone { width: 250px; } }

  /* ---- feature rows ---- */
  .feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .feature.flip .copy { order: 2; }
  .feature .phone { width: 310px; margin: 0 auto; }
  .feature .photo { width: min(400px, 100%); margin: 0 auto; border-radius: 28px; overflow: hidden; aspect-ratio: 3 / 4; box-shadow: 0 20px 50px -20px rgba(28,27,25,.3); }
  .feature .photo img { width: 100%; height: 100%; object-fit: cover; }
  .feature ul { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
  .feature li { padding-left: 26px; position: relative; color: var(--ink-2); font-size: 16px; }
  .feature li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 50%; background: var(--clay); }
  .feature h2 { margin-top: 6px; }
  .feature .lede { margin-top: 14px; }
  @media (max-width: 860px) { .feature { grid-template-columns: 1fr; gap: 36px; } .feature.flip .copy { order: 0; } .feature .phone { width: 260px; } }

  /* ---- missions ---- */
  .groups { display: grid; gap: 14px; margin-top: 26px; }
  .group { background: var(--card); border: 1px solid var(--hair); border-radius: 20px; padding: 20px 22px; }
  .group h3 { margin-bottom: 12px; font-size: 16px; color: var(--ink-2); font-weight: 650; letter-spacing: .02em; }
  .chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .chip { background: var(--sunk); border-radius: 999px; padding: 8px 14px; font-size: 14.5px; color: var(--ink); font-weight: 500; }
  .custom { margin-top: 18px; font-size: 15px; color: var(--ink-2); }
  .custom b { color: var(--clay); font-weight: 650; }

  /* ---- gallery ---- */
  .gallery { display: flex; gap: 20px; overflow-x: auto; padding: 12px 24px 32px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .gallery img { width: 250px; height: auto; border-radius: 22px; scroll-snap-align: center; box-shadow: 0 14px 34px -10px rgba(28,27,25,.25); border: 1px solid var(--hair); flex-shrink: 0; }
  .gallery-wrap { max-width: 1080px; margin: 0 auto; }
  .gallery-hint { text-align: center; font-size: 13px; color: var(--ink-3); }

  /* ---- pricing ---- */
  .plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; max-width: 720px; margin-inline: auto; }
  @media (max-width: 640px) { .plans { grid-template-columns: 1fr; } }
  .plan { background: var(--card); border: 1.5px solid var(--hair); border-radius: 22px; padding: 26px; position: relative; text-align: left; }
  .plan.best { border-color: var(--clay); }
  .plan .tag { position: absolute; top: -12px; left: 22px; background: var(--clay); color: var(--on-clay); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
  .plan .name { font-size: 14px; color: var(--ink-2); font-weight: 600; }
  .plan .price { font-size: 40px; font-weight: 750; letter-spacing: -.02em; margin-top: 4px; line-height: 1.1; }
  .plan .price span { font-size: 16px; font-weight: 500; color: var(--ink-2); letter-spacing: 0; }
  .plan .per { font-size: 14px; color: var(--ink-3); margin-top: 4px; }
  .plan ul { list-style: none; margin-top: 18px; display: grid; gap: 8px; font-size: 14.5px; color: var(--ink-2); }
  .plan li::before { content: "✓"; color: var(--clay); font-weight: 700; margin-right: 8px; }
  .pricing-note { margin: 26px auto 0; font-size: 14.5px; color: var(--ink-2); max-width: 640px; text-align: center; }
  .pricing-note b { color: var(--ink); font-weight: 650; }

  /* ---- privacy ---- */
  .privacy { background: var(--card); border: 1px solid var(--hair); border-radius: 26px; padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
  @media (max-width: 760px) { .privacy { grid-template-columns: 1fr; padding: 28px; } }
  .privacy ul { list-style: none; display: grid; gap: 12px; }
  .privacy li { padding-left: 28px; position: relative; color: var(--ink-2); font-size: 15.5px; }
  .privacy li::before { content: "✓"; position: absolute; left: 0; color: var(--clay); font-weight: 700; }

  /* ---- faq ---- */
  .faq { max-width: 720px; margin: 28px auto 0; }
  details { border-top: 1px solid var(--hair); padding: 18px 0; }
  details:last-of-type { border-bottom: 1px solid var(--hair); }
  summary { cursor: pointer; font-weight: 650; font-size: 17px; color: var(--ink); list-style: none; display: flex; justify-content: space-between; gap: 16px; }
  summary::-webkit-details-marker { display: none; }
  summary::after { content: "+"; color: var(--clay); font-weight: 500; font-size: 22px; line-height: 1; }
  details[open] summary::after { content: "–"; }
  details p { margin-top: 10px; font-size: 15.5px; max-width: 620px; }

  /* ---- quote ---- */
  .quote { text-align: center; padding: 56px 24px; background: var(--card); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
  .quote blockquote { font-family: "New York", "Iowan Old Style", Georgia, serif; font-size: clamp(20px, 3vw, 27px); color: var(--ink); max-width: 640px; margin: 0 auto; line-height: 1.4; text-wrap: balance; }
  .quote cite { display: block; margin-top: 14px; font-style: normal; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }

  /* ---- notify ---- */
  .notify { background: var(--clay); color: var(--on-clay); border-radius: 28px; padding: 52px 36px; text-align: center; }
  .notify h2, .notify p { color: inherit; }
  .notify p { opacity: .88; margin-top: 10px; max-width: 520px; margin-inline: auto; }
  .notify .pill { background: var(--on-clay); color: var(--clay); margin-top: 26px; }

  footer { padding: 56px 0 80px; font-size: 13.5px; color: var(--ink-3); }
  footer .row { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; margin-bottom: 14px; }
  footer a { color: var(--ink-2); text-decoration: none; }
  footer a:hover { color: var(--clay); }
  footer p { text-align: center; color: var(--ink-3); font-size: 13px; }

  /* ---- inner page header ---- */
  .page-head { padding: 64px 0 8px; }
  .page-head h1 { font-size: clamp(36px, 5.6vw, 58px); }
  .page-head .lede { margin-top: 18px; }
  .more { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-weight: 650; color: var(--clay); text-decoration: none; font-size: 16px; }
  .more:hover { text-decoration: underline; }
  nav a.link[aria-current="page"] { color: var(--ink); font-weight: 650; }


  /* ---- long-form product pages ---- */
  .longform { max-width: 720px; margin: 0 auto; }
  .longform h2 { font-size: clamp(24px, 3.4vw, 30px); margin: 44px 0 12px; }
  .longform h3 { margin: 28px 0 8px; }
  .longform p { margin-bottom: 16px; font-size: 17px; }
  .longform ul, .longform ol { margin: 0 0 18px 22px; color: var(--ink-2); font-size: 17px; }
  .longform li { margin-bottom: 8px; }
  .longform li::marker { color: var(--clay); }
  .longform strong { color: var(--ink); }
  .longform figure { margin: 32px auto; text-align: center; }
  .longform figure .phone { margin: 0 auto; width: 280px; }
  .longform figcaption { font-size: 14px; color: var(--ink-3); margin-top: 14px; }
  .longform .callout { background: var(--card); border: 1px solid var(--hair); border-radius: 20px; padding: 22px 26px; margin: 28px 0; }
  .longform .callout p:last-child { margin-bottom: 0; }
  .longform table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15.5px; }
  .longform th, .longform td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--hair); vertical-align: top; color: var(--ink-2); }
  .longform th { color: var(--ink); font-weight: 650; }
  .longform td:first-child { color: var(--ink); font-weight: 600; }
  .table-scroll { overflow-x: auto; }
  .longform .faq { margin-top: 12px; }
  .crumbs { font-size: 13.5px; color: var(--ink-3); margin-bottom: 18px; }
  .crumbs a { color: var(--ink-3); text-decoration: none; }
  .crumbs a:hover { color: var(--clay); }
  .related { border-top: 1px solid var(--hair); margin-top: 48px; padding-top: 28px; }
  .related h2 { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
  .related ul { list-style: none; margin: 0; display: grid; gap: 10px; }
  .related a { font-weight: 650; text-decoration: none; color: var(--ink); }
  .related a:hover { color: var(--clay); }
