    :root {
      --red: #e63946;
      --red-strong: #d92f3d;
      --red-hover: #c92e3b;
      --red-ui: #d92f3d;
      --orange: #ff8c42;
      --pin-red: #D62839;
      --pin-orange: #B8510C;
      --yellow: #ffd166;
      --green: #2ecc71;
      --green-ui: #137a44;
      --green-badge: #137a44;
      --red-on-dark: #F25F6B;
      --vendor-cta-overlay-start: #891926;
      --vendor-cta-overlay-end: #A01C2A;
      --cream: #fff8f2;
      --ink: #1f1f1f;
      --muted: #6e6b70;
      --surface: #ffffff;
      --surface-2: #fff2e9;
      --line: #eee2d9;
      --shadow: 0 18px 50px rgba(75, 45, 26, .10);
      --shadow-soft: 0 10px 28px rgba(75, 45, 26, .08);
      --map-filter: saturate(.78) contrast(.95) brightness(1.04);
      --photo-overlay: linear-gradient(180deg, rgba(12, 12, 12, 0) 42%, rgba(12, 12, 12, .82) 100%);
      --radius-card: 24px;
      --radius-panel: 32px;
    }

    html[data-theme="dark"] {
      --cream: #111111;
      --ink: #f8f5f1;
      --muted: #b3afb2;
      --surface: #1b1b1b;
      --surface-2: #24211f;
      --line: #34302e;
      --shadow: 0 18px 58px rgba(0, 0, 0, .36);
      --shadow-soft: 0 12px 30px rgba(0, 0, 0, .26);
      --map-filter: grayscale(.75) brightness(.42) contrast(1.25) saturate(.6);
      --red-ui: #ef4d5a;
      --green-ui: #2ecc71;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: #d9d9d9;
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Helvetica, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }
    button, input { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
    a { color: inherit; text-decoration: none; }
    a:focus-visible, button:focus-visible, input:focus-visible {
      outline: 3px solid color-mix(in srgb, var(--red-ui) 42%, transparent);
      outline-offset: 3px;
    }

    #website {
      width: min(1440px, 100%);
      min-height: 100vh;
      margin: 0 auto;
      overflow: hidden;
      background: var(--cream);
      transition: background .25s ease, color .25s ease;
    }

    .container { width: min(1312px, calc(100% - 128px)); margin: 0 auto; }
    .eyebrow {
      margin: 0 0 16px;
      color: var(--red-ui);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { letter-spacing: -.045em; }
    h1 { margin-bottom: 24px; font-size: 78px; line-height: .98; font-weight: 850; }
    h2 { margin-bottom: 20px; font-size: 52px; line-height: 1.02; font-weight: 820; }
    h3 { margin-bottom: 8px; font-size: 23px; line-height: 1.12; font-weight: 780; }
    .lede { color: var(--muted); font-size: 20px; line-height: 1.55; }
    .subtle { color: var(--muted); }
    .red { color: var(--red); }
    .green { color: var(--green-ui); }

    .topbar {
      height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
    }
    .logo { width: 168px; height: auto; display: block; }
    .logo-dark { display: none; }
    html[data-theme="dark"] .logo-light { display: none; }
    html[data-theme="dark"] .logo-dark { display: block; }
    .nav-cluster, .nav-links, .header-actions { display: flex; align-items: center; }
    .nav-cluster { gap: 72px; }
    .nav-links { gap: 36px; font-size: 15px; font-weight: 650; }
    .nav-links a { opacity: .82; }
    .nav-links a:hover { opacity: 1; color: var(--red); }
    .header-actions { gap: 16px; }
    .theme-toggle {
      width: 44px;
      height: 44px;
      padding: 0;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--surface);
      cursor: pointer;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .theme-toggle:hover { transform: translateY(-1px); }
    .theme-toggle:focus-visible {
      outline: 3px solid color-mix(in srgb, var(--red-ui) 42%, transparent);
      outline-offset: 3px;
    }
    .theme-icon {
      position: absolute;
      width: 20px;
      height: 20px;
      display: block;
      transition: opacity .28s ease, transform .38s cubic-bezier(.2, .8, .2, 1);
    }
    .theme-icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }
    .theme-icon-sun { opacity: 0; transform: rotate(-90deg) scale(.62); }
    html[data-theme="dark"] .theme-toggle {
      border-color: #3b3734;
      background: #1c1a19;
    }
    html[data-theme="dark"] .theme-icon-moon { opacity: 0; transform: rotate(90deg) scale(.62); }
    html[data-theme="dark"] .theme-icon-sun { opacity: 1; transform: rotate(0deg) scale(1); }
    .button {
      height: 52px;
      padding: 0 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      border-radius: 999px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 760;
      transition: transform .18s ease, background .18s ease;
    }
    .button:hover { transform: translateY(-1px); }
    .button-primary { color: white; background: var(--red-strong); box-shadow: 0 8px 18px rgba(230, 57, 70, .20); }
    .button-primary:hover { background: var(--red-hover); }
    .button-secondary { color: var(--ink); border-color: var(--line); background: var(--surface); }
    .button-dark { color: #fff; background: #1f1f1f; }
    html[data-theme="dark"] .button-dark { color: #1f1f1f; background: #fff8f2; }

    .hero { padding: 64px 0 72px; }
    .hero-grid {
      min-height: 650px;
      display: grid;
      grid-template-columns: 520px 1fr;
      gap: 64px;
      align-items: center;
    }
    .hero-copy { padding: 24px 0 8px; }
    .hero-copy .lede { max-width: 485px; margin-bottom: 32px; }
    .location-box {
      width: 100%;
      height: 68px;
      padding: 8px 8px 8px 22px;
      display: flex;
      align-items: center;
      gap: 14px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--surface);
      box-shadow: var(--shadow-soft);
    }
    .location-dot { width: 12px; height: 12px; flex: 0 0 auto; border: 3px solid var(--red); border-radius: 50%; }
    .location-box input {
      min-width: 0;
      flex: 1;
      border: 0;
      outline: 0;
      color: var(--ink);
      background: transparent;
      font-size: 16px;
    }
    .location-box input::placeholder { color: var(--muted); }
    .location-box .button { height: 50px; padding: 0 20px; }
    .hero-benefits { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .hero-benefit { display: flex; gap: 10px; align-items: flex-start; }
    .benefit-mark { width: 28px; height: 28px; flex: 0 0 auto; border-radius: 50%; background: color-mix(in srgb, var(--red) 15%, transparent); }
    .hero-benefit:nth-child(2) .benefit-mark { background: color-mix(in srgb, var(--orange) 20%, transparent); }
    .hero-benefit:nth-child(3) .benefit-mark { background: color-mix(in srgb, var(--yellow) 28%, transparent); }
    .hero-benefit strong { display: block; margin-bottom: 4px; font-size: 13px; }
    .hero-benefit span { color: var(--muted); font-size: 12px; line-height: 1.4; }

    .discovery-panel {
      height: 610px;
      padding: 18px;
      display: grid;
      grid-template-columns: 310px 1fr;
      gap: 0;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 30px;
      background: var(--surface);
      box-shadow: var(--shadow);
    }
    .vendor-pane { padding: 12px 14px 12px 8px; }
    .panel-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
    .panel-title-row h3 { margin: 0; font-size: 22px; }
    .live-signal { display: inline-flex; align-items: center; gap: 7px; color: var(--green-ui); font-size: 11px; font-weight: 820; text-transform: uppercase; letter-spacing: .08em; }
    .live-signal::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green-ui); box-shadow: 0 0 0 5px color-mix(in srgb, var(--green-ui) 16%, transparent); }
    .preview-signal { color: var(--muted); }
    .preview-signal::before { background: var(--muted); box-shadow: none; }
    .filter-row { display: flex; gap: 7px; margin: 14px 0 12px; }
    .filter {
      height: 30px;
      padding: 0 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      background: transparent;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
    }
    .filter.active { color: #fff; border-color: var(--red-strong); background: var(--red-strong); }
    .vendor-list { display: flex; flex-direction: column; gap: 4px; }
    .vendor-row {
      padding: 11px 8px;
      display: grid;
      grid-template-columns: 46px 1fr auto;
      gap: 11px;
      align-items: center;
      border-radius: 14px;
      transition: transform .24s ease, background-color .24s ease;
    }
    .vendor-row:first-child { background: var(--surface-2); }
    .vendor-row:hover { transform: translateX(4px); background: var(--surface-2); }
    .vendor-row[hidden] { display: none !important; }
    .vendor-avatar { width: 46px; height: 46px; object-fit: cover; border-radius: 12px; transition: transform .42s cubic-bezier(.2, .8, .2, 1); }
    .vendor-row:hover .vendor-avatar { transform: scale(1.06); }
    .vendor-meta strong { display: block; margin-bottom: 3px; font-size: 13px; }
    .vendor-meta span { display: block; color: var(--muted); font-size: 10.5px; line-height: 1.35; }
    .vendor-meta .open { color: var(--green-ui); font-weight: 760; }
    .row-arrow { color: var(--muted); font-size: 18px; }
    .map-pane { position: relative; overflow: hidden; border-radius: 20px; background: #dfe9dc; }
    .map-tiles {
      position: absolute;
      left: -170px;
      top: -76px;
      width: 768px;
      height: 768px;
      display: grid;
      grid-template-columns: repeat(3, 256px);
      grid-template-rows: repeat(3, 256px);
      filter: var(--map-filter);
      transform: scale(1.04);
      transform-origin: center;
      will-change: transform;
    }
    .map-tiles img { width: 256px; height: 256px; display: block; }
    .map-shade { position: absolute; inset: 0; background: color-mix(in srgb, var(--surface) 7%, transparent); }
    .map-pin {
      position: absolute;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 4px solid var(--surface);
      border-radius: 50% 50% 50% 12px;
      color: #fff;
      background: var(--pin-orange);
      box-shadow: 0 7px 14px rgba(0, 0, 0, .22);
      transform: rotate(-45deg);
      font-size: 12px;
      font-weight: 850;
    }
    .map-pin span { transform: rotate(45deg); }
    .map-pin.one { left: 49%; top: 29%; background: var(--pin-red); }
    .map-pin.two { left: 26%; top: 48%; }
    .map-pin.three { left: 69%; top: 60%; background: var(--yellow); color: #5d4305; }
    .map-pin.four { left: 58%; top: 74%; }
    .you-dot { position: absolute; left: 41%; top: 62%; width: 16px; height: 16px; border: 4px solid #fff; border-radius: 50%; background: #3478f6; box-shadow: 0 4px 9px rgba(0,0,0,.18); }
    .you-dot::after { content: ""; position: absolute; inset: -8px; border: 2px solid rgba(52,120,246,.38); border-radius: 50%; }
    .map-button { position: absolute; right: 16px; bottom: 16px; height: 44px; padding: 0 17px; border: 0; border-radius: 999px; color: var(--ink); background: var(--surface); box-shadow: var(--shadow-soft); font-size: 12px; font-weight: 800; }
    .map-credit { position: absolute; left: 8px; bottom: 8px; padding: 3px 5px; border-radius: 5px; color: var(--muted); background: var(--surface); box-shadow: 0 2px 7px rgba(0,0,0,.10); font-size: 8px; font-weight: 650; }

    .live-strip { padding: 56px 0 72px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 52%, transparent); }
    .section-heading { margin-bottom: 28px; display: flex; align-items: end; justify-content: space-between; }
    .section-heading h2 { margin: 0; font-size: 38px; }
    .text-link { color: var(--red-ui); font-size: 14px; font-weight: 760; }
    .preview-note { color: var(--muted); font-size: 13px; font-weight: 720; }
    .vendor-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .vendor-card {
      position: relative;
      height: 300px;
      overflow: hidden;
      border-radius: 20px;
      background: #292929;
      box-shadow: var(--shadow-soft);
      transition: transform .38s cubic-bezier(.2, .8, .2, 1), box-shadow .38s ease;
    }
    .vendor-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .72s cubic-bezier(.2, .8, .2, 1); }
    .vendor-card:hover { transform: translateY(-6px); box-shadow: 0 20px 38px rgba(75,45,26,.16); }
    .vendor-card:hover img { transform: scale(1.055); }
    .vendor-card::after { content: ""; position: absolute; inset: 0; background: var(--photo-overlay); }
    .card-live { position: absolute; z-index: 2; top: 14px; left: 14px; padding: 7px 10px; border-radius: 999px; color: #fff; background: var(--green-badge); font-size: 10px; font-weight: 850; letter-spacing: .06em; }
    .vendor-card-info { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 17px; color: #fff; }
    .vendor-card-info h3 { margin-bottom: 6px; font-size: 20px; letter-spacing: -.02em; }
    .vendor-card-info p { margin: 0; color: rgba(255,255,255,.76); font-size: 12px; }
    .vendor-card-info .time { color: #a3efc4; font-weight: 750; }

    .story { padding: 120px 0; }
    .story-grid { display: grid; grid-template-columns: 520px 1fr; gap: 92px; align-items: center; }
    .story-copy .lede { max-width: 500px; margin-bottom: 32px; }
    .steps { margin: 34px 0 0; display: grid; gap: 22px; }
    .step { display: grid; grid-template-columns: 42px 1fr; gap: 16px; }
    .step-number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--red-strong); font-size: 13px; font-weight: 820; }
    .step:nth-child(2) .step-number { background: var(--pin-orange); }
    .step:nth-child(3) .step-number { color: #664800; background: var(--yellow); }
    .step strong { display: block; margin-bottom: 4px; font-size: 15px; }
    .step span { color: var(--muted); font-size: 13px; line-height: 1.5; }
    .story-visual { position: relative; height: 650px; }
    .story-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 32px; box-shadow: var(--shadow); transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.045); will-change: transform; }
    .profile-float {
      position: absolute;
      left: -54px;
      bottom: 38px;
      width: 330px;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: var(--surface);
      box-shadow: var(--shadow);
    }
    .profile-float-delay { --reveal-delay: 180ms; }
    .profile-head { display: grid; grid-template-columns: 52px 1fr; gap: 12px; align-items: center; }
    .profile-head img { width: 52px; height: 52px; object-fit: cover; border-radius: 15px; }
    .profile-head strong { display: block; margin-bottom: 3px; }
    .profile-head span { color: var(--muted); font-size: 11px; }
    .profile-badges { margin: 14px 0; display: flex; gap: 7px; }
    .mini-badge { padding: 6px 9px; border-radius: 999px; color: var(--muted); background: var(--surface-2); font-size: 9px; font-weight: 760; }
    .mini-badge.open { color: #fff; background: var(--green-badge); }
    .profile-menu { padding-top: 13px; border-top: 1px solid var(--line); }
    .menu-row { padding: 5px 0; display: flex; justify-content: space-between; font-size: 11px; }
    .menu-row strong { font-weight: 760; }

    .app-showcase { padding: 104px 0; color: #fff8f2; background: #171717; }
    html[data-theme="dark"] .app-showcase { background: #0b0b0b; }
    .app-showcase .eyebrow { color: var(--red-on-dark); }
    .app-grid { display: grid; grid-template-columns: 460px 1fr; gap: 88px; align-items: center; }
    .app-copy h2 { font-size: 54px; }
    .app-copy .lede { color: #bfb9b5; }
    .app-note { margin: 26px 0 30px; padding-left: 18px; border-left: 3px solid var(--green); color: #d7d1cc; font-size: 14px; line-height: 1.55; }
    .store-buttons { display: flex; gap: 12px; }
    .store-button { height: 52px; padding: 0 18px; display: flex; align-items: center; border: 1px solid #47413d; border-radius: 12px; color: #fff; background: #0f0f0f; font-size: 12px; font-weight: 720; }
    .store-button[aria-disabled="true"] { cursor: default; opacity: .72; }
    .phones { height: 650px; display: flex; align-items: end; gap: 22px; }
    .phone {
      width: 240px;
      margin: 0;
      padding: 10px;
      overflow: hidden;
      border: 1px solid #373330;
      border-radius: 38px;
      background: #080808;
      box-shadow: 0 28px 70px rgba(0,0,0,.42);
      transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease;
    }
    .phone:nth-child(2) { margin-bottom: 72px; }
    .phone img { width: 100%; display: block; border-radius: 29px; }
    .phone:hover { transform: translateY(-12px); box-shadow: 0 38px 84px rgba(0,0,0,.52); }
    .phone:nth-child(1):hover { transform: translateY(-12px) rotate(-1deg); }
    .phone:nth-child(3):hover { transform: translateY(-12px) rotate(1deg); }

    .vendor-cta { padding: 88px 0; }
    .vendor-cta-panel {
      min-height: 330px;
      padding: 64px;
      display: grid;
      grid-template-columns: 1fr 460px;
      gap: 64px;
      align-items: center;
      overflow: hidden;
      border-radius: 32px;
      color: #fff;
      background:
        linear-gradient(
          90deg,
          color-mix(in srgb, var(--vendor-cta-overlay-start) 98%, transparent) 0%,
          color-mix(in srgb, var(--vendor-cta-overlay-end) 96%, transparent) 57%,
          rgba(230,57,70,.32) 100%
        ),
        url('./assets/landing/phoenix-vendor-evening.jpg') center 47%/cover;
    }
    .vendor-cta-panel h2 { margin: 0; max-width: 650px; }
    .vendor-cta-panel p { margin: 16px 0 0; max-width: 620px; color: #fff4ef; font-size: 17px; line-height: 1.5; }
    .vendor-cta-actions { display: flex; gap: 12px; justify-content: end; }
    .vendor-cta .button-secondary { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); }
    .vendor-eyebrow { color: #fff4ef; }

    .trust { padding: 50px 0 82px; }
    .trust-grid { display: grid; grid-template-columns: 280px repeat(3, 1fr); gap: 30px; align-items: start; }
    .trust-grid h3 { font-size: 26px; }
    .trust-item { padding-top: 8px; border-top: 2px solid var(--line); }
    .trust-item strong { display: block; margin: 18px 0 7px; font-size: 14px; }
    .trust-item p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
    .trust-color { width: 28px; height: 6px; border-radius: 999px; background: var(--red); }
    .trust-item:nth-child(3) .trust-color { background: var(--orange); }
    .trust-item:nth-child(4) .trust-color { background: var(--yellow); }

    footer { padding: 64px 0 34px; border-top: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 48%, transparent); }
    .footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 50px; }
    .footer-brand p { max-width: 250px; margin: 20px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
    .footer-col strong { display: block; margin-bottom: 18px; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
    .footer-col a { display: block; margin: 11px 0; color: var(--muted); font-size: 13px; }
    .footer-bottom { margin-top: 56px; padding-top: 24px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
    .footer-legal { display: flex; gap: 22px; }

    .toast {
      position: fixed;
      left: 50%;
      bottom: 28px;
      z-index: 20;
      padding: 13px 18px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--ink);
      background: var(--surface);
      box-shadow: var(--shadow);
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 10px);
      transition: .22s ease;
      font-size: 13px;
      font-weight: 700;
    }
    .toast.show { opacity: 1; transform: translate(-50%, 0); }

    /* Motion system: one-shot reveals, restrained ambient motion, and image depth. */
    .motion-ready [data-reveal] {
      --reveal-x: 0px;
      --reveal-y: 30px;
      --reveal-scale: .985;
      opacity: 0;
      transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
      transition:
        opacity .72s cubic-bezier(.2, .8, .2, 1),
        transform .82s cubic-bezier(.2, .8, .2, 1);
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }
    .motion-ready [data-reveal="left"] { --reveal-x: -36px; --reveal-y: 0px; }
    .motion-ready [data-reveal="right"] { --reveal-x: 36px; --reveal-y: 0px; }
    .motion-ready [data-reveal="down"] { --reveal-y: -18px; }
    .motion-ready [data-reveal="scale"] { --reveal-y: 0px; --reveal-scale: .95; }
    .motion-ready [data-reveal].is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
    .motion-ready .vendor-card.is-visible:hover { transform: translateY(-6px); }
    .motion-ready .phone.is-visible:hover { transform: translateY(-12px); }
    .motion-ready .phone.is-visible:nth-child(1):hover { transform: translateY(-12px) rotate(-1deg); }
    .motion-ready .phone.is-visible:nth-child(3):hover { transform: translateY(-12px) rotate(1deg); }

    .motion-ready .map-tiles { animation: map-drift 24s ease-in-out infinite alternate; }
    .motion-ready .map-pin { animation: pin-breathe 4.6s ease-in-out infinite; }
    .motion-ready .map-pin.two { animation-delay: -1.1s; }
    .motion-ready .map-pin.three { animation-delay: -2.3s; }
    .motion-ready .map-pin.four { animation-delay: -3.4s; }
    .motion-ready .live-signal::before { animation: live-pulse 2.4s ease-out infinite; }
    .motion-ready .you-dot::after { animation: location-pulse 2.8s ease-out infinite; }

    @keyframes map-drift {
      from { transform: scale(1.04) translate3d(0, 0, 0); }
      to { transform: scale(1.085) translate3d(-12px, 9px, 0); }
    }
    @keyframes pin-breathe {
      0%, 100% { transform: rotate(-45deg) scale(1); }
      50% { transform: rotate(-45deg) scale(1.055); }
    }
    @keyframes live-pulse {
      0%, 100% { box-shadow: 0 0 0 5px color-mix(in srgb, var(--green-ui) 16%, transparent); }
      50% { box-shadow: 0 0 0 9px color-mix(in srgb, var(--green-ui) 2%, transparent); }
    }
    @keyframes location-pulse {
      0% { opacity: .72; transform: scale(.72); }
      72%, 100% { opacity: 0; transform: scale(1.45); }
    }

    @media (max-width: 1240px) {
      #website { width: 100%; }
      .container { width: calc(100% - 40px); }
      .nav-links { display: none; }
      .topbar { height: 78px; }
      .hero { padding-top: 36px; }
      .hero-grid, .story-grid, .app-grid, .vendor-cta-panel { grid-template-columns: 1fr; }
      h1 { font-size: 52px; }
      h2 { font-size: 40px; }
      .discovery-panel { height: 700px; grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
      .vendor-list { display: grid; grid-template-columns: repeat(2, 1fr); }
      .vendor-row:nth-child(n+5) { display: none; }
      .vendor-cards { grid-template-columns: repeat(2, 1fr); }
      .story { padding: 80px 0; }
      .story-visual { height: 520px; }
      .profile-float { left: 20px; }
      .phones { overflow: hidden; }
      .vendor-cta-actions { justify-content: start; }
      .trust-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 640px) {
      .container { width: calc(100% - 32px); }
      .topbar { height: 72px; }
      .logo { width: 132px; }
      .header-actions { gap: 8px; }
      .header-actions .button { height: 44px; padding: 0 15px; font-size: 13px; }
      .theme-toggle { width: 44px; height: 44px; }
      .hero { padding: 36px 0 52px; }
      .hero-grid { min-height: 0; gap: 40px; }
      h1 { font-size: clamp(40px, 12vw, 52px); }
      h2, .app-copy h2 { font-size: clamp(34px, 10vw, 42px); }
      .lede { font-size: 18px; }
      .location-box { height: auto; min-height: 64px; padding-left: 16px; gap: 10px; }
      .location-box input { font-size: 14px; }
      .location-box .button { height: 46px; padding: 0 15px; font-size: 13px; }
      .hero-benefits { grid-template-columns: 1fr; gap: 16px; }
      .hero-benefit strong { font-size: 14px; }
      .hero-benefit span { font-size: 13px; }
      .discovery-panel { height: 720px; padding: 12px; border-radius: 24px; }
      .vendor-pane { padding: 10px 6px 14px; }
      .panel-title-row h3 { font-size: 20px; }
      .vendor-list { grid-template-columns: 1fr; }
      .vendor-row:nth-child(n+4) { display: none; }
      .map-pane { min-height: 330px; }
      .live-strip { padding: 48px 0 56px; }
      .section-heading { align-items: flex-start; gap: 16px; }
      .section-heading h2 { font-size: 30px; }
      .vendor-cards { grid-template-columns: 1fr; }
      .vendor-card { height: 250px; }
      .story { padding: 72px 0; }
      .story-grid { gap: 48px; }
      .story-visual { height: 480px; }
      .story-photo { border-radius: 24px; }
      .profile-float { left: 16px; right: 16px; bottom: 20px; width: auto; }
      .profile-badges { flex-wrap: wrap; }
      .app-showcase { padding: 72px 0; }
      .app-grid { gap: 40px; }
      .store-buttons { flex-direction: column; align-items: stretch; }
      .store-button { justify-content: center; }
      .phones { height: auto; padding: 12px 2px 24px; align-items: center; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; }
      .phone { width: 220px; flex: 0 0 220px; scroll-snap-align: center; }
      .phone:nth-child(2) { margin-bottom: 0; }
      .vendor-cta { padding: 64px 0; }
      .vendor-cta-panel { min-height: 0; padding: 32px 24px; gap: 32px; border-radius: 24px; }
      .vendor-cta-panel p { font-size: 16px; }
      .vendor-cta-actions { flex-direction: column; }
      .trust { padding: 32px 0 64px; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { margin-top: 40px; flex-direction: column; gap: 16px; }
      .footer-legal { flex-wrap: wrap; }
      .toast { width: calc(100% - 32px); text-align: center; }
    }

    @media (prefers-reduced-motion: reduce) {
      * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
      [data-reveal] { opacity: 1 !important; transform: none !important; }
      [data-parallax] { transform: none !important; }
      .map-tiles, .map-pin, .live-signal::before, .you-dot::after { animation: none !important; }
    }
