/* Spot — colours and radius from Spot/Theme.swift and PlaceCategory.swift */
:root {
  --blue: #5851db;
  --purple: #833ab4;
  --magenta: #c13584;
  --pink: #e1306c;
  --accent: #833ab4;
  --accent-ink: #7a32ab;
  --accent-soft: rgba(131, 58, 180, .12);
  --grad: linear-gradient(135deg, #5851db 0%, #833ab4 35%, #c13584 70%, #e1306c 100%);
  --grad-icon: linear-gradient(225deg, #7068e0 0%, #9a55c4 45%, #c24f9c 75%, #e84c7c 100%);
  --bg: #ffffff;
  --bg-2: #f6f5f9;
  --card: #ffffff;
  --fill: rgba(118, 118, 128, .12);
  --text: #121016;
  --muted: #5d5a66;
  --hair: rgba(60, 60, 67, .16);
  --r: 14px;
  --r-lg: 24px;
  --shadow: 0 1px 2px rgba(18, 16, 22, .06), 0 12px 40px -12px rgba(60, 30, 90, .22);
  --t-gym: #29a078; --t-night: #8c4dd9; --t-bar: #b84073; --t-food: #d9652a;
  --t-cafe: #99663d; --t-beach: #248fcc; --t-park: #3d9947; --t-hotel: #526bbf;
  --t-shop: #d64d8c; --t-land: #7a7366;
  color-scheme: light;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 17px/1.55 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1, h2, h3 { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; letter-spacing: -.022em; line-height: 1.1; margin: 0; }
p { margin: 0; }
a { color: var(--accent-ink); }
img { max-width: 100%; display: block; }
.ic { width: 1em; height: 1em; flex: none; }
.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -999px; top: 8px; background: #fff; padding: 8px 12px; border-radius: 8px; z-index: 10; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 6px; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 5; background: rgba(255, 255, 255, .82); backdrop-filter: saturate(1.8) blur(18px); -webkit-backdrop-filter: saturate(1.8) blur(18px); border-bottom: 1px solid var(--hair); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 700; font-size: 19px; letter-spacing: -.01em; }
.brand img { border-radius: 8px; }
.nav nav { display: flex; align-items: center; gap: 26px; }
.nav nav a:not(.btn) { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; }
.nav nav a:not(.btn):hover { color: var(--text); }

.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 13px 22px; font-weight: 600; font-size: 16px; text-decoration: none; color: #fff; background: var(--grad); box-shadow: 0 8px 24px -8px rgba(131, 58, 180, .55); transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(131, 58, 180, .6); }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-ghost { background: var(--accent-soft); color: var(--accent-ink); box-shadow: none; }
.btn-ghost:hover { box-shadow: none; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 72px 0 88px; }
.hero::before { content: ""; position: absolute; inset: -10% -10% 0; background:
  radial-gradient(40% 50% at 18% 30%, rgba(225, 48, 108, .16), transparent 70%),
  radial-gradient(40% 55% at 82% 20%, rgba(88, 81, 219, .18), transparent 70%),
  radial-gradient(50% 50% at 60% 80%, rgba(131, 58, 180, .12), transparent 70%);
  pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.app-icon { width: 96px; height: 96px; border-radius: 22px; box-shadow: 0 18px 40px -14px rgba(131, 58, 180, .6), 0 0 0 1px rgba(0,0,0,.04); }
.status { display: inline-flex; align-items: center; gap: 8px; margin: 28px 0 18px; padding: 6px 14px 6px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-ink); font-weight: 600; font-size: 14px; }
.status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 4px rgba(131, 58, 180, .15); }
.hero h1 { font-size: clamp(44px, 6.4vw, 76px); font-weight: 800; letter-spacing: -.035em; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { margin-top: 20px; font-size: clamp(18px, 1.7vw, 21px); color: var(--muted); max-width: 34em; }
.lede strong { color: var(--text); font-weight: 600; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.fine { margin-top: 18px; font-size: 13.5px; color: var(--muted); }

/* Sections */
section.block { padding: 96px 0; }
section.alt { background: var(--bg-2); }
.eyebrow { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-ink); margin-bottom: 14px; }
.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 750; }
.sec-head p { margin-top: 16px; color: var(--muted); font-size: 18.5px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Context strip */
.context { padding: 30px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); background: #fff; }
.context p { font-size: 18px; color: var(--muted); text-align: center; max-width: 820px; margin: 0 auto; }
.context strong { color: var(--text); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 20px 22px; border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow); }
.num { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--grad); color: #fff; font-weight: 800; font-size: 18px; }
.steps h3 { font-size: 19px; margin: 2px 0 6px; }
.steps p { color: var(--muted); font-size: 16px; }

/* Features */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat { padding: 26px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--hair); }
.feat .fi { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font-size: 22px; margin-bottom: 18px; }
.feat h3 { font-size: 18.5px; margin-bottom: 8px; }
.feat p { color: var(--muted); font-size: 15.5px; }
.chipline { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.chipline span { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; padding: 4px 9px; border-radius: 999px; }

/* Search smarts */
.smart-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.layer { padding: 26px; border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow); position: relative; }
.layer .tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--grad); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.layer h3 { font-size: 19px; margin-bottom: 8px; }
.layer p { color: var(--muted); font-size: 15.5px; }
.layer .eg { margin-top: 14px; font-size: 14px; color: var(--text); background: var(--bg-2); border-radius: 10px; padding: 10px 12px; }
.notes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 18px; }
.note { display: flex; gap: 14px; padding: 22px 24px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--hair); }
.note .ic { font-size: 22px; color: var(--accent); margin-top: 2px; }
.note h3 { font-size: 17px; margin-bottom: 4px; }
.note p { color: var(--muted); font-size: 15px; }

