/*
 * TrackMyRide website — from the Claude Design project "TrackMyRide style guide"
 * (Home Desktop/Mobile, Owners, Get The App, Contact, Web Style Layer).
 * Tokens are the product's design system (docs/10-ui/claude-design-brief.md §4).
 */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --brand-600: #1565C0;
  --brand-700: #0D47A1;
  --brand-100: #BBDEFB;
  --brand-50: #E3F0FB;
  --navy-900: #0D3C78;
  --gray-900: #111827;
  --gray-600: #4B5563;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --success: #2E7D32;
  --success-tint: #E8F2E9;
  --warning: #F9A825;
  --warning-tint: #FDF4DC;
  --warning-ink: #8A5B00;
  --danger: #C62828;
  --danger-tint: #FBEAEA;
  --shadow: 0 24px 48px rgba(15, 23, 42, .12);
  --ring: 0 0 0 1px #fff, 0 0 0 4px var(--brand-100);
  --content: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: #fff; color: var(--gray-900);
  font-family: Inter, Helvetica, Arial, sans-serif; font-size: 17px; line-height: 28px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
p, h1, h2, h3, h4, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { color: var(--brand-700); text-decoration: underline; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }
.num { font-variant-numeric: tabular-nums; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 50; background: var(--brand-600); color: #fff; padding: 10px 16px; border-radius: 12px; font-weight: 600; }
.skip:focus { top: 12px; color: #fff; }

/* ─── Layout ───────────────────────────────────────────────────────────────── */
.wrap { width: min(var(--content), 100% - 48px); margin: 0 auto; }
.section { padding: 112px 0; }
.section--tint { background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.section--blue { background: var(--brand-50); }
.section--navy { background: var(--navy-900); color: #fff; }
.measure { max-width: 680px; }
.center { text-align: center; }
.center .measure { margin-left: auto; margin-right: auto; }

/* ─── Type ─────────────────────────────────────────────────────────────────── */
.eyebrow { font-size: 13px; line-height: 20px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-600); }
.section--navy .eyebrow { color: var(--brand-100); }
h1, .h1 { font-size: 56px; line-height: 64px; font-weight: 700; letter-spacing: -.02em; }
h2, .h2 { font-size: 40px; line-height: 48px; font-weight: 700; letter-spacing: -.015em; }
h3, .h3 { font-size: 20px; line-height: 28px; font-weight: 600; }
.eyebrow + h1 { margin-top: 16px; }
.eyebrow + h2 { margin-top: 12px; }
.lead { font-size: 20px; line-height: 30px; color: var(--gray-600); }
.muted { color: var(--gray-600); }
.small { font-size: 14px; line-height: 20px; color: var(--gray-600); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .lead, .section--navy .muted { color: var(--brand-100); }

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 20px; border-radius: 12px; border: 1px solid transparent;
  font-size: 17px; font-weight: 600; line-height: 1; cursor: pointer; white-space: nowrap;
  text-decoration: none; transition: background-color .15s ease, border-color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { box-shadow: var(--ring); border-radius: 12px; }
.btn--primary { background: var(--brand-600); color: #fff; }
.btn--primary:hover { background: var(--brand-700); color: #fff; }
.btn--secondary { background: #fff; color: var(--gray-900); border-color: var(--gray-200); }
.btn--secondary:hover { border-color: var(--gray-400); background: var(--gray-50); color: var(--gray-900); }
.btn--white { background: #fff; color: var(--brand-700); }
.btn--white:hover { background: var(--brand-50); color: var(--brand-700); }
.btn--sm { height: 44px; padding: 0 18px; font-size: 16px; }
.btn[disabled] { opacity: .6; cursor: progress; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link-strong { font-weight: 600; }
.link-white { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.link-white:hover { color: #fff; }

/* ─── Header ───────────────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.96); backdrop-filter: saturate(160%) blur(8px); -webkit-backdrop-filter: saturate(160%) blur(8px); border-bottom: 1px solid var(--gray-200); }
.site-header .wrap { height: 72px; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 10px; flex: none; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { width: 24px; height: 31px; }
.brand span { font-size: 18px; font-weight: 600; letter-spacing: -.01em; color: var(--navy-900); }
.nav { display: flex; align-items: center; gap: 28px; flex: 1 1 auto; }
.nav a { font-size: 16px; font-weight: 500; color: var(--gray-600); padding: 4px 0; border-bottom: 2px solid transparent; text-decoration: none; }
.nav a:hover, .nav a[aria-current='page'] { color: var(--brand-700); border-bottom-color: var(--brand-600); }
.header-actions { display: flex; align-items: center; gap: 20px; flex: none; }
.header-actions .link-strong { font-size: 16px; }
.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--gray-200); border-radius: 12px; background: #fff; place-content: center; gap: 4px; cursor: pointer; margin-left: auto; }
.menu-btn span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--gray-900); transition: transform .15s ease, opacity .15s ease; }
.menu-btn[aria-expanded='true'] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.sheet { display: none; padding: 8px 24px 24px; border-bottom: 1px solid var(--gray-200); background: #fff; }
.sheet.is-open { display: block; }
.sheet a:not(.btn) { display: block; padding: 15px 0; font-size: 18px; font-weight: 500; color: var(--gray-900); border-bottom: 1px solid var(--gray-100); }
.sheet a.sheet-app { color: var(--brand-600); font-weight: 600; border-bottom: 0; }
.sheet .btn { width: 100%; margin-top: 12px; }

/* ─── Frames ───────────────────────────────────────────────────────────────── */
.browser { border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200); background: #fff; box-shadow: var(--shadow); }
.browser__bar { height: 36px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; gap: 8px; padding: 0 14px; }
.browser__bar i { width: 9px; height: 9px; border-radius: 999px; background: var(--gray-200); flex: none; }
.browser__url { flex: 1 1 auto; min-width: 0; height: 20px; border-radius: 999px; background: #fff; border: 1px solid var(--gray-200); font-size: 11px; color: var(--gray-400); display: flex; align-items: center; padding: 0 10px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.browser img { width: 100%; }
.phone { width: 300px; border: 10px solid var(--gray-900); border-radius: 34px; background: var(--gray-900); box-shadow: var(--shadow); flex: none; }
.phone img { width: 100%; border-radius: 24px; background: #fff; }
.phone--md { width: 264px; border-radius: 30px; }
.phone--md img { border-radius: 20px; }
.phone--sm { width: 240px; border-width: 9px; border-radius: 28px; }
.phone--sm img { border-radius: 19px; }
.frame-note { font-size: 13px; line-height: 18px; color: var(--gray-400); text-align: center; margin-top: 12px; }
.pills { padding: 16px; border-top: 1px solid var(--gray-200); display: flex; flex-wrap: wrap; gap: 8px; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; font-size: 13px; line-height: 18px; font-weight: 600; }
.pill::before { content: ''; width: 7px; height: 7px; border-radius: 999px; background: currentColor; }
.pill--ok { background: var(--success-tint); color: var(--success); }
.pill--warn { background: var(--warning-tint); color: var(--warning-ink); }
.pill--warn::before { background: var(--warning); }
.pill--bad { background: var(--danger-tint); color: var(--danger); }

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero { padding: 96px 0 104px; }
.hero .wrap { display: grid; grid-template-columns: 560px 1fr; gap: 40px; align-items: center; }
.hero .lead { margin-top: 20px; max-width: 520px; }
.hero .btn-row { margin-top: 32px; }
.hero__note { margin-top: 28px; }
.hero-visual { position: relative; height: 560px; }
.hero-visual .browser { position: absolute; right: 0; top: 40px; width: 520px; }
.hero-visual .phone { position: absolute; left: 0; bottom: 0; }
.hero-visual .notif { position: absolute; left: 176px; top: 104px; width: 300px; box-shadow: var(--shadow); border: 1px solid var(--gray-200); z-index: 2; }

/* A lock-screen style notification, as the phone shows it. */
.notif { background: rgba(255,255,255,.97); border-radius: 16px; padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start; text-align: left; }
.notif__icon { width: 34px; height: 34px; border-radius: 10px; flex: none; }
.notif__meta { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; font-size: 11px; line-height: 14px; }
.notif__meta b { font-weight: 600; color: var(--gray-600); }
.notif__meta span { color: var(--gray-400); }
.notif__title { font-size: 15px; line-height: 21px; font-weight: 600; margin-top: 3px; color: var(--gray-900); }
.notif__body { font-size: 14px; line-height: 20px; color: var(--gray-600); margin-top: 1px; }
.notif-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.notif-grid .notif { padding: 16px; }
.notif-grid .notif__icon { width: 32px; height: 32px; border-radius: 9px; }

/* ─── Cards and lists ──────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.card { background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 28px; }
.card h3 { margin-top: 24px; }
.card p { margin-top: 8px; color: var(--gray-600); }
.card__art { height: 132px; border-radius: 12px; background: var(--brand-50); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.card__art img { height: 116px; width: auto; }
.card--sm { padding: 24px; }
.card--sm .card__art { height: 96px; }
.card--sm .card__art img { height: 84px; }
.card--sm h3 { margin-top: 20px; }
.step-n { width: 40px; height: 40px; border-radius: 999px; background: var(--brand-600); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex: none; }
.card .step-n + h3 { margin-top: 20px; }

.diagram { margin-top: 48px; border: 1px solid var(--gray-200); border-radius: 16px; background: var(--gray-50); padding: 32px 40px; display: grid; grid-template-columns: 1fr 64px 1fr 64px 1fr; align-items: center; }
.diagram__box { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; padding: 18px 20px; }
.diagram__box b { display: block; font-size: 17px; line-height: 24px; font-weight: 600; }
.diagram__box span { display: block; font-size: 15px; line-height: 24px; color: var(--gray-600); margin-top: 4px; }
.diagram__box--brand { background: var(--brand-600); border-color: var(--brand-600); }
.diagram__box--brand b { color: #fff; }
.diagram__box--brand span { color: var(--brand-100); }
.diagram__dash { display: flex; align-items: center; justify-content: center; }
.diagram__dash::before { content: ''; width: 100%; border-top: 2px dashed var(--brand-100); }
.diagram__stack { display: grid; gap: 8px; }
.diagram__stack div { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; padding: 10px 16px; font-size: 16px; line-height: 22px; font-weight: 500; }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature--narrow-art { grid-template-columns: 1fr 380px; }
.feature--narrow-art-left { grid-template-columns: 380px 1fr; }
.feature__text { max-width: 560px; }
.feature__art { display: flex; justify-content: center; }
.feature__lead { margin-top: 16px; max-width: 520px; color: var(--gray-600); }
.bullets { margin-top: 28px; display: grid; gap: 14px; }
.bullets li { display: flex; gap: 12px; color: var(--gray-600); }
.bullets li::before { content: ''; width: 8px; height: 8px; border-radius: 999px; background: var(--brand-600); margin-top: 10px; flex: none; }
.feature__foot { margin-top: 24px; font-size: 15px; line-height: 24px; color: var(--gray-600); }
.feature .btn, .feature .link-strong { margin-top: 28px; }
.flip .feature__text { order: 2; }
.flip .feature__art { order: 1; }

/* FAQ */
.faq { display: grid; grid-template-columns: 360px 1fr; gap: 80px; }
.faq__intro p { margin-top: 16px; color: var(--gray-600); }
.faq__list { max-width: 680px; }
.faq__item { border-bottom: 1px solid var(--gray-200); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 4px; display: flex; gap: 20px; align-items: baseline; justify-content: space-between; border-radius: 12px; font-size: 20px; line-height: 28px; font-weight: 600; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 22px; line-height: 28px; font-weight: 400; color: var(--brand-600); flex: none; }
.faq__item[open] summary::after { content: '\2212'; }
.faq__item summary:hover { color: var(--brand-700); }
.faq__item p { padding: 0 4px 24px; color: var(--gray-600); max-width: 680px; }

/* Footer */
.site-footer { background: var(--navy-900); color: var(--brand-100); border-top: 1px solid rgba(187,222,251,.3); }
.site-footer .wrap { padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr 200px 200px 240px; gap: 40px; }
.footer-grid .brand span { color: #fff; }
.footer-grid p { margin-top: 14px; max-width: 320px; font-size: 16px; line-height: 26px; }
.footer-links { display: grid; gap: 10px; align-content: start; }
.footer-links a { color: #fff; font-size: 16px; line-height: 26px; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 8px; align-content: start; font-size: 16px; line-height: 26px; }
.footer-contact a { color: var(--brand-100); }
.footer-contact a:hover { color: #fff; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(187,222,251,.3); font-size: 14px; }

/* Sticky "Join the pilot" on phones, from the end of the hero to the footer. */
.sticky-cta { display: none; }

/* ─── Store badges ─────────────────────────────────────────────────────────── */
.stores { display: flex; flex-wrap: wrap; gap: 16px; }
.stores--center { justify-content: center; }
/* Official artwork, unmodified. Both badges show at the same visible height (--badge-h):
   Google's PNG carries its required clear space (41 px around a 564×168 badge in a
   646×250 file), so it is drawn larger and that space is taken back with negative margins. */
.stores { --badge-h: 60px; }
.store-badge { display: inline-block; border-radius: 10px; line-height: 0; }
.store-badge--apple img { height: var(--badge-h); width: auto; }
.store-badge--play { overflow: hidden; height: var(--badge-h); }
.store-badge--play img { height: calc(var(--badge-h) * 250 / 168); width: auto; margin: calc(var(--badge-h) * -41 / 168); max-width: none; }
.stores--lg { --badge-h: 68px; }
.store-soon { display: block; font-size: 14px; line-height: 20px; margin-top: 12px; }

/* ─── Get the app ──────────────────────────────────────────────────────────── */
.app-page { font-size: 20px; line-height: 32px; }
.app-hero { padding: 96px 0 88px; text-align: center; }
.app-col { width: min(820px, 100% - 48px); margin: 0 auto; }
.app-hero h1 { font-size: 60px; line-height: 68px; }
.app-hero .lead { font-size: 24px; line-height: 36px; color: var(--gray-900); margin-top: 22px; }
.app-hero .stores { margin-top: 36px; justify-content: center; }
.app-steps { display: grid; gap: 24px; margin-top: 48px; }
.app-step { background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 32px; display: grid; grid-template-columns: 1fr 240px; gap: 40px; align-items: center; }
.app-step__head { display: flex; gap: 16px; align-items: center; }
.app-step__head .step-n { width: 48px; height: 48px; font-size: 22px; }
.app-step h3 { font-size: 28px; line-height: 36px; }
.app-step p { font-size: 20px; line-height: 32px; margin-top: 18px; color: var(--gray-900); }
.app-step .phone { margin: 0 auto; width: 220px; border-width: 9px; border-radius: 26px; }
.app-step .phone img { border-radius: 17px; }
.store-card { width: 220px; margin: 0 auto; border: 1px solid var(--gray-200); border-radius: 20px; padding: 24px 20px; text-align: center; box-shadow: var(--shadow); background: #fff; }
.store-card img { width: 84px; height: 84px; margin: 0 auto; border-radius: 20px; }
.store-card b { display: block; font-size: 18px; line-height: 24px; margin-top: 14px; }
.store-card span { display: block; font-size: 14px; line-height: 20px; color: var(--gray-600); }
.store-card i { display: block; font-style: normal; margin-top: 14px; height: 36px; line-height: 36px; border-radius: 999px; background: var(--brand-600); color: #fff; font-size: 15px; font-weight: 600; }
.see-list { display: grid; gap: 20px; margin-top: 44px; }
.see { border: 1px solid var(--gray-200); border-radius: 16px; padding: 28px 32px; }
.see h3 { font-size: 26px; line-height: 34px; }
.see p { font-size: 20px; line-height: 32px; margin-top: 10px; color: var(--gray-900); }
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.help { border: 2px solid var(--gray-200); border-radius: 16px; padding: 28px 32px; }
.help--blue { border-color: var(--brand-100); background: var(--brand-50); }
.help h3 { font-size: 26px; line-height: 34px; font-weight: 700; }
.help p { font-size: 20px; line-height: 32px; margin-top: 10px; }
.app-page .section { padding: 96px 0; }
.app-page h2 { text-align: center; }
.app-page .section--navy .stores { justify-content: center; margin-top: 32px; }
.app-page .section--navy p { font-size: 18px; line-height: 30px; margin-top: 28px; color: var(--brand-100); }

/* ─── Contact ──────────────────────────────────────────────────────────────── */
.contact-head { padding: 80px 0 40px; }
.contact-head .lead { margin-top: 18px; }
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; padding-bottom: 96px; }
.form-card { border: 1px solid var(--gray-200); border-radius: 16px; background: #fff; padding: 40px; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field label { display: block; font-size: 14px; line-height: 20px; font-weight: 600; margin-bottom: 8px; }
.field label small { font-size: 14px; font-weight: 400; color: var(--gray-400); }
.field input, .field select, .field textarea {
  width: 100%; height: 52px; padding: 0 16px; border: 1px solid var(--gray-200); border-radius: 12px;
  background: #fff; font-size: 17px; color: var(--gray-900); -webkit-appearance: none; appearance: none;
}
.field textarea { height: auto; padding: 14px 16px; line-height: 26px; resize: vertical; min-height: 120px; }
.field select {
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%236B7280' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--gray-400); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--gray-400); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-600); box-shadow: 0 0 0 4px var(--brand-100); }
.field .help { display: block; font-size: 14px; line-height: 20px; color: var(--gray-600); margin-top: 8px; padding: 0; border: 0; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(198,40,40,.12); }
.field .error { display: none; font-size: 14px; line-height: 20px; font-weight: 500; color: var(--danger); margin-top: 8px; }
.field.is-invalid .error { display: block; }
.field.is-invalid .help { display: none; }
.field--wide { grid-column: 1 / -1; }
.form-actions { display: flex; align-items: center; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.form-actions p { font-size: 15px; line-height: 24px; color: var(--gray-600); }
.banner { border: 1px solid; border-radius: 12px; padding: 20px; margin-bottom: 24px; }
.banner h3 { font-size: 20px; line-height: 28px; }
.banner p { font-size: 16px; line-height: 26px; margin-top: 6px; }
.banner--error { border-color: var(--danger); background: var(--danger-tint); color: #8F1F1F; }
.banner--success { border-color: var(--success); background: var(--success-tint); color: #1E5C22; margin: 0; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-side { display: grid; gap: 16px; }
.wa-btn { display: flex; align-items: center; gap: 14px; height: 60px; padding: 0 20px; border: 1px solid var(--gray-200); border-radius: 12px; background: #fff; color: var(--gray-900); font-size: 17px; font-weight: 600; }
.wa-btn:hover { border-color: var(--gray-400); background: var(--gray-50); color: var(--gray-900); text-decoration: none; }
.wa-btn svg { width: 24px; height: 24px; flex: none; }
.info-card { border: 1px solid var(--gray-200); border-radius: 16px; padding: 24px; }
.info-card small { display: block; font-size: 14px; line-height: 20px; font-weight: 600; color: var(--gray-400); letter-spacing: .06em; text-transform: uppercase; }
.info-card a { display: block; font-size: 20px; line-height: 28px; font-weight: 600; margin-top: 8px; color: var(--gray-900); }
.info-card a:hover { color: var(--brand-700); }
.info-card--blue { border-color: var(--brand-100); background: var(--brand-50); }
.info-card--blue p { margin-top: 8px; color: var(--gray-600); }

/* Legal / 404 */
.prose { width: min(760px, 100% - 48px); margin: 0 auto; padding: 80px 0 112px; }
.prose h1 { font-size: 48px; line-height: 56px; }
.prose h2 { font-size: 26px; line-height: 34px; margin-top: 44px; }
.prose p, .prose li { color: var(--gray-600); margin-top: 14px; }
.prose ul { margin-top: 8px; padding-left: 22px; list-style: disc; }
.prose ul li { margin-top: 8px; }

/* ─── Tablet (≤ 1180 px) ───────────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .wrap { width: calc(100% - 80px); }
  .hero { padding: 72px 0 80px; }
  .hero .wrap { grid-template-columns: 1fr 380px; }
  h1 { font-size: 44px; line-height: 52px; }
  .hero .lead { font-size: 19px; }
  .hero-visual { height: auto; }
  .hero-visual .browser { position: relative; width: 100%; top: 0; }
  .hero-visual .phone { position: relative; width: 188px; margin: -80px 0 0 -16px; border-width: 9px; border-radius: 24px; }
  .hero-visual .phone img { border-radius: 15px; }
  .hero-visual .notif { display: none; }
  .nav { gap: 22px; }
  .nav a { font-size: 15px; }
  .header-actions .link-strong { display: none; }
  .feature { gap: 48px; }
  h2, .h2 { font-size: 34px; line-height: 42px; }
  .notif-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .faq { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 320px; gap: 40px; }
  .diagram { padding: 28px; grid-template-columns: 1fr 40px 1fr 40px 1fr; }
}

/* ─── Mobile (≤ 760 px) ────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  body { font-size: 16px; line-height: 26px; }
  .wrap { width: calc(100% - 48px); }
  .site-header .wrap { height: 64px; }
  .brand img { width: 22px; height: 28px; }
  .brand span { font-size: 17px; }
  .nav, .header-actions { display: none; }
  .menu-btn { display: grid; }
  .section { padding: 72px 0; }
  h1, .h1 { font-size: 36px; line-height: 44px; }
  .eyebrow + h1 { margin-top: 14px; }
  h2, .h2 { font-size: 28px; line-height: 36px; }
  h3, .h3 { font-size: 18px; line-height: 26px; }
  .lead { font-size: 18px; line-height: 28px; }
  .btn-row { display: grid; }
  .btn-row .btn { width: 100%; }
  .hero { padding: 40px 0 56px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero .lead { margin-top: 16px; }
  .hero .btn-row { margin-top: 28px; }
  .hero-visual { display: flex; justify-content: center; position: relative; }
  .hero-visual .browser { display: none; }
  .hero-visual .phone { margin: 0; width: 240px; border-radius: 28px; }
  .hero-visual .phone img { border-radius: 19px; }
  .hero-visual .notif { display: flex; left: 50%; transform: translateX(-50%); top: 86px; width: 260px; padding: 12px; }
  .hero__note { order: 3; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .card { padding: 20px; display: flex; gap: 16px; align-items: flex-start; }
  .card__art, .card--sm .card__art { width: 72px; height: 72px; flex: none; }
  .card__art img, .card--sm .card__art img { height: 60px; }
  .card h3, .card--sm h3 { margin-top: 0; }
  .card p { margin-top: 6px; }
  .card--step { display: flex; }
  .card--step .step-n { width: 36px; height: 36px; font-size: 17px; }
  .card .step-n + h3 { margin-top: 0; }
  .diagram { grid-template-columns: 1fr; padding: 20px; gap: 0; margin-top: 28px; }
  .diagram__dash { height: 24px; }
  .diagram__dash::before { width: 0; height: 16px; border-top: 0; border-left: 2px dashed var(--brand-100); }
  .feature, .feature--narrow-art, .feature--narrow-art-left { grid-template-columns: 1fr; gap: 32px; }
  .feature__art { order: 1 !important; }
  .feature__text { order: 2 !important; }
  .bullets { margin-top: 20px; gap: 12px; }
  .bullets li::before { width: 7px; height: 7px; margin-top: 9px; }
  .feature .btn { width: 100%; }
  .phone { width: 250px; border-width: 9px; border-radius: 28px; }
  .phone img { border-radius: 19px; }
  .phone--sm { width: 220px; }
  .notif-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; margin: 28px -24px 0; padding: 0 24px 12px; }
  .notif-grid .notif { flex: none; width: 282px; scroll-snap-align: start; }
  .faq__item summary { font-size: 18px; line-height: 26px; padding: 18px 2px; min-height: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-grid > :first-child, .footer-contact { grid-column: 1 / -1; }
  .site-footer .wrap { padding: 48px 0 40px; }
  .sticky-cta { display: block; position: sticky; bottom: 0; z-index: 20; padding: 12px 24px 16px; background: rgba(255,255,255,.96); border-top: 1px solid var(--gray-200); transform: translateY(110%); transition: transform .2s ease; }
  .sticky-cta.is-visible { transform: none; }
  .sticky-cta .btn { width: 100%; }
  /* Get the app */
  .app-hero { padding: 44px 0 48px; text-align: left; }
  .app-hero h1 { font-size: 40px; line-height: 48px; }
  .app-hero .lead { font-size: 20px; line-height: 32px; margin-top: 18px; }
  .app-hero .stores { justify-content: flex-start; }
  .app-page .section { padding: 56px 0; }
  .app-page h2 { font-size: 30px; line-height: 38px; text-align: left; }
  .app-step { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .app-step__head .step-n { width: 44px; height: 44px; font-size: 20px; }
  .app-step h3 { font-size: 22px; line-height: 30px; }
  .app-step p { font-size: 19px; line-height: 30px; margin-top: 0; }
  .app-step .phone { width: 190px; }
  .see { padding: 22px; }
  .see h3, .help h3 { font-size: 22px; line-height: 30px; }
  .see p, .help p { font-size: 19px; line-height: 30px; }
  .help-grid { grid-template-columns: 1fr; }
  .help { padding: 22px; }
  .app-page .section--navy .stores { justify-content: flex-start; }
  .stores { --badge-h: 56px; }
  .stores--lg { --badge-h: 60px; }
  /* Contact */
  .contact-head { padding: 40px 0 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 0; padding-bottom: 0; }
  .form-card { border: 0; padding: 0 0 40px; }
  .fields { grid-template-columns: 1fr; gap: 20px; }
  .form-actions .btn { width: 100%; }
  .contact-side { margin: 0 -24px; padding: 40px 24px 48px; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
  .wa-btn { justify-content: center; height: 56px; }
  .info-card { background: #fff; padding: 20px; }
  .prose { padding: 48px 0 72px; }
  .prose h1 { font-size: 36px; line-height: 44px; }
}
