  :root {
    color-scheme: light;
    --bg: #F5F2EB;          /* app warm cream */
    --surface: #ffffff;
    --ink: #1c1c1e;
    --muted: #6b6b70;
    --blue: #006AA7;        /* Swedish blue */
    --yellow: #FECB00;
    --hairline: rgba(0,0,0,0.08);
    --radius: 22px;
    --maxw: 1080px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font: 17px/1.6 "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

  /* ---- Header ---- */
  header {
    position: sticky; top: 0; z-index: 20;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--hairline);
  }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .logo { height: 26px; width: auto; display: block; }
  .nav-cta {
    font-size: 15px; font-weight: 600; text-decoration: none;
    color: #fff; background: var(--blue);
    padding: 9px 18px; border-radius: 980px;
    transition: opacity .15s ease;
  }
  .nav-cta:hover { opacity: .88; }

  /* ---- Hero ---- */
  .hero { padding: 72px 0 40px; }
  .hero-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 48px; align-items: center;
  }
  .eyebrow {
    display: inline-block; font-size: 14px; font-weight: 600;
    letter-spacing: .02em; color: var(--blue);
    background: color-mix(in srgb, var(--blue) 12%, transparent);
    padding: 6px 14px; border-radius: 980px; margin-bottom: 22px;
  }
  h1 {
    font-size: clamp(34px, 5.2vw, 56px); line-height: 1.05;
    font-weight: 700; letter-spacing: -0.02em; margin: 0 0 20px;
  }
  .lede { font-size: 20px; color: var(--muted); margin: 0 0 32px; max-width: 30ch; }
  .hero-phone { justify-self: center; }
  .hero-phone img { width: 100%; max-width: 340px; height: auto; display: block; }

  /* App Store badge (official Apple asset) */
  .badge {
    display: inline-block; text-decoration: none; line-height: 0;
    transition: transform .15s ease;
  }
  .badge:hover { transform: translateY(-2px); }
  .badge img { height: 53px; width: auto; display: block; }

  /* ---- Problem strip ---- */
  .strip { padding: 40px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center; }
  .stat .num { font-size: 40px; font-weight: 700; letter-spacing: -0.02em; color: var(--blue); }
  .stat .lab { font-size: 15px; color: var(--muted); margin-top: 4px; }

  /* ---- Sections ---- */
  section.block { padding: 84px 0; }
  .section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
  .section-head h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 14px; }
  .section-head p { font-size: 19px; color: var(--muted); margin: 0; }

  /* Feature rows: alternating phone + text */
  .feature {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
    align-items: center; margin: 0 auto 88px; max-width: 920px;
  }
  .feature:last-child { margin-bottom: 0; }
  .feature.reverse .feature-copy { order: 2; }
  .feature.reverse .feature-shot { order: 1; }
  .feature-shot img { width: 100%; max-width: 300px; height: auto; display: block; margin: 0 auto; }
  .feature-copy h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 12px; }
  .feature-copy p { font-size: 18px; color: var(--muted); margin: 0; }
  .feature-tag { display:inline-block; font-size:13px; font-weight:600; color: var(--blue); text-transform: uppercase; letter-spacing:.05em; margin-bottom: 10px; }

  /* ---- Trust ---- */
  .trust { background: var(--surface); border-radius: var(--radius); padding: 48px; text-align: center; }
  .trust h2 { font-size: 28px; font-weight: 700; margin: 0 0 28px; letter-spacing: -0.01em; }
  .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .trust-item { font-size: 16px; }
  .trust-icon {
    width: 48px; height: 48px; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: color-mix(in srgb, var(--blue) 10%, transparent);
    color: var(--blue);
  }
  .trust-icon svg { width: 24px; height: 24px; }
  .trust-item .ti-top { font-weight: 600; }
  .trust-item .ti-sub { color: var(--muted); font-size: 14px; }

  /* ---- Final CTA ---- */
  .final { text-align: center; padding: 96px 0; }
  .final h2 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 28px; }

  /* ---- Footer ---- */
  footer { border-top: 1px solid var(--hairline); padding: 40px 0 64px; font-size: 15px; color: var(--muted); }
  .foot-links { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; }
  .foot-links a { color: var(--ink); text-decoration: none; }
  .foot-links a:hover { color: var(--blue); }
  .disclaimer { max-width: 640px; line-height: 1.55; }

  /* ---- Responsive ---- */
  @media (max-width: 820px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .hero { padding: 48px 0 24px; }
    .lede { max-width: none; margin-left: auto; margin-right: auto; }
    .hero-phone { order: -1; }
    .hero-phone img { max-width: 260px; }
    .feature { grid-template-columns: 1fr; gap: 28px; text-align: center; margin-bottom: 64px; }
    .feature.reverse .feature-copy { order: 2; }
    .feature.reverse .feature-shot { order: 1; }
    .feature-shot { order: -1; }
    .strip-inner { grid-template-columns: 1fr; gap: 24px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .trust { padding: 32px 24px; }
  }
  @media (max-width: 520px) {
    .nav-cta { font-size: 14px; padding: 7px 14px; white-space: nowrap; }
    .logo { height: 22px; }
  }