/* Showcase */
.show-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; justify-items: center; }
.show-grid figure { margin: 0; display: grid; justify-items: center; gap: 16px; }
.show-grid figcaption { text-align: center; color: var(--muted); font-size: 15px; max-width: 280px; }
.show-grid figcaption b { display: block; color: var(--text); font-size: 17px; margin-bottom: 2px; }
.illus-note { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 30px; }

/* Privacy band */
.priv { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.priv ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.priv li { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: var(--r); background: #fff; border: 1px solid var(--hair); font-size: 16px; color: var(--muted); }
.priv li b { color: var(--text); }
.priv li .ic { color: var(--accent); font-size: 20px; margin-top: 2px; }

/* Closing */
.closing { padding: 110px 0; text-align: center; position: relative; overflow: hidden; color: #fff; background: var(--grad); }
.closing::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 0%, rgba(255,255,255,.18), transparent 70%); pointer-events: none; }
.closing .wrap { position: relative; z-index: 1; }
.closing img { width: 88px; height: 88px; border-radius: 20px; margin: 0 auto 26px; box-shadow: 0 20px 50px -10px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.35); }
.closing h2 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 800; }
.closing p { margin: 16px auto 0; max-width: 560px; font-size: 19px; color: rgba(255,255,255,.92); }
.closing .btn { background: #fff; color: var(--accent-ink); margin-top: 32px; box-shadow: 0 12px 30px -10px rgba(0,0,0,.35); }

/* Footer */
.foot { padding: 48px 0 56px; border-top: 1px solid var(--hair); background: #fff; }
.foot-in { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.foot-brand { max-width: 480px; }
.foot-brand p { color: var(--muted); font-size: 15px; margin-top: 12px; }
.foot-brand .disclaim { font-size: 13.5px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; align-items: flex-start; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; }
.foot-links a:hover { color: var(--text); text-decoration: underline; }

/* ---------- Illustrative iPhone UI (drawn in CSS, not screenshots) ---------- */
.phone { position: relative; width: 300px; flex: none; border-radius: 50px; padding: 11px; background: linear-gradient(145deg, #2a2730, #0e0d11); box-shadow: 0 50px 90px -30px rgba(60, 20, 90, .5), 0 0 0 1px rgba(255,255,255,.06) inset; }
.phone.lg { width: 330px; }
.screen { position: relative; border-radius: 40px; overflow: hidden; background: #fff; height: 610px; font-size: 13px; color: #111; display: flex; flex-direction: column; }
.phone.lg .screen { height: 672px; }
.island { position: absolute; top: 10px; left: 50%; width: 92px; height: 26px; margin-left: -46px; background: #000; border-radius: 20px; z-index: 3; }
.sbar { display: flex; justify-content: space-between; padding: 14px 26px 0 30px; height: 44px; font-weight: 600; font-size: 13.5px; }
.sbar i { display: inline-block; width: 22px; height: 11px; border: 1.5px solid #111; border-radius: 3.5px; position: relative; }
.sbar i::after { content: ""; position: absolute; inset: 1.5px 4px 1.5px 1.5px; background: #111; border-radius: 1.5px; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 6px 16px 8px; min-height: 36px; }
.navbar b { font-size: 15.5px; font-weight: 600; }
.navbar .tb { color: var(--accent); font-size: 19px; display: inline-flex; gap: 14px; }
.navbar .back { color: var(--accent); font-size: 15px; display: inline-flex; align-items: center; }
.sfield { margin: 2px 16px 10px; display: flex; align-items: center; gap: 7px; padding: 9px 13px; border-radius: 999px; background: var(--fill); color: #6c6c72; font-size: 14px; }
.sfield .typed { color: #111; }
.caret { display: inline-block; width: 1.5px; height: 15px; background: var(--accent); margin-left: -4px; vertical-align: -2px; }
.chips { display: flex; gap: 6px; padding: 0 16px 10px; overflow: hidden; white-space: nowrap; }
.chip { display: inline-flex; align-items: center; gap: 5px; padding: 6px 10px; border-radius: 999px; font-weight: 500; font-size: 12.5px; background: var(--fill); color: #111; }
.chip .ic { font-size: 13px; }
.chip.loc { color: var(--accent); background: var(--accent-soft); }
.chip.on { color: #fff; }
.divider { height: 1px; background: var(--hair); }
.sub { padding: 10px 16px 2px; font-size: 11.5px; font-weight: 600; color: #6c6c72; text-transform: uppercase; letter-spacing: .04em; }
.rows { padding: 0 16px; flex: 1; }
.row { display: flex; align-items: center; gap: 11px; padding: 7px 0; border-bottom: 1px solid rgba(60,60,67,.1); }
.row:last-child { border-bottom: 0; }
.row .av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 16px; flex: none; }
.row .tx { min-width: 0; flex: 1; }
.row .nm { font-size: 14.5px; display: flex; align-items: center; gap: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row .nm .ic { color: var(--accent); font-size: 11px; }
.row .dt { font-size: 12.5px; color: #6c6c72; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row .dt b { font-weight: 600; }
.row .bm { color: var(--accent); font-size: 13px; }
.tabbar { display: flex; justify-content: space-around; padding: 7px 10px 22px; border-top: 1px solid var(--hair); background: rgba(250,250,252,.96); }
.tabbar span { display: grid; justify-items: center; gap: 2px; font-size: 10px; color: #8e8e93; font-weight: 500; }
.tabbar span .ic { font-size: 21px; }
.tabbar span.on { color: var(--accent); }
.badge { position: relative; }
.badge em { position: absolute; top: -4px; right: -10px; background: #ff3b30; color: #fff; font-style: normal; font-size: 10px; font-weight: 600; border-radius: 999px; padding: 0 5px; line-height: 15px; }

/* Detail screen */
.mapstrip { position: relative; height: 128px; background: #e9efe6; overflow: hidden; }
.mapstrip > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.marker { position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%); width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 15px; box-shadow: 0 4px 10px rgba(0,0,0,.25); border: 2px solid #fff; }
.dir { position: absolute; right: 10px; bottom: 10px; display: inline-flex; gap: 5px; align-items: center; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--accent); font-weight: 600; font-size: 11.5px; }
.dhead { padding: 12px 16px 10px; }
.pills { display: flex; gap: 6px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: 4px; padding: 4px 8px; border-radius: 999px; font-weight: 600; font-size: 11px; }
.dname { font-size: 18px; font-weight: 600; margin-top: 9px; letter-spacing: -.01em; }
.daddr { color: #6c6c72; font-size: 12.5px; margin-top: 2px; }
.copyname { display: flex; align-items: center; gap: 9px; margin-top: 10px; padding: 9px 12px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); }
.copyname small { display: block; color: #6c6c72; font-size: 11px; }
.copyname b { font-size: 13px; }
.seg { display: flex; margin: 2px 16px 10px; padding: 2px; border-radius: 9px; background: var(--fill); }
.seg span { flex: 1; text-align: center; padding: 5px 0; font-size: 12px; font-weight: 500; border-radius: 7px; }
.seg span.on { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.12); font-weight: 600; }
.webview { flex: 1; margin: 0 16px 12px; border-radius: 12px; border: 1px dashed rgba(131,58,180,.4); background: repeating-linear-gradient(135deg, rgba(131,58,180,.05) 0 10px, rgba(131,58,180,.02) 10px 20px); display: grid; place-items: center; text-align: center; color: var(--accent-ink); font-size: 12.5px; font-weight: 600; padding: 16px; }
.webview small { display: block; color: #6c6c72; font-weight: 500; margin-top: 4px; }

/* Map screen */
.bigmap { position: relative; flex: 1; background: #eef1ea; overflow: hidden; }
.bigmap svg.streets { position: absolute; inset: 0; width: 100%; height: 100%; }
.pin { position: absolute; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 13px; border: 2px solid #fff; box-shadow: 0 3px 8px rgba(0,0,0,.25); }
.me { position: absolute; width: 16px; height: 16px; border-radius: 50%; background: #0a84ff; border: 3px solid #fff; box-shadow: 0 0 0 10px rgba(10,132,255,.16); }
.callout { position: absolute; left: 14px; right: 14px; bottom: 14px; background: #fff; border-radius: 14px; padding: 10px 12px; box-shadow: 0 8px 24px rgba(0,0,0,.14); }

/* Saved screen */
.sorthead { display: flex; justify-content: space-between; align-items: center; padding: 4px 16px 6px; }
.sorthead span { font-size: 12px; color: #6c6c72; }
.sorthead b { color: var(--accent); font-size: 12px; font-weight: 600; display: inline-flex; gap: 4px; align-items: center; }
.row .grip { color: #c7c7cc; font-size: 15px; }

.illus-tag { position: absolute; z-index: 4; top: 18px; right: -12px; background: #111; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.hero-phone { position: relative; display: flex; justify-content: center; }
.float { position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 12px 14px; font-size: 13.5px; display: flex; gap: 10px; align-items: center; z-index: 2; }
.float .ic { font-size: 18px; color: var(--accent); }
.float b { display: block; font-size: 14px; }
.float small { color: var(--muted); font-size: 12.5px; }
.float.f1 { left: -64px; top: 400px; }
.float.f2 { right: -10px; bottom: 110px; }

/* Legal / support pages */
.doc { max-width: 760px; margin: 0 auto; padding: 64px 24px 96px; }
.doc .eyebrow { margin-bottom: 10px; }
.doc h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 800; }
.doc .updated { color: var(--muted); margin: 12px 0 36px; }
.doc section { background: var(--bg-2); border-radius: var(--r-lg); padding: 24px 26px; margin-bottom: 14px; }
.doc h2 { font-size: 20px; margin-bottom: 8px; letter-spacing: -.01em; }
.doc p, .doc li { color: var(--muted); font-size: 16.5px; }
.doc p + p { margin-top: 10px; }
.doc ul { margin: 8px 0 0; padding-left: 20px; }
.doc li { margin: 6px 0; }
.doc .lead { font-size: 19px; color: var(--muted); margin: 16px 0 32px; }
.contact-card { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; padding: 24px 26px; border-radius: var(--r-lg); background: var(--grad); color: #fff; margin-bottom: 36px; }
.contact-card p { color: rgba(255,255,255,.92); font-size: 16px; }
.contact-card h2 { color: #fff; font-size: 22px; margin-bottom: 4px; }
.contact-card .btn { background: #fff; color: var(--accent-ink); }
details { background: var(--bg-2); border-radius: var(--r); padding: 18px 22px; margin-bottom: 10px; }
details summary { cursor: pointer; font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--accent); font-size: 22px; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { margin-top: 10px; color: var(--muted); font-size: 16px; }
.doc h2.faqh { font-size: 26px; margin: 8px 0 18px; }

/* 404 */
.nf { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 80px 24px; }
.nf h1 { font-size: clamp(40px, 6vw, 64px); font-weight: 800; margin-top: 24px; }
.nf p { color: var(--muted); margin: 14px auto 28px; max-width: 30em; font-size: 18px; }
.nf .app-icon { margin: 0 auto; }

/* Responsive */
@media (max-width: 1020px) {
  .hero-grid, .steps-grid, .priv { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-copy { text-align: center; }
  .hero-copy .app-icon { margin: 0 auto; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .feat-grid, .smart-grid { grid-template-columns: 1fr 1fr; }
  .show-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid .phone-col { order: 2; display: flex; justify-content: center; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  section.block { padding: 72px 0; }
  .feat-grid, .smart-grid, .notes, .show-grid { grid-template-columns: 1fr; }
  .float { display: none; }
  .illus-tag { right: 6px; }
  .phone, .phone.lg { width: 292px; }
  .phone.lg .screen, .screen { height: 600px; }
  .sec-head { margin-bottom: 36px; }
  .doc { padding: 44px 16px 72px; }
  .doc section { padding: 20px; }
  .foot-in { flex-direction: column; }
  .closing { padding: 84px 0; }
}

/* Phone menu */
.menu-btn { display: none; width: 44px; height: 44px; margin-right: -8px; border: 0; border-radius: 12px; background: transparent; cursor: pointer; position: relative; }
.menu-btn span { position: absolute; left: 12px; right: 12px; height: 2px; border-radius: 2px; background: var(--text); transition: transform .2s ease, top .2s ease; }
.menu-btn span:first-child { top: 17px; } .menu-btn span:last-child { top: 25px; }
.menu-btn[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.menu-btn:hover { background: var(--accent-soft); }
.menu { border-top: 1px solid var(--hair); background: rgba(255,255,255,.97); box-shadow: 0 24px 40px -20px rgba(60,30,90,.35); }
.menu .wrap { display: grid; padding-top: 8px; padding-bottom: 20px; }
.menu a:not(.btn) { padding: 14px 4px; font-size: 18px; font-weight: 600; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--hair); }
.menu a:not(.btn):hover { color: var(--accent-ink); }
.menu .btn { justify-content: center; margin-top: 18px; }
.menu[hidden] { display: none; }
@media (max-width: 720px) { .menu-btn { display: block; } .nav nav { display: none; } }
@media (min-width: 721px) { .menu { display: none !important; } }

/* Smart jump button */
.jump { position: fixed; z-index: 6; right: calc(18px + env(safe-area-inset-right)); bottom: calc(18px + env(safe-area-inset-bottom)); width: 46px; height: 46px; border-radius: 50%; border: 0; display: grid; place-items: center; color: #fff; background: var(--grad); box-shadow: 0 10px 26px -8px rgba(131,58,180,.6); font-size: 20px; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s; }
.jump.show { opacity: 1; visibility: visible; transform: none; transition: opacity .2s ease, transform .2s ease; }
.jump:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .jump, .jump.show, .menu-btn span, .btn { transition: none; } html { scroll-behavior: auto; } }
