
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --canvas:    #F7F7F5;
      --ink:       #1C1B1A;
      --slate:     #3d5670;
      --slate-dark:#2d4861;
      --sage:      #6A9E84;
      --flag-yel:  #E8D98A;
      --flag-red:  #D48A8A;
      --surface:   #EDEBE7;
      --surface-deep: #E0DCD4;
      --muted:     #5d5956;
      --hairline:  #E1DED9;
      --frame:     #1d1d1f;

      --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --font-display: 'Syne', 'Inter', sans-serif;

      --container: 1180px;
      --radius:    18px;
      --radius-lg: 28px;

      --shadow-phone: 0 2px 8px rgba(28,27,26,0.06), 0 24px 60px rgba(28,27,26,0.14);
      --shadow-card:  0 1px 2px rgba(28,27,26,0.04), 0 8px 20px rgba(28,27,26,0.04);
    }

    html { scroll-behavior: smooth; height: 100%; }
 
a { text-decoration: none; }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;          /* <‑ recommended over 100% for cross‑browser consistency */
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased; /* optional but nice on macOS Safari */
  text-rendering: optimizeLegibility;

    .container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

    /* HEADER */
    header.site {
      position: sticky; top: 0; z-index: 50;
      background: rgba(247,247,245,0.88);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
      border-bottom: 1px solid var(--hairline);
    }
    .nav { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; gap: 24px; position: relative; }
    .nav-logo img { height: 32px; width: auto; }
    .nav-right { display: flex; align-items: center; gap: 24px; }
    .nav-links { display: flex; align-items: center; gap: 24px; }
    .nav-link { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.18s ease; text-decoration: none}
    .nav-link:hover { color: var(--ink); }
    .nav-divider { width: 1px; height: 16px; background: var(--hairline); }
    .nav-toggle-btn {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      width: 32px; height: 32px; cursor: pointer; flex-shrink: 0;
      background: none; border: none; padding: 0; -webkit-tap-highlight-color: transparent;
    }
    .nav-toggle-btn span { display: block; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; pointer-events: none; }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500;
      padding: 11px 22px; border-radius: 999px;
      border: 1px solid transparent; cursor: pointer;
      transition: all 0.18s ease; white-space: nowrap;
    }
    .btn-primary { background: var(--ink); color: var(--canvas); }
    .btn-primary:hover { background: #2a2927; transform: translateY(-1px); }
    .btn-ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
    .btn-ghost:hover { border-color: var(--ink); background: rgba(28,27,26,0.04); }
    .btn-slate { background: var(--slate); color: #fff; }
    .btn-slate:hover { background: var(--slate-dark); transform: translateY(-1px); }
    .btn-lg { padding: 14px 28px; font-size: 1rem; }

    /* HERO — bigger + bolder */
    .hero { padding: 100px 0 64px; text-align: center; position: relative; overflow: hidden; }
    .hero::before {
      content: ''; position: absolute;
      top: -200px; left: 50%; transform: translateX(-50%);
      width: 1100px; height: 700px;
      background: radial-gradient(circle, rgba(91,126,158,0.12) 0%, transparent 60%);
      pointer-events: none; z-index: 0;
    }
    .hero > .container { position: relative; z-index: 1; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--muted);
      padding: 7px 16px; border: 1px solid var(--hairline);
      border-radius: 999px; background: rgba(255,255,255,0.7);
      margin-bottom: 36px;
    }
    .eyebrow .dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--sage);
      animation: pulse 2.4s ease-in-out infinite;
    }
    @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
    h1.display {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(3.2rem, 8vw, 6rem);
      line-height: 0.95; letter-spacing: -0.04em;
      color: var(--ink); max-width: 14ch; margin: 0 auto;
    }
    h1.display em { font-style: italic; color: var(--slate); font-weight: 800; }
    .hero-sub {
      font-size: clamp(1.15rem, 1.8vw, 1.35rem);
      color: var(--muted); max-width: 40ch;
      margin: 32px auto 40px; line-height: 1.5;
    }
    .hero-cta { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }
    .hero-fine { font-size: 0.86rem; color: var(--muted); }

    /* ───────────── iPHONE BEZELS ───────────── */
    .phones { padding: 56px 0 110px; }
    .phones-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 36px; align-items: start;
    }
    @media (max-width: 880px) {
      .phones-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; gap: 56px; }
    }

    /* TABLET BREAKPOINT */
    @media (max-width: 768px) {
      section.block { padding: 90px 0; }
      .container { padding: 0 24px; }
      .hero { padding: 80px 0 48px; }
      .phones { padding: 40px 0 80px; }
      .proof-grid { gap: 20px; }
      .proof-card { padding: 36px 28px 32px; }
      .card-grid { gap: 20px; }
      .stat-row { gap: 24px; }
      .native-band { padding: 80px 0; }
    }
    .phone {
      position: relative;
      background: var(--frame);
      border-radius: 46px;
      padding: 9px;
      box-shadow: var(--shadow-phone);
      aspect-ratio: 9/19.5;
    }
    /* Volume up */
    .phone-btn-vu {
      position: absolute; left: -3px; top: 18%;
      width: 4px; height: 40px;
      background: var(--frame); border-radius: 2px 0 0 2px;
    }
    /* Volume down */
    .phone-btn-vd {
      position: absolute; left: -3px; top: calc(18% + 56px);
      width: 4px; height: 60px;
      background: var(--frame); border-radius: 2px 0 0 2px;
    }
    /* Action / silent switch */
    .phone-btn-act {
      position: absolute; left: -3px; top: 12%;
      width: 4px; height: 24px;
      background: var(--frame); border-radius: 2px 0 0 2px;
    }
    /* Power button right */
    .phone-btn-pwr {
      position: absolute; right: -3px; top: 22%;
      width: 4px; height: 72px;
      background: var(--frame); border-radius: 0 2px 2px 0;
    }
    .phone-inner {
      position: relative;
      width: 100%; height: 100%;
      background: #fff;
      border-radius: 38px;
      overflow: hidden;
    }
    /* Dynamic Island */
    .phone-island {
      position: absolute;
      top: 9px; left: 50%; transform: translateX(-50%);
      width: 100px; height: 28px;
      background: #000;
      border-radius: 999px;
      z-index: 10;
    }
    .phone-screen {
      width: 100%; height: 100%;
      padding-top: 50px;
      display: flex; flex-direction: column;
      font-size: 13px; line-height: 1.4;
    }
    .phone-status {
      display: flex; justify-content: space-between; align-items: center;
      padding: 2px 24px 6px; font-size: 12px; font-weight: 600; color: var(--ink);
    }
    .phone-status .right { display: flex; gap: 4px; align-items: center; }
    .phone-status svg { width: 14px; height: 14px; }
    .phone-bar {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 16px; border-bottom: 1px solid var(--hairline);
      background: rgba(247,247,245,0.6);
    }
    .phone-bar-back { color: var(--slate); font-size: 1.3rem; line-height: 1; font-weight: 300; }
    .phone-bar-avatar {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--slate); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; font-weight: 600;
    }
    .phone-bar-name { flex: 1; text-align: center; font-weight: 600; font-size: 0.78rem; margin-right: 32px; }
    .phone-bar-cm {
      flex: 1; text-align: center;
      font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; margin-right: 32px;
    }
    .phone-bar-cm .calm { color: var(--ink); }
    .phone-bar-cm .msg { color: var(--slate); }
    .messages { flex: 1; padding: 14px 14px 8px; display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
    .imsg-app { font-size: 0.62rem; color: var(--muted); letter-spacing: 0.04em; text-transform: lowercase; text-align: center; margin-bottom: 6px; }
    .bubble { max-width: 82%; padding: 8px 12px; border-radius: 18px; font-size: 0.78rem; line-height: 1.4; }
    .bubble.in { background: var(--surface); align-self: flex-start; color: var(--ink); border-bottom-left-radius: 5px; }
    .bubble.out { background: var(--slate); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; }
    .bubble.out .hl-yel { background: rgba(232,217,138,0.55); padding: 1px 2px; border-radius: 3px; }
    .bubble.out .hl-red { background: rgba(212,138,138,0.55); padding: 1px 2px; border-radius: 3px; }
    .phone-overlay {
      position: absolute; left: 12px; right: 12px; bottom: 14px;
      background: #fff; border: 1px solid var(--hairline);
      border-radius: 18px; padding: 14px 16px;
      box-shadow: 0 4px 16px rgba(28,27,26,0.10);
      z-index: 8;
    }
    .overlay-h { font-weight: 600; font-size: 0.82rem; color: var(--ink); margin-bottom: 4px; }
    .overlay-sub { font-size: 0.68rem; color: var(--muted); margin-bottom: 10px; }
    .flag-row { display: flex; align-items: flex-start; gap: 8px; font-size: 0.7rem; margin-bottom: 5px; color: var(--ink); line-height: 1.3; }
    .flag-row .chip { display: inline-block; padding: 1px 6px; border-radius: 4px; font-weight: 500; white-space: nowrap; flex-shrink: 0; }
    .chip.yel { background: rgba(232,217,138,0.6); color: #6b5b14; }
    .chip.red { background: rgba(212,138,138,0.6); color: #7d2424; }
    .overlay-cta {
      margin-top: 10px; width: 100%; padding: 9px;
      background: var(--slate); color: #fff; border: 0;
      border-radius: 10px; font-size: 0.78rem; font-weight: 500;
      font-family: var(--font-sans); cursor: pointer;
    }
    .phone-review { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
    .review-h { font-family: var(--font-display); font-weight: 700; font-size: 0.94rem; color: var(--ink); }
    .review-toggle { display: flex; background: var(--surface); border-radius: 999px; padding: 3px; font-size: 0.68rem; font-weight: 500; }
    .review-toggle div { flex: 1; text-align: center; padding: 6px 10px; border-radius: 999px; color: var(--muted); }
    .review-toggle div.active { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(28,27,26,0.06); }
    .review-text { background: var(--surface); border-radius: 14px; padding: 14px; font-size: 0.78rem; line-height: 1.5; color: var(--ink); flex: 1; min-height: 120px; }
    .review-tags { display: flex; gap: 8px; flex-wrap: wrap; font-size: 0.66rem; color: var(--muted); }
    .review-tags span::before { content: '✓ '; color: var(--sage); }
    .sent-wrap { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
    .sent-bubble { align-self: flex-end; max-width: 82%; background: var(--slate); color: #fff; padding: 8px 12px; border-radius: 18px; border-bottom-right-radius: 5px; font-size: 0.78rem; line-height: 1.4; }
    .delivered { font-size: 0.6rem; color: var(--muted); text-align: right; margin-right: 4px; }
    .sent-card { margin-top: auto; background: #fff; border: 1px solid var(--hairline); border-radius: 16px; padding: 14px; box-shadow: 0 4px 14px rgba(28,27,26,0.05); }
    .sent-head { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
    .sent-check { width: 22px; height: 22px; flex-shrink: 0; }
    .sent-h { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
    .sent-sub { font-size: 0.7rem; color: var(--muted); margin: 0 0 10px 30px; }
    .sent-row { display: flex; justify-content: space-between; font-size: 0.7rem; padding: 4px 0; }
    .sent-row .lbl { color: var(--muted); }
    .sent-row .val { color: var(--ink); font-weight: 500; }
    .sent-line { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--hairline); font-size: 0.72rem; color: var(--muted); font-style: italic; }
    .phone-caption {
      text-align: center; margin-top: 20px;
      font-size: 0.78rem; font-weight: 600;
      color: var(--muted); letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    /* SCENARIO SWITCHER */
    .phones-header { text-align: center; max-width: 640px; margin: 0 auto; }
    .phones-header .section-eyebrow { color: var(--slate); }
    .phones-h {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(2rem, 4.6vw, 3.4rem);
      line-height: 1.02; letter-spacing: -0.03em; color: var(--ink);
    }
    .phones-h em { font-style: italic; color: var(--slate); font-weight: 800; }
    .phones-sub {
      font-size: 1.05rem; line-height: 1.55; color: var(--muted);
      max-width: 46ch; margin: 18px auto 0;
    }
    .scenario-tabs-wrap { text-align: center; margin: 34px 0 52px; }
    .scenario-tabs {
      display: inline-flex; flex-wrap: wrap; justify-content: center;
      gap: 4px;
      background: var(--surface); border: 1px solid var(--hairline);
      border-radius: 999px; padding: 5px;
    }
    .scenario-tab {
      appearance: none; border: 0; cursor: pointer;
      font-family: var(--font-sans); font-size: 0.92rem; font-weight: 500;
      color: var(--muted); background: transparent;
      padding: 9px 20px; border-radius: 999px;
      transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    }
    .scenario-tab:hover { color: var(--ink); }
    .scenario-tab[aria-selected="true"] {
      background: #fff; color: var(--ink);
      box-shadow: 0 1px 2px rgba(28,27,26,0.08);
    }
    .scenario-tab:focus-visible { outline: 2px solid var(--slate); outline-offset: 2px; }
    .phones-grid { transition: opacity 0.2s ease; }
    .phones-grid.swapping { opacity: 0.35; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .phones-grid { transition: none; }
      .phones-grid.swapping { opacity: 1; }
      .eyebrow .dot { animation: none; }
      .btn-primary:hover, .btn-slate:hover { transform: none; }
      .proof-card:hover, .step-card:hover { transform: none; }
    }

    /* PROOF POINTS — why the pause matters */
    .proof-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; margin-top: 64px;
    }
    @media (max-width: 900px) {
      .proof-grid { grid-template-columns: 1fr; gap: 18px; }
    }
    .proof-card {
      background: #fff;
      border: 1px solid var(--hairline);
      border-radius: var(--radius);
      padding: 44px 32px 38px;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }
    .proof-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
    .proof-num {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(3.6rem, 7vw, 5.2rem);
      line-height: 0.9; letter-spacing: -0.04em;
      color: var(--ink);
    }
    .proof-num .unit { font-size: 0.4em; color: var(--muted); font-weight: 600; margin-left: 4px; letter-spacing: 0; }
    .proof-card p {
      margin-top: 18px;
      font-size: 0.98rem; line-height: 1.55;
      color: #3a3937; max-width: 26ch;
    }
    .proof-closer {
      margin-top: 64px;
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(1.7rem, 3.4vw, 2.7rem);
      line-height: 1.12; letter-spacing: -0.025em;
      color: var(--ink); max-width: 24ch;
    }
    .proof-closer em { font-style: italic; color: var(--slate); font-weight: 800; }
    .proof-fine {
      margin-top: 22px;
      font-size: 0.8rem; color: var(--muted);
    }

    /* NATIVE MESSAGING BAND */
    .native-band {
      padding: 110px 0;
      background: var(--ink);
      color: var(--canvas);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .native-band::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 1200px; height: 600px;
      background: radial-gradient(circle, rgba(91,126,158,0.18) 0%, transparent 60%);
      pointer-events: none;
    }
    .native-band > .container { position: relative; z-index: 1; }
    .native-eyebrow {
      display: inline-block;
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: #fff; margin-bottom: 28px;
    }
    .native-h {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(2.2rem, 5vw, 4.2rem);
      line-height: 0.98; letter-spacing: -0.035em;
      color: #fff; max-width: 18ch; margin: 0 auto;
      overflow-wrap: break-word;
    }
    .native-h em { font-style: italic; color: #7a9fb4; font-weight: 800; }
    .native-sub {
      max-width: 50ch; margin: 32px auto 0;
      font-size: 1.18rem; line-height: 1.55;
      color: rgba(247,247,245,0.7);
    }
    .native-sub strong { color: #fff; font-weight: 600; }
    .native-icons {
      margin-top: 48px;
      display: flex; gap: 20px;
      justify-content: center; align-items: center;
      flex-wrap: wrap;
    }
    .native-icon {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 10px 20px;
      background: rgba(247,247,245,0.06);
      border: 1px solid rgba(247,247,245,0.14);
      border-radius: 999px;
      font-size: 0.92rem; font-weight: 500;
      color: rgba(247,247,245,0.9);
    }
    .native-icon svg { width: 18px; height: 18px; }

    /* BIG SECTIONS */
    section.block { padding: 120px 0; }
    section.block.alt { background: var(--surface); }
    .section-eyebrow {
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--slate); margin-bottom: 22px;
    }
    h2.big {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(2.0rem, 6vw, 3.2rem);
      line-height: 1.0; letter-spacing: -0.035em;
      color: var(--ink); max-width: 18ch;
    }
    h2.big em { font-style: italic; color: var(--slate); font-weight: 800; }
    .block-body {
      max-width: 640px; margin-top: 36px;
      font-size: 1.1rem; line-height: 1.65; color: #3a3937;
      /*font-size: 0.7rem; line-height: 1.05; color: #3a3937;*/
    }
    .block-body p + p { margin-top: 18px; }

    /* FOUNDER / ABOUT */
    .founder-layout { display: grid; grid-template-columns: 0.85fr 1fr; gap: 52px; align-items: center; margin-top: 44px; }
    .founder-photo { margin: 0; }
    .founder-photo img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-card); }
    .founder-photo figcaption { margin-top: 12px; font-size: 0.85rem; color: var(--muted); }
    .founder-copy { font-size: 1.1rem; line-height: 1.65; color: #3a3937; }
    .founder-copy p + p { margin-top: 18px; }
    .founder-copy strong { color: var(--ink); font-weight: 600; }
    .founder-sign { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin-top: 26px; font-size: 1.15rem; }
    
    @media (max-width: 760px) {
      .founder-layout { grid-template-columns: 1fr; gap: 28px; }
    }

    .struo-red {
      color: #8b3a3a;
    }

    /* The 3s + same-intent row — grey box paired with line */
    .stat-row {
      margin-top: 72px;
      display: grid;
      grid-template-columns: minmax(280px, 380px) 1fr;
      gap: 56px;
      align-items: center;
    }
    @media (max-width: 800px) {
      .stat-row { grid-template-columns: 1fr; gap: 32px; }
    }
    .stat-box {
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: var(--radius-lg);
      padding: 44px 48px;
      text-align: center;
    }
    .stat-num {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(3.6rem, 8vw, 6rem);
      line-height: 0.9; letter-spacing: -0.05em;
      color: var(--ink);
    }
    .stat-num .unit { font-size: 0.42em; color: var(--muted); font-weight: 600; margin-left: 2px; }
    .stat-label {
      margin-top: 8px;
      font-size: 0.86rem; font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.04em;
    }
    .stat-pair-text h3 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(2rem, 4.4vw, 3.6rem);
      line-height: 1.04; letter-spacing: -0.03em;
      color: var(--ink); margin-bottom: 16px;
    }
    .stat-pair-text h3 em { font-style: italic; color: var(--slate); font-weight: 800; }
    .stat-pair-text p {
      font-size: 1.08rem; line-height: 1.55;
      color: var(--muted); max-width: 40ch;
    }
    .stat-pair-text p strong { color: var(--ink); font-weight: 600; }

    /* CARD GRID — unified How section */
    .card-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; margin-top: 64px;
    }
    @media (max-width: 900px) {
      .card-grid { grid-template-columns: 1fr; gap: 18px; }
    }
    .step-card {
      background: var(--canvas);
      border: 1px solid var(--hairline);
      border-radius: var(--radius);
      padding: 40px 32px 36px;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }
    section.alt .step-card { background: #fff; }
    .step-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
    .step-card .num {
      font-family: var(--font-display); font-weight: 800;
      font-size: 3rem; line-height: 1; color: var(--slate);
      letter-spacing: -0.04em; margin-bottom: 24px; display: block;
    }
    .step-card h3 {
      font-family: var(--font-display); font-weight: 700;
      font-size: 1.4rem; letter-spacing: -0.015em;
      color: var(--ink); margin-bottom: 12px; line-height: 1.2;
    }
    .step-card p { font-size: 0.98rem; line-height: 1.6; color: #3a3937; }
    .step-card p strong { color: var(--ink); font-weight: 600; }

    /* PRICING (dark) */
    .pricing { padding: 130px 0; text-align: center; background: var(--ink); color: var(--canvas); }
    .pricing h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 1.02; letter-spacing: -0.035em;
      max-width: 18ch; margin: 0 auto; color: #fff;
    }
    .pricing h2 em { font-style: italic; color: #fff; font-weight: 800; }
    .pricing-sub { max-width: 46ch; margin: 32px auto 44px; font-size: 1.1rem; color: rgba(247,247,245,0.7); line-height: 1.55; }
    .price-card { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; padding: 28px 56px; border: 1px solid rgba(247,247,245,0.18); border-radius: 20px; background: rgba(247,247,245,0.05); }
    .price-line { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--font-display); color: #fff; }
    .price-line .big { font-size: 3rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
    .price-line .sub { font-size: 1rem; color: rgba(247,247,245,0.6); font-family: var(--font-sans); font-weight: 500; }
    .price-cancel { font-size: 0.86rem; color: rgba(247,247,245,0.5); }

    /* WAITLIST */
    .waitlist { padding: 120px 0 140px; background: var(--surface); }
    .waitlist-inner { max-width: 580px; margin: 0 auto; text-align: center; }
    .waitlist h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 1.0; letter-spacing: -0.035em;
      max-width: 14ch; margin: 0 auto;
    }
    .waitlist h2 em { font-style: italic; color: var(--slate); font-weight: 800; }
    .waitlist-sub { margin: 32px auto 40px; font-size: 1.08rem; color: var(--muted); line-height: 1.55; max-width: 50ch; }
    .waitlist-sub strong { color: var(--ink); font-weight: 600; }
    .form-card { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); }
    .form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
    
    @media (max-width: 540px) { .form { grid-template-columns: 1fr; } }
    .form input { width: 100%; padding: 15px 18px; font-family: var(--font-sans); font-size: 1rem; color: var(--ink); background: var(--canvas); border: 1px solid var(--hairline); border-radius: 12px; transition: border-color 0.18s ease, background 0.18s ease; }
    .form input:focus { outline: 0; border-color: var(--slate); background: #fff; }
    .form-submit { width: 100%; padding: 16px; font-size: 1.02rem; border-radius: 12px; font-weight: 600; }
    .form-fine { margin-top: 18px; font-size: 0.84rem; color: var(--muted); }
    .form-success { display: none; padding: 36px 32px; background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-card); }
    .form-success.show { display: block; }
    .form-success h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
    .form-success p { color: var(--muted); font-size: 1rem; }

    /* FOOTER */
    footer.site { padding: 56px 0 35px; border-top: 1px solid var(--hairline); background: var(--canvas); }
    footer.site .container { display: flex; flex-direction: column; align-items: center; }
    .foot-logo { display: block; margin-bottom: 20px; }
    .foot-logo img { height: 26px; width: auto; }
    .foot-links { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }
    .foot-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.18s ease; text-decoration: none; }
    .foot-links a:hover { color: var(--ink); text-decoration: underline; }
    .foot-attr { padding-top: 8px; font-size: 0.84rem; color: var(--muted); display: flex; gap: 18px; align-items: center; flex-wrap: wrap; justify-content: center; }
    .foot-attr a { color: var(--slate); text-decoration: none; }
    .foot-attr a:hover { text-decoration: underline; }

    @media (max-width: 768px) {
      main section[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 40px !important; }
      main section div[style*="sticky"] { position: static !important; }
      main a[href="mailto:support@calmmessage.com?subject=Support — Calm Message&body=iOS version:%0AApp version:%0ADevice:%0APlease describe your question or issue, thanks:%0A"] { font-size: 1.1rem !important; word-break: break-word; }
    }

    /* main section img { display: block; } */

    @media (max-width: 640px) {
      section.block { padding: 80px 0; }
      .stat-box { padding: 32px 28px; }
      .container { padding: 0 20px; }
      .nav { padding-top: 14px; padding-bottom: 14px; gap: 12px; }
      .nav-logo { flex-shrink: 0; padding-left: 8px; }
      .nav-logo img { height: 22px; width: auto; max-width: 120px; display: block; }
      .nav-right { gap: 10px; }
      .nav-divider { display: none; }
      .nav-toggle-btn { display: flex; }
      .nav-links {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: flex-start; gap: 4px;
        background: var(--canvas); border-bottom: 1px solid var(--hairline);
        padding: 12px 20px 20px; box-shadow: 0 12px 24px rgba(0,0,0,0.06);
      }
      .nav-links .nav-link { padding: 10px 0; width: 100%; }
      .nav-links.open { display: flex; }
      .nav-right .btn { padding: 9px 16px; font-size: 0.88rem; white-space: nowrap; }
      main img { max-width: 100% !important; }
      main > div > div > section { margin: 60px 0 !important; }
      main a[href="mailto:support@calmmessage.com?subject=Support — Calm Message&body=iOS version:%0AApp version:%0ADevice:%0APlease describe your question or issue, thanks:%0A"] { font-size: 0.95rem !important; display: block; overflow-wrap: break-word; }
      .native-h { font-size: clamp(1.9rem, 8.5vw, 4.2rem); }
    }
  