  :root {
    --paper: #FAF5EC;
    --paper-2: #F1EAD9;
    --ink: #0F1014;
    --ink-2: #34363D;
    --ink-3: #6D7079;
    --hairline: rgba(15,16,20,.10);
    --hairline-strong: rgba(15,16,20,.18);
    --white: #FFFFFF;
    --blue: #0A66E6;
    --blue-2: #0A4FB8;
    --blue-tint: #E1ECFD;
    --warm: #B8814F;
    --warm-tint: #EFDFC8;
    --green-tint: #DCE6D2;
    --shadow-sm: 0 1px 2px rgba(15,16,20,.06), 0 1px 1px rgba(15,16,20,.04);
    --shadow-md: 0 14px 32px -10px rgba(15,16,20,.20), 0 2px 6px rgba(15,16,20,.06);
    --shadow-lg: 0 50px 90px -22px rgba(15,16,20,.32), 0 16px 36px -14px rgba(15,16,20,.18);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; overflow-x: hidden; }
  body {
    font-family: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    font-size: 17px;
    overflow-x: hidden;
  }

  /* Map texture: a faint dotted grid + warm radial wash */
  .page-bg {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background:
      radial-gradient(1200px 700px at 12% -5%, rgba(31,111,235,.06), transparent 60%),
      radial-gradient(1000px 700px at 95% 15%, rgba(200,149,108,.07), transparent 55%),
      radial-gradient(1100px 800px at 50% 100%, rgba(120,150,90,.05), transparent 60%);
  }
  .page-bg::after {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44'><circle cx='1.2' cy='1.2' r='1.2' fill='%2318181B' fill-opacity='0.045'/></svg>");
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 80%);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ─────────── Header ─────────── */
  header.nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    background: rgba(250,245,236,.72);
    border-bottom: 1px solid var(--hairline);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 58px;
  }
  .brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 16.5px; letter-spacing: -0.01em;
    color: var(--ink); text-decoration: none;
  }
  .brand img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(15,16,20,.14);
  }
  .brand-mark {
    width: 28px; height: 28px; border-radius: 8px;
    background: linear-gradient(135deg, #2a7df5 0%, #1F6FEB 60%, #1357C6 100%);
    position: relative; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15), 0 2px 4px rgba(31,111,235,.25);
  }
  .brand-mark::before {
    content: ""; position: absolute; inset: 6px;
    border: 2px solid rgba(255,255,255,.92); border-radius: 999px;
  }
  .brand-mark::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    width: 5px; height: 5px; border-radius: 999px;
    background: #fff; transform: translate(-50%,-50%);
  }
  nav.links { display: flex; gap: 22px; }
  nav.links a {
    color: var(--ink-2); text-decoration: none; font-size: 14.5px; font-weight: 500;
    transition: color .15s;
  }
  nav.links a:hover { color: var(--ink); }
  .btn {
    display: inline-flex; align-items: center; gap: 6px;
    height: 38px; padding: 0 16px;
    border-radius: 999px;
    font-family: inherit; font-weight: 500; font-size: 14.5px;
    border: 1px solid transparent;
    cursor: pointer; text-decoration: none;
    transition: transform .15s, background .15s, border-color .15s, color .15s;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--blue); color: #fff;
    font-weight: 600;
    box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 6px 14px -4px rgba(10,102,230,.45);
  }
  .btn-primary:hover { background: var(--blue-2); }
  .btn-ghost {
    background: transparent; color: var(--ink); border-color: var(--hairline-strong);
  }
  .btn-ghost:hover { border-color: var(--ink); }
  .btn-lg { height: 48px; padding: 0 22px; font-size: 15.5px; }

  .hidden-frame {
    display: none;
  }

  /* ─────────── Hero ─────────── */
  section.hero {
    padding: 42px 0 30px;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 56px;
    align-items: center;
  }
  .hero-app-icon {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 19px;
    margin: 0 0 20px;
    object-fit: cover;
    box-shadow: 0 16px 34px -18px rgba(15,16,20,.42), 0 2px 5px rgba(15,16,20,.12);
  }
  .eyebrow {
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--blue-2); font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 12px;
    background: var(--blue-tint);
    border: 1px solid rgba(10,102,230,.18);
    border-radius: 999px;
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--blue); box-shadow: 0 0 0 3px rgba(10,102,230,.18); }

  h1.hero-title {
    font-family: "Geist", sans-serif;
    font-weight: 600;
    font-size: clamp(44px, 5.6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin: 22px 0 22px;
    color: var(--ink);
    text-wrap: balance;
  }
  h1.hero-title em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  .hero-sub {
    font-size: 19px; line-height: 1.5;
    color: var(--ink-2);
    max-width: 480px;
    margin: 0 0 26px;
    text-wrap: pretty;
  }
  .hero-ctas { display: flex; gap: 12px; align-items: center; }
  .hero-meta {
    margin-top: 20px;
    display: flex; align-items: center; gap: 14px;
    font-family: "Geist Mono", monospace;
    font-size: 12px; letter-spacing: .04em; color: var(--ink-3);
  }
  .hero-meta .sep { width: 4px; height: 4px; border-radius: 999px; background: var(--ink-3); opacity: .5; }

  /* Hero right side: live iPhone */
  .hero-stage {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 8px 0 12px;
  }
  .hero-copy {
    transform: translateY(-14px);
  }
  .stage-halo {
    position: absolute; inset: -8% -2% 0;
    background:
      radial-gradient(closest-side, rgba(255,255,255,.92), rgba(255,255,255,0) 72%),
      radial-gradient(closest-side at 42% 58%, rgba(10,102,230,.12), transparent 72%);
    filter: blur(2px);
    z-index: 0;
  }

  .hero-iphone {
    position: relative;
    width: 396px;
    max-width: 100%;
    z-index: 2;
  }
  .iphone-frame {
    position: relative;
    aspect-ratio: 396 / 812;
    background: linear-gradient(150deg, #43434a 0%, #1b1b1f 16%, #131316 50%, #1b1b1f 84%, #38383e 100%);
    border-radius: 58px;
    padding: 13px;
    box-shadow:
      0 0 0 2px rgba(255,255,255,.06) inset,
      0 60px 90px -28px rgba(15,16,20,.42),
      0 22px 44px -20px rgba(15,16,20,.28);
  }
  .iphone-island {
    position: absolute;
    top: 26px; left: 50%; transform: translateX(-50%);
    width: 116px; height: 30px;
    background: #050506; border-radius: 99px;
    z-index: 20;
  }
  .iphone-screen {
    position: relative;
    width: 100%; height: 100%;
    border-radius: 46px;
    overflow: hidden;
    background: #0B0B0E;
  }
  .mp-screen {
    display: flex; flex-direction: column;
    color: #fff;
    font-size: 13px;
    padding: 0 14px 14px;
  }
  .mp-status {
    flex: none;
    height: 52px;
    display: flex; align-items: flex-end; justify-content: space-between;
    padding: 0 8px 6px;
  }
  .mp-status .t { font-weight: 600; font-size: 14.5px; letter-spacing: .02em; }
  .mp-status .ic { display: inline-flex; align-items: center; gap: 5px; color: #fff; }
  .mp-nav {
    flex: none;
    display: flex; align-items: center; justify-content: space-between;
    padding: 6px 2px 12px;
  }
  .mp-nav .back {
    display: inline-flex; align-items: center; gap: 3px;
    color: #4c9bff; font-size: 14px; font-weight: 500;
  }
  .mp-nav .back svg { width: 17px; height: 17px; }
  .mp-nav .more {
    width: 28px; height: 28px; border-radius: 999px;
    background: rgba(255,255,255,.12);
    display: grid; place-items: center; color: #4c9bff;
  }
  .mp-nav .more svg { width: 15px; height: 15px; }

  .mp-hero-photo {
    flex: none;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    box-shadow: 0 10px 24px -8px rgba(0,0,0,.5);
  }
  .mp-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: 50% 35%; }
  .mp-hero-grad {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,0) 70%);
  }
  .mp-refreshed {
    position: absolute; top: 12px; left: 12px;
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(8,10,14,.5);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff; font-size: 11px; font-weight: 600;
    padding: 5px 9px; border-radius: 999px;
  }
  .mp-refreshed .rdot {
    width: 6px; height: 6px; border-radius: 999px; background: #45d27e;
    box-shadow: 0 0 0 3px rgba(69,210,126,.28);
  }
  .mp-hero-label {
    position: absolute; left: 16px; right: 16px; bottom: 14px;
  }
  .mp-hero-label .t {
    font-size: 24px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05;
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
  }
  .mp-hero-label .s {
    margin-top: 3px; font-size: 12.5px; color: rgba(255,255,255,.82);
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
  }

  /* map strip — the "place" organization layer, kept light */
  .mp-info {
    flex: none;
    position: relative;
    height: 72px;
    margin: 12px 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #182434, #0e1722);
    border: 1px solid rgba(255,255,255,.08);
  }
  .mp-info .mlines { position: absolute; inset: 0; width: 100%; height: 100%; }
  .mp-info .mring {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 44px; height: 44px; border-radius: 999px;
    border: 1.5px solid #4c9bff; background: rgba(76,155,255,.18);
  }
  .mp-info .mring::after {
    content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 8px; height: 8px; border-radius: 999px; background: #4c9bff;
    box-shadow: 0 0 0 3px rgba(76,155,255,.32);
  }
  .mp-info .mloc {
    position: absolute; left: 12px; bottom: 12px;
    display: inline-flex; align-items: center; gap: 6px;
    white-space: nowrap;
    background: rgba(8,10,14,.55);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff; font-size: 11.5px; font-weight: 600;
    padding: 5px 10px; border-radius: 999px;
  }
  .mp-info .mloc svg { width: 12px; height: 12px; color: #6fb0ff; }

  .mp-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 5px;
    min-height: 0;
  }
  .mp-grid img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 9px; display: block;
  }
  .mp-action { flex: none; padding-top: 14px; }
  .mp-refresh-btn {
    width: 100%; height: 50px;
    background: linear-gradient(180deg, #2f86ff, #0a66e6);
    color: #fff; border: none; border-radius: 15px;
    font-family: inherit; font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer;
    box-shadow: 0 8px 18px -6px rgba(10,102,230,.6);
  }
  .mp-refresh-btn svg { width: 17px; height: 17px; }

  .float-badge {
    position: absolute;
    bottom: 12%;
    right: -1%;
    z-index: 5;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(150%) blur(12px); -webkit-backdrop-filter: saturate(150%) blur(12px);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 10px 13px;
    box-shadow: 0 18px 36px -16px rgba(15,16,20,.28), 0 2px 6px rgba(15,16,20,.06);
    display: flex; align-items: center; gap: 10px;
    animation: floatBadge 5.5s ease-in-out infinite;
  }
  @keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  .float-badge .fb-ic {
    width: 28px; height: 28px; border-radius: 8px;
    background: var(--blue-tint); color: var(--blue);
    display: grid; place-items: center; flex: none;
  }
  .float-badge .fb-ic svg { width: 15px; height: 15px; }
  .float-badge strong { display: block; font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.2; }
  .float-badge span { display: block; font-size: 11px; color: var(--ink-3); font-family: "Geist Mono", monospace; letter-spacing: .02em; font-weight: 500; margin-top: 2px; }

  /* ─────────── Place cards strip ─────────── */
  section.places-strip {
    padding: 12px 0 60px;
  }
  .strip-label {
    font-family: "Geist Mono", monospace; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-2); font-weight: 600; margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
  }
  .strip-label::before, .strip-label::after { content: ""; flex: 1; height: 1px; background: var(--hairline-strong); }
  .place-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .place-card {
    background: var(--white);
    border: 1px solid var(--hairline-strong);
    border-radius: var(--radius);
    padding: 13px;
    box-shadow: var(--shadow-md);
    display: flex; flex-direction: column; gap: 12px;
    min-height: 196px;
    transition: transform .2s, box-shadow .2s;
    cursor: default;
  }
  .place-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  .place-thumb {
    aspect-ratio: 1.5 / 1;
    border-radius: 10px;
    background:
      linear-gradient(180deg, rgba(15,16,20,.02), rgba(15,16,20,.12)),
      var(--paper-2);
    position: relative;
    overflow: hidden;
  }
  .place-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .9;
  }
  .place-card:nth-child(1) .place-thumb::before {
    background-image: url("assets/tile-skytree.png");
  }
  .place-card:nth-child(2) .place-thumb::before {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,.05), rgba(15,16,20,.16)),
      url("assets/generated-hero-place-memory.png");
    background-position: 52% 42%;
  }
  .place-card:nth-child(3) .place-thumb::before {
    background:
      linear-gradient(135deg, rgba(255,255,255,.38), transparent 40%),
      radial-gradient(circle at 52% 42%, rgba(10,102,230,.2), transparent 20%),
      radial-gradient(circle at 20% 76%, rgba(10,102,230,.08), transparent 24%),
      linear-gradient(135deg, #edf3fb, #dce8f8);
  }
  .place-card:nth-child(4) .place-thumb::before {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,.05), rgba(15,16,20,.12)),
      url("assets/tile-garden.png");
    background-position: center;
  }
  .place-card:nth-child(5) .place-thumb::before {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,.02), rgba(15,16,20,.18)),
      url("assets/tile-tower.png");
    background-position: center;
  }
  .place-thumb::after {
    position: absolute;
    right: 8px;
    bottom: 8px;
    padding: 4px 7px;
    border: 1px solid rgba(255,255,255,.52);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: rgba(15,16,20,.72);
    font-family: "Geist Mono", monospace;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .02em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .place-card:nth-child(1) .place-thumb::after { content: "Tokyo"; }
  .place-card:nth-child(2) .place-thumb::after { content: "Home"; }
  .place-card:nth-child(3) .place-thumb::after { content: "School"; }
  .place-card:nth-child(4) .place-thumb::after { content: "Weekend"; }
  .place-card:nth-child(5) .place-thumb::after { content: "Toronto"; }
  .place-thumb .ring {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 34%; aspect-ratio: 1;
    border: 1.5px solid rgba(10,102,230,.72);
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .place-thumb .ring::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    width: 8px; height: 8px; border-radius: 999px;
    background: var(--blue); transform: translate(-50%, -50%);
    box-shadow: 0 0 0 3px rgba(31,111,235,.18);
  }
  .place-thumb svg.maplines {
    display: none;
  }
  .place-card h4 { margin: 0; font-size: 16.5px; font-weight: 650; letter-spacing: -0.015em; }
  .place-card .meta {
    display: flex; gap: 6px; align-items: center; flex-wrap: nowrap;
    font-family: "Geist Mono", monospace; font-size: 10.5px; color: var(--ink-2); letter-spacing: 0; font-weight: 500;
    white-space: nowrap;
  }
  .place-card .meta .dot { width: 3px; height: 3px; border-radius: 999px; background: var(--ink-3); opacity: .6; }
  .place-card .meta .new { color: var(--blue-2); font-weight: 600; }

  /* ─────────── Section frame ─────────── */
  section.row {
    padding: 80px 0;
    position: relative;
  }
  .section-head { max-width: 720px; margin-bottom: 56px; }
  .section-head .kicker, .kicker {
    font-family: "Geist Mono", monospace; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--blue-2); font-weight: 600; margin-bottom: 16px;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .section-head .kicker::before, .kicker::before {
    content: ""; width: 22px; height: 1.5px; background: var(--blue-2); display: inline-block;
  }
  h2 {
    font-family: "Geist", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 600;
    margin: 0 0 18px;
    color: var(--ink);
    text-wrap: balance;
  }
  h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic; font-weight: 400; letter-spacing: -0.01em;
  }
  .section-head p {
    font-size: 18px; line-height: 1.55; color: var(--ink-2);
    margin: 0; max-width: 600px; text-wrap: pretty;
  }

  /* ─────────── Problem section (before / after) ─────────── */
  .compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }
  .compare-card {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-lg);
    padding: 36px 36px 0;
    overflow: hidden;
    position: relative;
    display: flex; flex-direction: column;
  }
  .compare-card .badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
    padding: 5px 10px; border-radius: 999px;
    align-self: flex-start;
  }
  .badge.before { background: var(--warm-tint); color: #8a5a30; }
  .badge.after { background: var(--blue-tint); color: var(--blue-2); }
  .compare-card h3 {
    font-size: 26px; line-height: 1.15; letter-spacing: -0.02em;
    font-weight: 600; margin: 14px 0 8px; color: var(--ink);
  }
  .compare-card p {
    color: var(--ink-2); font-size: 15.5px; line-height: 1.5;
    margin: 0; max-width: 380px;
  }
  .compare-visual {
    margin-top: 24px;
    flex: 1;
    display: flex; align-items: flex-end; justify-content: center;
    min-height: 440px;
  }
  .compare-visual img {
    width: auto;
    height: 460px;
    max-width: 78%;
    object-fit: contain;
    object-position: bottom center;
    transform: translateY(8%);
    filter: drop-shadow(0 30px 40px rgba(20,20,25,.18));
  }

  /* ─────────── How it works ─────────── */
  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .steps { display: flex; flex-direction: column; gap: 4px; }
  .step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    align-items: start;
    padding: 24px 0;
    border-top: 1px solid var(--hairline-strong);
  }
  .step:last-child { border-bottom: 1px solid var(--hairline-strong); }
  .step-num {
    font-family: "Instrument Serif", serif; font-style: italic;
    font-size: 48px; line-height: 1; color: var(--blue);
    letter-spacing: -0.02em;
  }
  .step h4 { margin: 8px 0 6px; font-size: 20px; font-weight: 600; letter-spacing: -0.015em; color: var(--ink); }
  .step p { margin: 0; font-size: 15px; color: var(--ink-2); line-height: 1.55; max-width: 360px; }

  .phone-mock {
    position: relative;
    display: flex; justify-content: center;
  }
  .phone-mock img {
    max-width: 100%;
    height: auto;
    max-height: 760px;
    filter: drop-shadow(0 50px 60px rgba(20,20,25,.22));
  }
  .phone-mock .badge-float {
    position: absolute;
    background: #fff; border: 1px solid var(--hairline);
    border-radius: 14px; padding: 12px 14px;
    box-shadow: var(--shadow-md);
    font-size: 13px; line-height: 1.3;
    display: flex; align-items: center; gap: 10px;
  }
  .badge-float .ico {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--blue-tint); color: var(--blue);
    display: grid; place-items: center;
  }
  .badge-float .ico svg { width: 16px; height: 16px; }
  .badge-float strong { display: block; font-size: 13.5px; font-weight: 600; }
  .badge-float span { display: block; font-family: "Geist Mono", monospace; font-size: 11px; color: var(--ink-3); letter-spacing: .03em; }

  /* ─────────── Product gallery (3 phones) ─────────── */
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .gallery-card {
    background: linear-gradient(180deg, #F0E8D6 0%, #EADFBF 100%);
    border-radius: var(--radius-lg);
    padding: 36px 24px 0;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3 / 4.2;
    display: flex; flex-direction: column; align-items: center;
  }
  .gallery-card:nth-child(2) { background: linear-gradient(180deg, #DDE4D2 0%, #CAD5B2 100%); }
  .gallery-card:nth-child(3) { background: linear-gradient(180deg, #E4DAEA 0%, #D2C0DC 100%); }
  .gallery-card .label {
    align-self: flex-start;
    font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
    color: rgba(20,20,25,.55);
  }
  .gallery-card h4 {
    margin: 6px 0 0; font-size: 22px; line-height: 1.15; letter-spacing: -0.02em;
    font-weight: 600; align-self: flex-start;
    max-width: 90%;
  }
  .gallery-card .phone-shot {
    margin-top: 22px;
    width: 75%;
    flex: 1;
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .gallery-card img {
    margin-top: auto;
    height: 78%;
    width: auto;
    max-width: 88%;
    align-self: center;
    filter: drop-shadow(0 30px 40px rgba(20,20,25,.22));
    transform: translateY(6%);
    object-fit: contain;
  }

  /* ─────────── Feature cards ─────────── */
  .features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }
  .feature {
    background: var(--white);
    border: 1px solid var(--hairline-strong);
    border-radius: var(--radius);
    padding: 26px 24px;
    display: flex; flex-direction: column; gap: 14px;
    box-shadow: var(--shadow-md);
  }
  .feature.wide { grid-column: span 3; }
  .feature.norm { grid-column: span 2; }
  .feature .fico {
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--blue-tint); color: var(--blue);
    display: grid; place-items: center;
  }
  .feature .fico svg { width: 20px; height: 20px; }
  .feature h4 { margin: 4px 0 0; font-size: 18px; font-weight: 600; letter-spacing: -0.015em; color: var(--ink); }
  .feature p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

  /* ─────────── Use cases ─────────── */
  /* ─────────── Place album cards (use cases) ─────────── */
  .albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .album-card {
    background: var(--white);
    border: 1px solid var(--hairline-strong);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .22s, box-shadow .22s;
    cursor: default;
  }
  .album-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .album-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }
  .album-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .album-cover.map {
    background: linear-gradient(135deg, #eef2f7, #e2e8f1);
  }
  .album-cover.warm {
    background:
      radial-gradient(circle at 48% 50%, rgba(184,129,79,.22), transparent 12%),
      radial-gradient(circle at 20% 28%, rgba(255,255,255,.52), transparent 24%),
      linear-gradient(135deg, #f6ead9, #ead9bd);
  }
  .album-cover.green {
    background:
      radial-gradient(circle at 50% 52%, rgba(94,138,63,.24), transparent 16%),
      linear-gradient(160deg, rgba(94,138,63,.18), transparent 46%),
      linear-gradient(135deg, #e9f0dc, #d3e2c1);
  }
  .album-cover.blue {
    background:
      radial-gradient(circle at 50% 52%, rgba(10,102,230,.22), transparent 15%),
      radial-gradient(circle at 82% 18%, rgba(255,255,255,.5), transparent 25%),
      linear-gradient(135deg, #eaf2ff, #d2e2f8);
  }
  .album-cover::before {
    content: "";
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 999px;
    opacity: .7;
  }
  .album-cover.photo::before {
    display: none;
  }
  .album-cover.photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,16,20,0) 48%, rgba(15,16,20,.32));
    pointer-events: none;
  }
  .place-map {
    background-size: cover;
  }
  .place-map::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 18px;
    background:
      radial-gradient(circle at 50% 50%, rgba(255,255,255,.72), rgba(255,255,255,0) 28%),
      linear-gradient(135deg, rgba(255,255,255,.36), rgba(255,255,255,0));
    opacity: .7;
    pointer-events: none;
  }
  .cover-location {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.52);
    border-radius: 999px;
    background: rgba(255,255,255,.84);
    color: rgba(15,16,20,.78);
    font-family: "Geist Mono", monospace;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .02em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .album-cover .streets { display: none; }
  .album-cover .radius-ring {
    position: absolute; left: 50%; top: 52%; transform: translate(-50%,-50%);
    z-index: 2;
    width: 46%; aspect-ratio: 1; border-radius: 999px;
    border: 2px solid var(--blue);
    background: rgba(10,102,230,.12);
  }
  .album-cover.warm .radius-ring { border-color: #b8814f; background: rgba(184,129,79,.14); }
  .album-cover.green .radius-ring { border-color: #5e8a3f; background: rgba(94,138,63,.14); }
  .album-cover .radius-ring::after {
    content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 10px; height: 10px; border-radius: 999px; background: currentColor;
  }
  .album-cover .pin {
    position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%);
    z-index: 2;
    width: 12px; height: 12px; border-radius: 999px;
    background: var(--blue); box-shadow: 0 0 0 4px rgba(10,102,230,.22), 0 2px 4px rgba(0,0,0,.2);
  }
  .album-cover.warm .pin { background: #b8814f; box-shadow: 0 0 0 4px rgba(184,129,79,.22), 0 2px 4px rgba(0,0,0,.2); }
  .album-cover.green .pin { background: #5e8a3f; box-shadow: 0 0 0 4px rgba(94,138,63,.22), 0 2px 4px rgba(0,0,0,.2); }
  .album-cover .status {
    position: absolute; top: 12px; right: 12px;
    z-index: 3;
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--hairline);
    font-family: "Geist Mono", monospace; font-size: 10.5px; font-weight: 600; letter-spacing: .03em;
    color: var(--ink); padding: 5px 9px; border-radius: 999px;
  }
  .album-cover .status.live { color: #1f7a40; }
  .album-cover .status.live .sd { width: 6px; height: 6px; border-radius: 999px; background: #2a9a55; box-shadow: 0 0 0 3px rgba(42,154,85,.22); }
  .album-cover .status.new { color: var(--blue); }
  .album-cover.photo .status { background: rgba(8,10,14,.5); border-color: rgba(255,255,255,.2); color: #fff; }
  .album-body {
    padding: 16px 18px 18px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
  }
  .album-body .meta-left { display: flex; align-items: center; gap: 11px; min-width: 0; }
  .album-body .meta-left > div { min-width: 0; display: flex; flex-direction: column; }
  .album-body .picon {
    width: 36px; height: 36px; border-radius: 10px; flex: none;
    display: grid; place-items: center; color: var(--blue);
    background: var(--blue-tint);
  }
  .album-body .picon.warm { color: #8a5a30; background: var(--warm-tint); }
  .album-body .picon.green { color: #4a7c3b; background: var(--green-tint); }
  .album-body .picon svg { width: 18px; height: 18px; }
  .album-body h5 { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.2; letter-spacing: -0.015em; color: var(--ink); white-space: nowrap; }
  .album-body .place-address {
    margin: 3px 0 0;
    color: var(--ink-2);
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .album-body .sub { margin: 4px 0 0; font-family: "Geist Mono", monospace; font-size: 10.5px; color: var(--ink-3); letter-spacing: 0; font-weight: 500; white-space: nowrap; }
  .album-body .go {
    width: 30px; height: 30px; border-radius: 999px; flex: none;
    border: 1px solid var(--hairline-strong);
    display: grid; place-items: center; color: var(--ink-2);
  }
  .album-body .go svg { width: 15px; height: 15px; }

  /* ─────────── Privacy ─────────── */
  .privacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .privacy-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
  .privacy-list li {
    display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start;
    list-style: none;
    font-size: 15.5px; color: var(--ink-2);
    padding: 14px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .privacy-list li:last-child { border-bottom: none; }
  .privacy-list .check {
    width: 22px; height: 22px; border-radius: 999px;
    background: var(--blue); color: #fff;
    display: grid; place-items: center;
    margin-top: 2px;
  }
  .privacy-list .check svg { width: 12px; height: 12px; }
  .privacy-list strong { color: var(--ink); font-weight: 600; }

  /* ─────────── FAQ ─────────── */
  .faq {
    max-width: 880px; margin: 0 auto;
  }
  .faq details {
    border-bottom: 1px solid var(--hairline-strong);
    padding: 24px 4px;
  }
  .faq details:first-of-type { border-top: 1px solid var(--hairline-strong); }
  .faq summary {
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
    list-style: none;
    font-size: 19px; font-weight: 600; letter-spacing: -0.015em;
    color: var(--ink);
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "+"; font-family: "Geist", sans-serif; font-weight: 400;
    font-size: 26px; line-height: 1; color: var(--ink-3);
    transition: transform .2s;
  }
  .faq details[open] summary::after { content: "−"; }
  .faq .ans {
    margin-top: 14px; color: var(--ink-2); font-size: 16px; line-height: 1.6;
    max-width: 680px;
  }

  /* ─────────── CTA ─────────── */
  .cta-card {
    background:
      radial-gradient(800px 400px at 20% 20%, rgba(31,111,235,.10), transparent 70%),
      radial-gradient(700px 400px at 85% 80%, rgba(200,149,108,.12), transparent 70%),
      var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-lg);
    padding: 72px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-card::before {
    content: ""; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><circle cx='1' cy='1' r='1' fill='%2318181B' fill-opacity='0.06'/></svg>");
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
    pointer-events: none;
  }
  .cta-card > * { position: relative; }
  .cta-card h2 { margin-bottom: 14px; }
  .cta-card p { font-size: 18px; color: var(--ink-2); max-width: 540px; margin: 0 auto 32px; }
  .cta-form {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--paper); padding: 6px;
    border-radius: 999px; border: 1px solid var(--hairline);
    box-shadow: var(--shadow-sm);
  }
  .cta-form input {
    border: none; background: transparent; outline: none;
    font-family: inherit; font-size: 15px;
    padding: 10px 14px; width: 280px; color: var(--ink);
  }
  .cta-form input::placeholder { color: var(--ink-3); }
  .form-message {
    min-height: 20px;
    margin-top: 12px;
    color: var(--ink-3);
    font-size: 13px;
  }
  .form-message[data-state="success"] {
    color: var(--blue-2);
    font-weight: 600;
  }
  .cta-meta {
    margin-top: 22px;
    font-family: "Geist Mono", monospace; font-size: 12px; color: var(--ink-3); letter-spacing: .04em;
    display: flex; gap: 14px; justify-content: center; align-items: center;
  }
  .cta-meta .sep { width: 4px; height: 4px; border-radius: 999px; background: var(--ink-3); opacity: .5; }

  /* ─────────── Footer ─────────── */
  footer {
    border-top: 1px solid var(--hairline);
    padding: 24px 0 28px;
    margin-top: 56px;
  }
  .footer-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-brand {
    flex: 0 0 auto;
  }
  .footer-brand img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }
  .footer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--ink-3);
    font-size: 13px;
    letter-spacing: -0.01em;
  }
  .footer-meta span + span::before,
  .footer-links a + a::before {
    content: "·";
    margin-right: 12px;
    color: var(--ink-3);
  }
  .footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
  }
  .footer-links a {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 13.5px;
    white-space: nowrap;
  }
  .footer-links a:hover {
    color: var(--blue);
  }

  /* ─────────── Responsive ─────────── */
  @media (max-width: 1024px) {
    .hero-grid, .how-grid, .privacy-grid, .compare { grid-template-columns: 1fr; gap: 48px; }
    .place-row { grid-template-columns: repeat(2, 1fr); }
    .gallery { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr 1fr; }
    .feature.wide, .feature.norm { grid-column: span 1; }
    .usecases, .albums-grid { grid-template-columns: 1fr 1fr; }
    .footer-compact { align-items: flex-start; flex-direction: column; }
    .footer-links { justify-content: flex-start; }
    .hero-iphone { width: 360px; }
    .compare-card { padding: 28px 24px 0; }
    nav.links { display: none; }
  }
  @media (max-width: 640px) {
    .container { width: 100%; max-width: 100vw; padding: 0 20px; }
    .nav-inner { gap: 12px; }
    .nav-inner > .btn { display: none; }
    section.hero { padding-top: 30px; overflow: hidden; }
    section.hero .container { overflow: hidden; }
    .hero-grid { display: block; width: 100%; }
    .hero-copy { width: 100%; max-width: 100%; transform: none; min-width: 0; }
    .hero-app-icon {
      width: 64px;
      height: 64px;
      border-radius: 15px;
      margin-bottom: 18px;
    }
    .eyebrow {
      max-width: 100%;
      white-space: normal;
      font-size: 10.5px;
      letter-spacing: .105em;
      line-height: 1.25;
    }
    h1.hero-title {
      font-size: clamp(38px, 12vw, 46px);
      line-height: 1.04;
      max-width: 340px;
      overflow-wrap: normal;
    }
    .hero-sub {
      max-width: 340px;
      font-size: 17px;
      line-height: 1.45;
    }
    .hero-ctas { flex-wrap: wrap; }
    .hero-stage {
      width: 100%;
      max-width: 320px;
      margin: 34px auto 0 0;
      justify-content: flex-start;
    }
    .hero-iphone { width: 320px; }
    .float-badge {
      left: 132px;
      right: auto;
      bottom: 7%;
      max-width: 178px;
      padding: 9px 10px;
      animation: none;
    }
    .float-badge strong { font-size: 12px; }
    .float-badge span { font-size: 10px; }
    .place-row { grid-template-columns: 1fr; }
    .place-card { min-height: 0; }
    .place-card h4 { white-space: normal; }
    .place-card .meta { flex-wrap: wrap; white-space: normal; row-gap: 3px; }
    .features, .usecases, .albums-grid { grid-template-columns: 1fr; }
    .album-body h5, .album-body .place-address, .album-body .sub { white-space: normal; }
    footer { padding-bottom: 32px; }
    .footer-meta { flex-direction: column; align-items: flex-start; gap: 4px; }
    .footer-meta span + span::before { content: none; }
    .cta-card { padding: 48px 24px; }
    .cta-form { flex-direction: column; border-radius: 18px; padding: 12px; }
    .cta-form input { width: 100%; }
    .cta-form .btn { width: 100%; justify-content: center; }
    section.row { padding: 56px 0; }
  }

  @media (max-width: 420px) {
    .nav-inner > .btn { display: none; }
    .hero-stage {
      max-width: 320px;
      margin-left: 0;
      margin-right: auto;
      justify-content: flex-start;
    }
    .hero-iphone { width: 320px; }
    .float-badge {
      left: 132px;
      right: auto;
      max-width: 172px;
    }
  }
