  :root {
    /* Marketing surface (warm light, contrast to dark app screens) */
    --bg: #F4EFE4;
    --bg-2: #EBE5D5;
    --surface: #FFFFFF;
    --ink: #0A1A2E;
    --ink-2: #1A2B44;
    --mute: #5A6781;
    --line: #E2DCCB;
    --line-strong: #CFC6AE;

    /* Brand (from Figma) */
    --brand: #205FA6;
    --brand-deep: #0D47A1;
    --brand-soft: #EAF2FB;
    --brand-ink: #0A1A2E;

    /* App-tinted accents */
    --green: #388E3C;
    --green-soft: #C8E6C9;
    --teen-blue: #3E87DA;

    /* Type */
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    --serif: 'Instrument Serif', 'Times New Roman', serif;

    /* Rhythm */
    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 32px;

    --maxw: 1240px;
    --shadow-card: 0 1px 0 rgba(10,26,46,0.04), 0 8px 30px rgba(10,26,46,0.06);
    --shadow-phone: 0 30px 80px -20px rgba(10,26,46,0.35), 0 18px 40px -25px rgba(10,26,46,0.4);
  }

  * { box-sizing: border-box; }
  html { color-scheme: light only !important; }
  html, body { margin: 0; padding: 0; background-color: #F4EFE4 !important; color: #0A1A2E !important; }
  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'ss01', 'cv11';
  }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
  img { display: block; max-width: 100%; }

  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
  @media (max-width: 720px) { .container { padding: 0 20px; } }

  /* ─── Typography ─── */
  h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; line-height: 1.05; font-weight: 700; }
  h1 { font-size: clamp(44px, 6.2vw, 84px); letter-spacing: -0.035em; }
  h2 { font-size: clamp(34px, 4vw, 56px); letter-spacing: -0.03em; }
  h3 { font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.02em; }
  p { margin: 0; }
  .serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; font-style: italic; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    text-transform: uppercase; letter-spacing: 0.14em;
    font-size: 12px; font-weight: 600; color: var(--mute);
  }
  .eyebrow::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent, var(--brand));
  }
  .lead { font-size: clamp(18px, 1.4vw, 21px); color: var(--ink-2); line-height: 1.5; max-width: 56ch; }

  /* ─── Buttons ─── */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: translateY(0); }
  .btn-primary { background: var(--ink); color: #fff; }
  .btn-primary:hover { background: var(--accent, var(--brand)); }
  .btn-ghost { color: var(--ink); border: 1px solid var(--line-strong); }
  .btn-ghost:hover { background: var(--surface); border-color: var(--ink); }
  .btn-light { background: #fff; color: var(--ink); border: 1px solid var(--line); }

  .store-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 20px; background: var(--ink); color: #fff;
    border-radius: 14px; transition: background .15s ease, transform .15s ease;
  }
  .store-btn:hover { background: var(--accent, var(--brand)); transform: translateY(-1px); }
  .store-btn .small { font-size: 11px; opacity: .8; line-height: 1; }
  .store-btn .big { font-size: 18px; font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }
  .store-btn svg { width: 24px; height: 28px; flex-shrink: 0; }

  /* ─── Nav ─── */
  .nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    background: rgba(244,239,228,0.7);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
  }
  .nav.scrolled { border-bottom-color: var(--line); background: rgba(244,239,228,0.9); }
  .nav-row { display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.02em; font-size: 19px; }
  .nav-logo .mark { width: 30px; height: 30px; display: grid; place-items: center; background: var(--ink); border-radius: 8px; }
  .nav-logo .mark svg { width: 18px; height: 18px; }
  .nav-logo svg { display: block; width: 178px; height: 36px; }
  .nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--ink-2); font-weight: 500; }
  .nav-links a:hover { color: var(--accent, var(--brand)); }
  .nav-actions { display: flex; gap: 10px; align-items: center; }
  @media (max-width: 820px) { .nav-links { display: none; } }
  @media (max-width: 520px) { .nav-actions .ghost-cta { display: none; } }

  /* ─── HERO ─── */
  .hero { position: relative; padding: 60px 0 80px; overflow: hidden; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
  .hero h1 .accent { color: var(--accent, var(--brand)); }
  .hero h1 .serif { color: var(--ink); }
  .hero-sub { margin-top: 24px; }
  .hero-cta-row { display: flex; gap: 12px; align-items: center; margin-top: 32px; flex-wrap: wrap; }
  .hero-stats {
    margin-top: 40px; display: flex; gap: 32px; flex-wrap: wrap; align-items: center;
  }
  .hero-stat { display: flex; flex-direction: column; gap: 2px; }
  .hero-stat strong { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
  .hero-stat span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mute); }
  .hero-stat-divider { width: 1px; height: 32px; background: var(--line-strong); }

  .hero-phone-stage {
    position: relative; min-height: 640px;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-blob {
    position: absolute; inset: 10% -5% 0 5%;
    background: radial-gradient(60% 60% at 50% 50%, color-mix(in oklab, var(--accent, var(--brand)) 28%, transparent), transparent 70%);
    filter: blur(20px); z-index: 0;
  }

  /* Hero — alt layouts */
  .hero[data-layout="centered"] .hero-grid {
    grid-template-columns: 1fr; text-align: center; gap: 40px;
  }
  .hero[data-layout="centered"] .lead, .hero[data-layout="centered"] .hero-stats { margin-left: auto; margin-right: auto; }
  .hero[data-layout="centered"] .lead { max-width: 60ch; }
  .hero[data-layout="centered"] .hero-cta-row { justify-content: center; }
  .hero[data-layout="centered"] .hero-stats { justify-content: center; }

  .hero[data-layout="gallery"] .hero-grid {
    grid-template-columns: 1fr; text-align: left; gap: 60px;
  }
  .hero[data-layout="gallery"] .hero-phone-stage { min-height: 620px; }

  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
    .hero-phone-stage { min-height: 560px; }
  }

  /* ─── PROBLEM (sound familiar) ─── */
  .section { padding: 120px 0; position: relative; }
  .section-head { max-width: 720px; margin-bottom: 56px; }
  .section-head h2 .accent { color: var(--accent, var(--brand)); }
  .problem-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  }
  .problem-card {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 28px;
    display: flex; flex-direction: column; gap: 14px;
    min-height: 240px;
    transition: transform .25s ease, border-color .25s ease;
  }
  .problem-card:hover { transform: translateY(-3px); border-color: var(--ink); }
  .problem-card .num {
    font-family: var(--serif); font-size: 38px; line-height: 1; color: var(--accent, var(--brand));
  }
  .problem-card .label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mute); font-weight: 600; }
  .problem-card .body { font-size: 18px; line-height: 1.35; color: var(--ink); letter-spacing: -0.01em; font-weight: 500; }
  @media (max-width: 960px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .problem-grid { grid-template-columns: 1fr; } }

  /* ─── HOW IT WORKS ─── */
  .steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-top: 32px;
  }
  .step {
    display: flex; flex-direction: column; gap: 18px;
    background: var(--surface); border-radius: var(--r-lg);
    border: 1px solid var(--line); padding: 28px;
    position: relative;
  }
  .step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent, var(--brand)); color: #fff;
    display: grid; place-items: center; font-weight: 700; font-size: 14px;
  }
  .step h3 { font-size: 20px; }
  .step p { color: var(--mute); font-size: 15px; line-height: 1.5; }
  .step-art {
    margin-top: auto; height: 180px;
    background: var(--bg-2); border-radius: var(--r-md);
    overflow: hidden; position: relative;
    display: flex; align-items: flex-end; justify-content: center;
  }
  @media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

  /* ─── FEATURES (dark section) ─── */
  .features {
    background: var(--ink); color: #F4EFE4;
    border-radius: 36px;
    margin: 0 16px;
    padding: 96px 0;
    position: relative; overflow: hidden;
  }
  .features::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(80% 50% at 80% 0%, color-mix(in oklab, var(--accent, var(--brand)) 25%, transparent), transparent 60%),
                radial-gradient(60% 50% at 10% 100%, color-mix(in oklab, var(--accent, var(--brand)) 20%, transparent), transparent 60%);
    pointer-events: none;
  }
  .features .container { position: relative; z-index: 1; }
  .features .eyebrow { color: rgba(244,239,228,0.7); }
  .features .eyebrow::before { background: var(--accent, var(--brand)); }
  .features h2 { color: #fff; }
  .features .lead { color: rgba(244,239,228,0.7); }

  .feature-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
    margin-top: 64px;
  }
  .feature-card {
    background: #11243C;
    border: 1px solid #1F3855;
    border-radius: 26px;
    padding: 36px;
    display: grid; grid-template-columns: 1fr 220px; gap: 30px; align-items: center;
    transition: border-color .25s ease, transform .25s ease;
    min-height: 320px;
  }
  .feature-card:hover { border-color: var(--accent, var(--brand)); transform: translateY(-3px); }
  .feature-card .tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--accent, var(--brand));
    background: color-mix(in oklab, var(--accent, var(--brand)) 14%, transparent);
    padding: 6px 10px; border-radius: 999px; align-self: flex-start;
  }
  .feature-card h3 { font-size: 24px; margin-top: 14px; color: #fff; }
  .feature-card p { margin-top: 10px; color: rgba(244,239,228,0.7); font-size: 15px; line-height: 1.55; }
  .feature-card ul {
    margin: 18px 0 0; padding: 0; list-style: none;
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .feature-card ul li {
    font-size: 12px; padding: 5px 10px; border-radius: 999px;
    background: rgba(244,239,228,0.06); color: rgba(244,239,228,0.85);
    border: 1px solid rgba(244,239,228,0.08);
  }
  .feature-card .art {
    width: 220px; aspect-ratio: 9 / 14;
    border-radius: 22px; background: #06101D;
    border: 1px solid #1F3855;
    overflow: hidden;
    position: relative;
  }
  @media (max-width: 980px) {
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { grid-template-columns: 1fr; }
    .feature-card .art { width: 100%; max-width: 260px; margin: 8px auto 0; }
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials { padding-bottom: 0; }
  .quote-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    margin-top: 56px;
  }
  .quote {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 30px;
    display: flex; flex-direction: column; gap: 18px;
    min-height: 280px;
  }
  .quote .body { font-size: 19px; line-height: 1.4; letter-spacing: -0.01em; color: var(--ink); flex: 1; }
  .quote .body::before { content: '“'; font-family: var(--serif); font-size: 60px; line-height: 0.2; color: var(--accent, var(--brand)); margin-right: 4px; vertical-align: -0.2em; }
  .quote-foot { display: flex; align-items: center; gap: 12px; }
  .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--brand-soft); color: var(--brand);
    display: grid; place-items: center; font-weight: 700; font-size: 14px;
    border: 1px solid var(--line);
  }
  .quote-foot .name { font-size: 14px; font-weight: 600; }
  .quote-foot .meta { font-size: 12px; color: var(--mute); }
  @media (max-width: 920px) { .quote-grid { grid-template-columns: 1fr; } }

  /* ─── PRICING ─── */
  .pricing-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    margin-top: 56px;
  }
  .plan {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--r-xl); padding: 40px;
    display: flex; flex-direction: column; gap: 18px;
    position: relative;
  }
  .plan.featured {
    border-color: var(--ink); background: var(--ink); color: #F4EFE4;
  }
  .plan .name { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
  .plan .price-row { display: flex; align-items: baseline; gap: 8px; }
  .plan .price { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
  .plan .per { font-size: 14px; color: var(--mute); }
  .plan.featured .per { color: rgba(244,239,228,0.7); }
  .plan .desc { font-size: 14px; color: var(--mute); }
  .plan.featured .desc { color: rgba(244,239,228,0.7); }
  .plan ul { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 12px; }
  .plan ul li { font-size: 15px; display: flex; gap: 10px; align-items: flex-start; line-height: 1.4; }
  .plan ul li::before {
    content: ''; width: 18px; height: 18px; border-radius: 50%;
    background: var(--green-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2 6.5L4.5 9L10 3' stroke='%23388E3C' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 12px no-repeat;
    flex-shrink: 0; margin-top: 2px;
  }
  .plan.featured ul li::before {
    background: color-mix(in oklab, var(--accent, var(--brand)) 35%, #fff)
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2 6.5L4.5 9L10 3' stroke='%23ffffff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 12px no-repeat;
  }
  .plan .cta { margin-top: auto; padding-top: 20px; }
  .plan.featured .btn-primary { background: #fff; color: var(--ink); }
  .plan.featured .btn-primary:hover { background: var(--accent, var(--brand)); color: #fff; }
  .plan-badge {
    position: absolute; top: -12px; right: 30px;
    background: var(--accent, var(--brand)); color: #fff;
    padding: 6px 14px; border-radius: 999px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  }
  @media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr !important; } }

  /* ─── FAQ ─── */
  .faq-wrap {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
    align-items: start;
  }
  .faq-list { display: flex; flex-direction: column; }
  .faq-item { border-top: 1px solid var(--line-strong); }
  .faq-item:last-child { border-bottom: 1px solid var(--line-strong); }
  .faq-q {
    width: 100%; padding: 22px 0; text-align: left;
    font-size: 19px; font-weight: 600; letter-spacing: -0.015em;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
  }
  .faq-q .ico {
    width: 26px; height: 26px; border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: grid; place-items: center; font-size: 16px;
    flex-shrink: 0; transition: transform .2s ease, background .2s ease;
  }
  .faq-item.open .faq-q .ico { background: var(--ink); color: #fff; transform: rotate(45deg); border-color: var(--ink); }
  .faq-a {
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
    color: var(--ink-2); font-size: 16px; line-height: 1.55;
  }
  .faq-item.open .faq-a { max-height: 400px; }
  .faq-a-inner { padding-bottom: 22px; }
  @media (max-width: 860px) { .faq-wrap { grid-template-columns: 1fr; gap: 24px; } }

  /* ─── FINAL CTA ─── */
  .cta-final {
    margin: 0 16px 60px; padding: 100px 40px;
    background: var(--ink); color: #F4EFE4;
    border-radius: 36px;
    position: relative; overflow: hidden;
    text-align: center;
  }
  .cta-final::before {
    content: ''; position: absolute; inset: -10%;
    background: radial-gradient(50% 60% at 50% 0%, color-mix(in oklab, var(--accent, var(--brand)) 30%, transparent), transparent 70%);
    pointer-events: none;
  }
  .cta-final .container { position: relative; }
  .cta-final .logo-glow {
    width: 64px; height: 64px; margin: 0 auto 28px;
    background: var(--accent, var(--brand)); border-radius: 18px;
    display: grid; place-items: center;
    box-shadow: 0 0 0 8px color-mix(in oklab, var(--accent, var(--brand)) 25%, transparent);
  }
  .cta-final .logo-glow svg { width: 36px; height: 36px; }
  .cta-final h2 { color: #fff; max-width: 880px; margin: 0 auto; }
  .cta-final .lead { color: rgba(244,239,228,0.7); margin: 22px auto 0; }
  .cta-final .hero-cta-row { justify-content: center; margin-top: 36px; }

  /* ─── FOOTER ─── */
  footer {
    padding: 72px 0 40px;
    border-top: 1px solid var(--line);
  }
  .footer-main {
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 80px; margin-bottom: 48px; align-items: start;
  }
  .footer-contact h4 {
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--mute); margin: 0 0 14px; font-weight: 600;
  }
  .footer-email {
    font-family: var(--serif); font-size: clamp(24px, 2.4vw, 34px);
    letter-spacing: -0.01em; color: var(--ink);
    text-decoration: none; display: inline-block;
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 2px;
    transition: color .15s ease, border-color .15s ease;
  }
  .footer-email:hover { color: var(--accent, var(--brand)); border-color: var(--accent, var(--brand)); }
  .footer-note { margin-top: 14px; color: var(--mute); font-size: 14px; line-height: 1.5; max-width: 36ch; }
  .footer-tagline { font-size: 14px; color: var(--mute); margin-top: 16px; max-width: 320px; line-height: 1.5; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px; border-top: 1px solid var(--line);
    font-size: 13px; color: var(--mute);
  }
  @media (max-width: 760px) {
    .footer-main { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; }
  }

  /* ─── PHONE MOCK ─── */
  .phone {
    width: 320px; aspect-ratio: 9 / 19.5;
    background: #06101D;
    border-radius: 44px;
    padding: 12px;
    box-shadow: var(--shadow-phone);
    border: 1px solid #11243C;
    position: relative;
    transform: rotate(-3deg);
    transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .hero[data-layout="centered"] .phone { transform: rotate(0); }
  .hero[data-layout="gallery"] .phone-cluster { display: flex; gap: 24px; justify-content: center; perspective: 1500px; }
  .hero[data-layout="gallery"] .phone-cluster .phone:nth-child(1) { transform: rotate(-6deg) translateY(20px); }
  .hero[data-layout="gallery"] .phone-cluster .phone:nth-child(2) { transform: rotate(0); }
  .hero[data-layout="gallery"] .phone-cluster .phone:nth-child(3) { transform: rotate(6deg) translateY(20px); }
  .phone .screen {
    width: 100%; height: 100%;
    background: #EAF2FB;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', Inter, sans-serif;
  }
  .phone .notch {
    position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 26px; background: #06101D; border-radius: 999px;
    z-index: 5;
  }
  .phone .status {
    height: 44px; padding: 16px 24px 0; display: flex; justify-content: space-between; align-items: center;
    font-size: 14px; font-weight: 600; color: #fff;
    position: relative; z-index: 1;
    margin-bottom: -1px;
  }
  .phone-status-dark { color: #fff; }
  .phone-status-light { color: #000; }
  .phone-app-bar {
    background: #205FA6; color: #fff;
    padding: 0 16px 12px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .phone-app-bar .title { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
  .phone-app-bar .icon { width: 24px; height: 24px; display: grid; place-items: center; }
  .phone-content { padding: 14px 14px 80px; overflow: hidden; }
  .phone-card {
    background: #fff; border: 1px solid #BFD7F3;
    border-radius: 6px; padding: 12px; margin-bottom: 10px;
  }
  .phone-tabbar {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: #fff; border-top: 1px solid #E6EAF0;
    padding: 8px 0 22px; display: flex; justify-content: space-around;
    font-size: 10px; font-weight: 500;
  }
  .phone-tab { display: flex; flex-direction: column; align-items: center; gap: 2px; color: #999; }
  .phone-tab.active { color: #205FA6; }
  .phone-tab .tab-ico { width: 22px; height: 22px; }

  /* ─── Tweaks panel target ─── */
  .tweak-section { margin-top: 60px; }

  /* ─── Animations ─── */
  @keyframes float-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in, html.no-reveal-anim .reveal { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
  }

  /* Phone screen: progress bar */
  .progress {
    height: 8px; border-radius: 4px; background: #BFD7F3; overflow: hidden;
  }
  .progress > i { display: block; height: 100%; background: #388E3C; border-radius: 4px; }
  .pill {
    display: inline-flex; padding: 4px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 600; background: #EAF2FB; color: #205FA6;
  }

  /* Marquee/strip below hero */
  .trust-strip {
    margin-top: 60px; padding: 22px 0;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; align-items: center;
    color: var(--mute); font-size: 13px;
  }
  .trust-strip > div { display: flex; align-items: center; justify-content: center; gap: 6px; }
  .trust-strip strong { color: var(--ink); font-weight: 600; font-size: 13px; }
  @media (max-width: 760px) {
    .trust-strip { grid-template-columns: 1fr 1fr; gap: 14px; padding: 18px 0; }
  }

  /* Section spacing tightening */
  @media (max-width: 760px) {
    .section { padding: 80px 0; }
    .features { padding: 80px 0; margin: 0 8px; }
    .cta-final { padding: 80px 24px; margin: 0 8px 40px; }
  }

  /* ─── LEGAL / PROSE ─── */
  .legal { padding: 64px 0 96px; }
  .legal-doc { max-width: 76ch; }
  .legal h1 { font-size: clamp(38px, 4.5vw, 56px); }
  .legal h2 {
    font-size: clamp(20px, 1.8vw, 24px);
    margin: 44px 0 12px;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }
  .legal p { margin: 0 0 16px; color: var(--ink-2); font-size: 16px; line-height: 1.65; }
  .legal ul, .legal ol {
    margin: 0 0 16px; padding-left: 22px;
    color: var(--ink-2); line-height: 1.65;
  }
  .legal li { margin-bottom: 6px; }
  .legal a {
    color: var(--brand); text-decoration: underline; text-underline-offset: 2px;
  }
  .legal a:hover { color: var(--brand-deep); }
  .legal-updated {
    text-transform: uppercase; letter-spacing: 0.12em;
    font-size: 12px; font-weight: 600; color: var(--mute);
    margin: 20px 0 40px;
  }
