/**
 * Mat Track — site styles.
 * One shell, two modes, set by data-mode on <html>:
 *   "app" → dark, for practitioners (/)
 *   "gym" → light, for gym owners (/gyms)
 * Colour roles mirror memberapp/constants/theme.ts. Green is the product's own
 * colour (the training squares); it's the single accent on the app side.
 */
@font-face { font-family: "Archivo"; src: url("/assets/fonts/Archivo.woff2") format("woff2"); font-weight: 100 900; font-stretch: 62% 125%; font-display: swap; }

:root, html[data-mode="app"] {
  --bg: #000; --bg-2: #0a0a0b; --card: #1c1c1e; --card-2: #2a2a2c; --line: #2e2e30;
  --ink: #fff; --ink-2: #98989e; --ink-3: #5a5a60;
  --accent: #30d158; --accent-ink: #000;
  --btn: #fff; --btn-ink: #000;
  --blue: #3a7bfd; --amber: #ffd60a; --red: #ff453a;
  --glow: rgba(48,209,88,.22);
}
html[data-mode="gym"] {
  --bg: #fff; --bg-2: #f7f7f8; --card: #f5f6f7; --card-2: #e9eaec; --line: #e2e3e6;
  --ink: #111214; --ink-2: #6b7078; --ink-3: #9aa0a8;
  --accent: #158a44; --accent-ink: #fff;
  --btn: #111214; --btn-ink: #fff;
  --blue: #1f5eff; --amber: #b47d00; --red: #C8102E;
  --glow: rgba(17,18,20,.08);
}
:root {
  --maxw: 1160px;
  --display: "Archivo", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --r-card: 18px; --r-tile: 12px; --r-pill: 100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); font-size: 17px; line-height: 1.45; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
p { margin: 0; }

/* ---- type ---- */
.display, h1, h2 { font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 100; letter-spacing: -.025em; line-height: .96; text-wrap: balance; margin: 0; }
h1 { font-size: clamp(40px, 6vw, 84px); }
h2 { font-size: clamp(32px, 5vw, 64px); }
h3 { font-family: var(--display); font-weight: 700; font-variation-settings: "wdth" 100; letter-spacing: -.02em; line-height: 1.02; font-size: clamp(22px, 2.6vw, 30px); margin: 0; text-wrap: balance; }
.eyebrow { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.lede { font-size: clamp(18px, 2vw, 22px); line-height: 1.4; color: var(--ink-2); max-width: 44ch; text-wrap: pretty; }
.dim { color: var(--ink-2); }
.accent { color: var(--accent); }

/* ---- nav ---- */
.nav { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 70%, transparent); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.nav-left { display: flex; align-items: center; gap: 20px; }
.logo { height: 22px; width: auto; max-width: none; flex: none; }
.nav-left > a { flex: none; display: inline-flex; }
html[data-mode="app"] .logo { filter: invert(1); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.switch { display: inline-flex; padding: 3px; border-radius: var(--r-pill); background: var(--card); }
.switch a { padding: 7px 14px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600; color: var(--ink-2); white-space: nowrap; transition: background .2s, color .2s; }
.switch a[aria-current="page"] { background: var(--btn); color: var(--btn-ink); }
/* menu: one disclosure, no JS */
.menu { position: relative; }
.menu summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; padding: 11px 14px; border-radius: var(--r-pill); font-size: 14px; font-weight: 600; color: var(--ink); border: 1px solid var(--line); }
.menu summary::-webkit-details-marker { display: none; }
.menu summary svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.menu[open] summary { background: var(--card); }
.menu-list { position: absolute; right: 0; top: calc(100% + 8px); min-width: 220px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 8px; display: grid; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.menu-list a { padding: 10px 12px; border-radius: 9px; font-size: 15px; font-weight: 500; color: var(--ink); }
.menu-list a:hover { background: var(--card-2); }
.menu-list .sep { height: 1px; background: var(--line); margin: 6px 4px; }
.menu-list small { display: block; padding: 6px 12px 2px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
@media (max-width: 480px) {
  .nav .wrap { padding: 0 12px; }
  .nav-inner { height: 60px; gap: 6px; }
  .logo { height: 15px; }
  .nav-left { gap: 7px; }
  .nav-right { gap: 6px; }
  .switch { padding: 2px; }
  .switch a { padding: 6px 8px; font-size: 11.5px; }
  .nav .btn { padding: 8px 10px; font-size: 11.5px; }
  .menu summary { padding: 8px 8px; }
  .menu summary span { display: none; }
  .gp-head { padding-top: 30px; }
}

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; border-radius: var(--r-pill); font-weight: 600; font-size: 15px; line-height: 1; border: 1px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .2s, border-color .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--btn); color: var(--btn-ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-2); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.store { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.store img { height: 48px; width: auto; }
.ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.fine { font-size: 14px; color: var(--ink-2); }

/* ---- phone frame ---- */
.phone { position: relative; width: 100%; aspect-ratio: 390/844; border-radius: 44px; background: #0b0b0c; padding: 11px; box-shadow: 0 0 0 1px #2e2e30, inset 0 0 0 1px rgba(255,255,255,.07), 0 40px 100px rgba(0,0,0,.5); }
html[data-mode="gym"] .phone { box-shadow: 0 0 0 1px #1c1c1e, inset 0 0 0 1px rgba(255,255,255,.07), 0 40px 90px rgba(17,18,20,.25); }
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 34px; background: #000; }
.phone::after { content: ""; position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 32%; height: 26px; background: #0b0b0c; border-radius: 0 0 18px 18px; }

/* ---- hero ---- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 104px) 0 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 40px; align-items: end; }
.hero-copy { display: grid; gap: 28px; padding-bottom: clamp(48px, 8vw, 120px); }
.hero-copy h1 .soft { color: var(--ink-2); }
.hero-visual { position: relative; display: flex; justify-content: center; align-self: end; }
.hero-visual .phone { max-width: 340px; margin-bottom: -18%; }
.hero-visual::before { content: ""; position: absolute; inset: auto 0 -10% 0; height: 80%; background: radial-gradient(closest-side, var(--glow), transparent 70%); filter: blur(20px); pointer-events: none; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 12px; }
  .hero-copy { padding-bottom: 24px; }
  .hero-visual .phone { max-width: 280px; margin-bottom: -26%; }
}
.hero-edge { border-top: 1px solid var(--line); }

/* ---- sections ---- */
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section-head { display: grid; gap: 18px; max-width: 820px; margin-bottom: clamp(36px, 5vw, 64px); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: end; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 24px; } }

/* ---- the year grid (pure CSS heatmap) ---- */
.year { display: grid; gap: 28px; }
.year-stat { display: flex; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap; align-items: baseline; }
.year-stat .big { font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 100; font-size: clamp(56px, 9vw, 120px); line-height: .9; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.year-stat .big small { font-size: .32em; color: var(--ink-2); font-weight: 700; letter-spacing: -.01em; margin-left: .2em; }
.grid-wrap { overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.grid-wrap::-webkit-scrollbar { display: none; }
.ygrid { display: grid; grid-template-rows: repeat(7, 1fr); grid-auto-flow: column; grid-auto-columns: minmax(15px, 1fr); gap: 6px; min-width: 860px; }
.ygrid i { display: block; aspect-ratio: 1; border-radius: 4px; background: var(--card); transition: background .25s, transform .25s; }
.ygrid i.on { background: var(--accent); }
.ygrid i.on.l1 { opacity: .45; } .ygrid i.on.l2 { opacity: .75; }
.ygrid i.today { box-shadow: 0 0 0 2px var(--ink); }
.ygrid.animate i.on { animation: pop .5s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(var(--d) * 5ms); }
@keyframes pop { from { transform: scale(.2); opacity: 0; } to { transform: scale(1); } }
.months { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-3); min-width: 860px; padding-top: 10px; }
.legend { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; color: var(--ink-2); }
.legend b { color: var(--ink); font-weight: 600; }

/* ---- bento ---- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.tile { position: relative; overflow: hidden; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); display: grid; grid-template-rows: auto 1fr; min-height: 440px; }
html[data-mode="app"] .tile { background: #0c0c0d; }
.tile .t-copy { padding: 26px 26px 8px; display: grid; gap: 8px; align-content: start; z-index: 1; }
.tile .t-copy p { color: var(--ink-2); font-size: 15px; line-height: 1.4; max-width: 40ch; }
.tile .t-art { position: relative; overflow: hidden; }
.tile .t-art { margin-top: 14px; }
.tile .t-art img { position: absolute; left: 26px; right: 26px; top: 0; width: calc(100% - 52px); height: auto; border-radius: 22px; box-shadow: 0 0 0 1px var(--line), 0 18px 40px rgba(0,0,0,.35); }
.tile.c4 { grid-column: span 4; } .tile.c3 { grid-column: span 3; } .tile.c2 { grid-column: span 2; } .tile.c6 { grid-column: span 6; }
.tile.c4 .t-art img, .tile.c6 .t-art img { left: 50%; transform: translateX(-50%); width: min(88%, 520px); }
.tile.c6 { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); grid-template-rows: 1fr; min-height: 300px; }
.tile.c6 .t-copy { padding: 34px; align-content: center; }
.tile.c6 .t-art { margin: 0; }
.tile.c6 .t-art img { left: 0; right: auto; top: 50%; transform: translateY(-50%); width: 92%; border-radius: 22px; }
@media (max-width: 900px) { .tile.c4, .tile.c3, .tile.c2 { grid-column: span 6; } .tile.c6 { grid-template-columns: 1fr; grid-template-rows: auto 1fr; min-height: 420px; } .tile.c6 .t-art { margin-top: 14px; } .tile.c6 .t-art img { top: 0; transform: none; width: calc(100% - 52px); left: 26px; } }

/* ---- gym bridge ---- */
.bridge h2 { font-size: clamp(32px, 4.2vw, 56px); }
.bridge { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
@media (max-width: 900px) { .bridge { grid-template-columns: 1fr; } }
.tiers { display: grid; gap: 8px; }
.tier { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--card); border-radius: var(--r-tile); padding: 14px 16px; font-size: 15px; }
.tier b { font-weight: 600; display: block; }
.tier small { color: var(--ink-2); font-size: 13px; }
.pill { font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 100px; border: 1px solid; white-space: nowrap; }
.pill.on { color: var(--accent); border-color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); }
.pill.req { color: var(--amber); border-color: var(--amber); background: color-mix(in srgb, var(--amber) 12%, transparent); }
.pill.listed { color: var(--ink-2); border-color: var(--line); }
.form { display: grid; gap: 10px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 520px) { .form .row { grid-template-columns: 1fr; } }
.form input { width: 100%; padding: 15px 16px; font: inherit; font-size: 15px; color: var(--ink); background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-tile); }
.form input::placeholder { color: var(--ink-3); }
.form input:focus { outline: none; border-color: var(--ink-2); }

/* ---- switches (gym page) ---- */
.switches { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px; }
.sw { display: grid; grid-template-columns: 46px minmax(0,1fr); gap: 16px; padding: 22px; background: var(--card); border-radius: var(--r-card); }
.sw .tg { width: 46px; height: 28px; border-radius: 100px; background: var(--accent); position: relative; margin-top: 1px; }
.sw .tg::after { content: ""; position: absolute; top: 3px; right: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; }
.sw h3 { font-size: 19px; margin-bottom: 6px; }
.sw p { color: var(--ink-2); font-size: 15px; line-height: 1.4; }

/* ---- platform list ---- */
.plist { columns: 2; column-gap: 48px; }
@media (max-width: 760px) { .plist { columns: 1; } }
.plist div { break-inside: avoid; padding: 18px 0; border-top: 1px solid var(--line); }
.plist b { display: block; font-weight: 700; margin-bottom: 4px; font-size: 17px; }
.plist span { color: var(--ink-2); font-size: 15px; line-height: 1.4; }

/* ---- quote ---- */
.quote { display: grid; gap: 22px; max-width: 900px; }
.quote blockquote { margin: 0; font-family: var(--display); font-weight: 700; font-variation-settings: "wdth" 100; font-size: clamp(24px, 3.4vw, 40px); line-height: 1.12; letter-spacing: -.02em; text-wrap: balance; }
.quote cite { font-style: normal; color: var(--ink-2); font-size: 15px; }
.stats { display: flex; gap: clamp(28px, 5vw, 64px); flex-wrap: wrap; }
.stat b { display: block; font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 100; font-size: clamp(36px, 5vw, 64px); letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat span { color: var(--ink-2); font-size: 14px; }

/* ---- pricing ---- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; } }
.plan { background: var(--card); border-radius: var(--r-card); padding: 28px; display: grid; gap: 18px; align-content: start; border: 1px solid transparent; }
.plan.featured { border-color: var(--ink); }
.plan .name { font-weight: 700; font-size: 18px; }
.plan .price { font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 100; font-size: 56px; letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.plan .price small { font-family: var(--font); font-size: 15px; font-weight: 500; color: var(--ink-2); letter-spacing: 0; }
.plan .per { color: var(--ink-2); font-size: 14px; }
.plan ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 15px; }
.plan li { padding-left: 24px; position: relative; }
.plan li::before { content: ""; position: absolute; left: 1px; top: 7px; width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.plan .limit { font-size: 13px; color: var(--ink-2); }
.plan .save { justify-self: start; font-size: 13px; font-weight: 700; color: var(--accent-ink); background: var(--accent); border-radius: 100px; padding: 5px 12px; margin-top: -8px; }
.plan .save:empty { visibility: hidden; }
.toggle-row { display: inline-flex; gap: 2px; padding: 3px; background: var(--card); border-radius: 100px; margin-bottom: 28px; }
.toggle-row button { border: 0; background: transparent; color: var(--ink-2); padding: 8px 16px; border-radius: 100px; font-size: 14px; font-weight: 600; cursor: pointer; }
.toggle-row button[aria-pressed="true"] { background: var(--btn); color: var(--btn-ink); }

/* ---- timeline, faq ---- */
.timeline { max-width: 760px; }
.tl { display: grid; grid-template-columns: 80px minmax(0,1fr); gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.tl:last-child { border-bottom: 1px solid var(--line); }
.tl .t { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--ink-2); font-variant-numeric: tabular-nums; padding-top: 3px; }
.tl b { display: block; font-weight: 700; margin-bottom: 4px; }
.tl p { color: var(--ink-2); font-size: 15px; line-height: 1.45; }
.faq { max-width: 800px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600; font-size: 17px; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ink-2); font-weight: 400; font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 0 20px; color: var(--ink-2); font-size: 15.5px; line-height: 1.5; max-width: 64ch; }

/* ---- close ---- */
.close { text-align: center; display: grid; gap: 26px; justify-items: center; padding: clamp(80px, 12vw, 180px) 0; }
.close .lede { margin: 0 auto; }
.close h2 { font-size: clamp(40px, 7vw, 96px); }

/* ---- footer ---- */
.footer { border-top: 1px solid var(--line); padding: 36px 0 44px; font-size: 14px; color: var(--ink-2); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer a:hover { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ---- get-the-app modal ---- */
.getdlg { border: 0; padding: 0; background: transparent; max-width: min(92vw, 560px); }
.getdlg::backdrop { background: rgba(0,0,0,.6); backdrop-filter: blur(6px); }
.getdlg .box { background: var(--card); color: var(--ink); border: 1px solid var(--line); border-radius: 22px; padding: 32px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 28px; align-items: center; }
.getdlg h3 { margin-bottom: 8px; }
.getdlg p { color: var(--ink-2); font-size: 15px; margin-bottom: 18px; }
.getdlg .qr { width: 148px; height: 148px; border-radius: 14px; background: #fff; padding: 8px; }
.getdlg .qr img { width: 100%; height: 100%; image-rendering: pixelated; }
.getdlg .x { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--card-2); color: var(--ink); cursor: pointer; font-size: 18px; line-height: 1; }
.getdlg .box { position: relative; }
@media (max-width: 560px) { .getdlg .box { grid-template-columns: 1fr; } .getdlg .qr { display: none; } }

/* ---- proof with logo ---- */
.quote-who { display: flex; align-items: center; gap: 12px; }
.mark { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 12px; letter-spacing: .02em; background: #111214; color: #fff; }
.mark { position: relative; overflow: hidden; } .mark img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #fff; border-radius: 50%; }

/* ---- console (web app) frame — tokens from mat-track redesign/ui-foundation index.css (dark) ---- */
.duo { position: relative; display: grid; grid-template-columns: 1fr; }
.duo .phone { position: absolute; right: 6%; bottom: -16%; max-width: 24%; min-width: 150px; }
.con { --chrome:#09090a; --canvas:#121213; --s2:#161617; --s3:#17181a; --s4:#1a1a1b; --l1:#1a1b1d; --l2:#232426; --l3:#28282b; --i1:#fff; --i2:#e3e4e6; --i3:#959597; --i4:#565759; --acc:#67B5FF; --ok:#30d158; --warn:#f2c14e; --bad:#ff6166; --cell:#232325;
  background: var(--chrome); color: var(--i2); border-radius: 14px; overflow: hidden; box-shadow: 0 0 0 1px #232426, 0 30px 80px rgba(0,0,0,.35); font-family: var(--font); font-size: 13px; line-height: 1.35; aspect-ratio: 16/11.2; display: grid; grid-template-columns: 244px 1fr; padding: 10px 10px 10px 0; -webkit-font-smoothing: antialiased; }
.con .rail { padding: 0 8px; display: flex; flex-direction: column; gap: 1px; }
.con .row { height: 28px; display: flex; align-items: center; gap: 8px; padding: 0 6px; border-radius: 8px; color: var(--i3); font-weight: 500; font-size: 13px; white-space: nowrap; }
.con .row svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; opacity: .9; flex: none; }
.con .row.on { background: var(--s4); color: var(--i1); }
.con .chip { color: var(--i1); font-weight: 500; margin-bottom: 8px; justify-content: space-between; padding-right: 4px; }
.con .chip .l { display: flex; align-items: center; gap: 8px; min-width: 0; }
.con .chip img { width: 20px; height: 20px; border-radius: 4px; object-fit: contain; }
.con .chip svg.bell { width: 15px; height: 15px; color: var(--i3); }
.con kbd { margin-left: auto; font-family: var(--font); font-size: 10px; font-weight: 500; color: var(--i4); background: var(--s4); border: 1px solid var(--l2); border-radius: 4px; padding: 0 4px; line-height: 15px; }
.con .grp { height: 24px; display: flex; align-items: center; gap: 4px; padding: 0 6px; margin-top: 12px; font-size: 11.5px; color: var(--i3); }
.con .grp svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
.con .grp.closed svg { transform: rotate(-90deg); }
.con .me { margin-top: auto; padding-top: 8px; }
.con .me .av { width: 20px; height: 20px; border-radius: 50%; background: var(--s4); border: 1px solid var(--l2); display: grid; place-items: center; font-size: 9px; color: var(--i2); }
.con .panel { background: var(--canvas); border: 1px solid var(--l1); border-radius: 10px; padding: 18px 20px; display: grid; gap: 16px; align-content: start; min-width: 0; overflow: hidden; }
.con .figs { display: flex; gap: 10px; }
.con .fig { flex: 1; border: 1px solid var(--l1); border-radius: 6px; padding: 9px 12px; background: var(--canvas); }
.con .mic { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--i4); font-weight: 500; }
.con .fig b { display: block; font-size: 22px; font-weight: 600; color: var(--i1); letter-spacing: -.01em; margin-top: 2px; font-variant-numeric: tabular-nums; }
.con .fig .h { font-size: 11.5px; color: var(--i4); margin-top: 2px; }
.con .card { border: 1px solid var(--l1); border-radius: 6px; padding: 14px 16px; }
.con .card .hd { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.con .card .hd .mt { font-size: 11.5px; color: var(--i4); font-variant-numeric: tabular-nums; }
.con .months { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.con .mo .t { text-align: center; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--i3); margin-bottom: 8px; }
.con .mo .g { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; max-width: 200px; margin: 0 auto; }
.con .mo .g span { display: grid; place-items: center; aspect-ratio: 1; border-radius: 5px; background: var(--cell); color: var(--i3); font-size: 9.5px; font-variant-numeric: tabular-nums; }
.con .mo .g span.e { background: transparent; }
.con .mo .g span.a { background: rgba(48,209,88,.3); color: var(--i1); } .con .mo .g span.b { background: rgba(48,209,88,.55); color: var(--i1); } .con .mo .g span.c { background: rgba(48,209,88,.8); color: #fff; } .con .mo .g span.d { background: var(--ok); color: #fff; }
.con .mo .g span.t { box-shadow: inset 0 0 0 1.5px var(--ok); }
.con .two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.con .sec { display: grid; gap: 8px; }
.con .sec .st { font-size: 13px; font-weight: 600; color: var(--i1); }
.con .sec .sd { font-size: 11.5px; color: var(--i4); margin-top: -4px; }
.con .list { border: 1px solid var(--l1); border-radius: 6px; overflow: hidden; }
.con .li { height: 40px; display: flex; align-items: center; gap: 10px; padding: 0 12px; border-bottom: 1px solid var(--l1); font-size: 12.5px; color: var(--i1); }
.con .li:last-child { border-bottom: 0; }
.con .li .av { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--l2); background: var(--s3); display: grid; place-items: center; font-size: 9px; font-weight: 500; color: var(--i2); flex: none; }
.con .li .tm { width: 46px; color: var(--i2); font-variant-numeric: tabular-nums; }
.con .li .x { margin-left: auto; font-size: 11.5px; color: var(--i4); white-space: nowrap; }
.con .li .pill { font-size: 10.5px; font-weight: 500; padding: 2px 7px; border-radius: 100px; margin-left: auto; white-space: nowrap; }
.con .pill.bad { color: var(--bad); background: rgba(255,97,102,.12); } .con .pill.warn { color: var(--warn); background: rgba(242,193,78,.12); } .con .pill.ok { color: var(--ok); background: rgba(48,209,88,.12); }
@media (max-width: 900px) { .con { grid-template-columns: 1fr; padding: 10px; aspect-ratio: auto; } .con .rail { display: none; } .con .panel > * { min-width: 0; max-width: 100%; } .con .figs { flex-wrap: wrap; } .con .fig { flex-basis: 45%; min-width: 0; } .con .months { grid-template-columns: 1fr; min-width: 0; } .con .mo:nth-child(n+2) { display: none; } .con .two { grid-template-columns: 1fr; } .con .list .row { overflow: hidden; } .duo .phone { display: none; } }
/* hero with duo: full-width below copy */
.hero-duo { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 40px; align-items: center; }
.hero-duo .hero-copy { padding-bottom: clamp(40px, 6vw, 96px); }
.hero-duo .duo { width: 140%; margin: 0 0 -6% 0; }
.hero-duo .duo .phone { right: auto; left: -7%; bottom: -12%; max-width: 18%; }
.hero-duo h1 { font-size: clamp(38px, 5vw, 70px); }
/* the small phone in the duo: same proportions as the big one, scaled */
.duo .phone { padding: 5px; border-radius: 22px; }
.duo .phone img { border-radius: 17px; }
.duo .phone::after { top: 5px; height: 12px; border-radius: 0 0 9px 9px; }
@media (max-width: 900px) { .hero-duo { grid-template-columns: 1fr; } .hero-duo .duo { width: 100%; margin: 0 0 24px; } .hero-duo .hero-copy { padding-bottom: 16px; } }
.getdlg .dlg-title { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.getdlg .dlg-title img { width: 40px; height: 40px; border-radius: 10px; }
.getdlg .dlg-title h3 { margin: 0; }

/* console panels inside gym-page tiles */
.tile .t-art .con.mini { position: absolute; left: 26px; right: 26px; top: 0; grid-template-columns: 1fr; padding: 0; aspect-ratio: auto; border-radius: 10px; box-shadow: 0 0 0 1px #232426, 0 18px 40px rgba(0,0,0,.25); font-size: 12px; }
.con.mini .panel { border: 0; border-radius: 10px; padding: 14px 16px; gap: 12px; }
.con.mini .ph { display: flex; justify-content: space-between; align-items: center; }
.con.mini .ph b { font-size: 14px; font-weight: 600; color: var(--i1); }
.con.mini .ph .tabs { display: flex; gap: 2px; background: var(--s3); border: 1px solid var(--l2); border-radius: 6px; padding: 2px; }
.con.mini .ph .tabs span { padding: 2px 8px; border-radius: 4px; color: var(--i3); font-size: 11px; }
.con.mini .ph .tabs span.on { background: var(--s4); color: var(--i1); }
.con.mini table { width: 100%; border-collapse: collapse; font-size: 11.5px; }
.con.mini th { text-align: left; font-weight: 500; color: var(--i4); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; padding: 0 0 6px; border-bottom: 1px solid var(--l1); }
.con.mini td { padding: 7px 0; border-bottom: 1px solid var(--l1); color: var(--i2); white-space: nowrap; }
.con.mini tr:last-child td { border-bottom: 0; }
.con.mini td.n { color: var(--i1); font-weight: 500; }
.con.mini td .bar { display: inline-block; vertical-align: middle; width: 64px; height: 4px; border-radius: 100px; background: var(--s4); margin-right: 6px; overflow: hidden; }
.con.mini td .bar i { display: block; height: 100%; background: var(--bad); }
.con.mini td .bar i.w { background: var(--warn); }
.con.mini .week { display: grid; grid-template-columns: 36px repeat(5, 1fr); gap: 4px; font-size: 10.5px; }
.con.mini .week .h { color: var(--i4); text-align: center; padding-bottom: 4px; }
.con.mini .week .t { color: var(--i4); text-align: right; padding-right: 4px; font-variant-numeric: tabular-nums; }
.con.mini .week .c { height: 34px; border-radius: 5px; background: var(--s3); border: 1px solid var(--l1); padding: 4px 6px; color: var(--i2); overflow: hidden; }
.con.mini .week .c b { display: block; font-weight: 500; color: var(--i1); font-size: 10.5px; }
.con.mini .week .c small { color: var(--ok); font-size: 9.5px; }
.con.mini .week .c.full small { color: var(--warn); }
.con.mini .week .c.now { border-color: var(--acc); }
.con .pill { border: 0; }
html[data-mode="gym"] .bento .tile { min-height: 500px; }

/* disciplines strip */
.sports { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sports .k { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-right: 8px; }
.sports span:not(.k) { font-size: 13.5px; font-weight: 500; color: var(--ink-2); padding: 6px 12px; border-radius: 100px; background: var(--card); }
html[data-mode="app"] .sports span:not(.k) { background: #0c0c0d; box-shadow: inset 0 0 0 1px var(--line); }

/* ---- blog ---- */
.filters { display: inline-flex; gap: 2px; padding: 3px; background: var(--card); border-radius: 100px; margin-top: 26px; }
.filters button { border: 0; background: transparent; color: var(--ink-2); padding: 8px 16px; border-radius: 100px; font-size: 14px; font-weight: 600; cursor: pointer; }
.filters button[aria-pressed="true"] { background: var(--btn); color: var(--btn-ink); }
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.post-card { display: grid; grid-template-rows: auto 1fr; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; transition: transform .15s, border-color .2s; }
.post-card[hidden] { display: none; }
.post-card:hover { transform: translateY(-2px); border-color: var(--ink-3); }
.post-card > img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card-body { padding: 22px; display: grid; gap: 8px; align-content: start; }
.post-card-body h3 { font-size: 20px; }
.post-card-body p:not(.eyebrow) { color: var(--ink-2); font-size: 15px; line-height: 1.45; }
.post-card-body .fine { margin-top: 6px; }
.post-head { max-width: 720px; padding-top: clamp(40px, 6vw, 80px); display: grid; gap: 18px; }
.post-head h1 { font-size: clamp(34px, 4.6vw, 58px); }
.post-head .eyebrow a { color: var(--ink-2); }
.post-head .eyebrow a:hover { color: var(--ink); }
.byline { font-size: 14px; color: var(--ink-2); }
.cover { margin: 32px 0 0; max-width: 960px; }
.cover img { width: 100%; border-radius: var(--r-card); border: 1px solid var(--line); }
.prose { max-width: 720px; padding-top: 36px; padding-bottom: 24px; font-size: 18px; line-height: 1.6; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(26px, 3vw, 34px); margin-top: 2em; line-height: 1.08; }
.prose h3 { font-size: 22px; margin-top: 1.8em; }
.prose h2 + *, .prose h3 + * { margin-top: .7em; }
.prose a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--ink-3); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose blockquote { margin: 1.6em 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--accent); color: var(--ink-2); font-size: 1.05em; }
.prose figure { margin: 2em 0; }
.prose figure img { width: 100%; border-radius: var(--r-tile); border: 1px solid var(--line); }
.prose figcaption { font-size: 14px; color: var(--ink-2); margin-top: 10px; }
.prose code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; background: var(--card); padding: 2px 6px; border-radius: 6px; }
.prose pre { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-tile); padding: 16px 18px; overflow-x: auto; font-size: 14px; line-height: 1.5; }
.prose pre code { background: none; padding: 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.4em 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-2); }
.prose strong { font-weight: 600; }
.post-cta { padding-top: 40px; }
.post-cta-tile { min-height: 0; padding: 32px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: center; }
.post-cta-tile h3 { margin-bottom: 8px; }
.post-cta-tile p { font-size: 15px; }
@media (max-width: 700px) { .post-cta-tile { grid-template-columns: 1fr; } }
.related { padding: 56px 24px 96px; }
.related .eyebrow { margin-bottom: 18px; }

/* ---- blog CTAs: black boxes, white text (both modes) ---- */
.prose .cta-box, .post-cta-tile { background: #111214; color: #fff; border: 1px solid #111214; }
html[data-mode="app"] .prose .cta-box, html[data-mode="app"] .post-cta-tile { background: #1c1c1e; border-color: #2e2e30; }
.prose .cta-box b, .post-cta-tile h3 { color: #fff; }
.prose .cta-box span, .post-cta-tile p, .post-cta-tile .dim { color: #98989e; }
.prose .cta-box .btn-primary, .post-cta-tile .btn-primary { background: #fff; color: #111214; }
.prose .cta-box .btn-primary:hover, .post-cta-tile .btn-primary:hover { box-shadow: 0 8px 24px rgba(255,255,255,.18); }
.prose .cta-box .btn-ghost, .post-cta-tile .btn-ghost { color: #fff; border-color: #3a3a3d; }
.prose .cta-box .btn-ghost:hover, .post-cta-tile .btn-ghost:hover { border-color: #fff; }
/* one hairline between FAQ and author, not two */
.faq-block + .author, .prose .author { border-top: 0; padding-top: 8px; }
.faq-block details:last-child { border-bottom: 1px solid var(--line); }
.post-cta { padding-top: 24px; }
/* hover states that were missing */
.toc a:hover, .post-head .eyebrow a:hover { color: var(--ink); }
.faq-block summary:hover h3 { color: var(--ink-2); }
.filters button:hover { color: var(--ink); }
.post-card:focus-visible { outline-offset: 0; }
.prose .cta-box a { text-decoration: none; }
.post { padding-bottom: clamp(56px, 8vw, 96px); }
.related { padding-bottom: 0; }

/* closing CTA with product art */
.post-cta-tile { grid-template-columns: 150px minmax(0,1fr) auto; }
.cta-art { position: relative; height: 110px; }
.cta-art .con-t { position: absolute; left: 0; top: 0; width: 130px; border-radius: 8px; box-shadow: 0 0 0 1px #2e2e30; }
.cta-art .ph-t { position: absolute; left: 92px; top: 18px; width: 44px; border-radius: 8px; box-shadow: 0 0 0 2px #0b0b0c, 0 10px 24px rgba(0,0,0,.45); }
.cta-art .ph-t.solo { left: 40px; top: 0; width: 60px; border-radius: 10px; }
@media (max-width: 700px) { .post-cta-tile { grid-template-columns: 1fr; } .cta-art { display: none; } }

/* ---- blog: AEO blocks ---- */
.takeaways { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 22px 26px; margin-bottom: 28px; }
.takeaways .eyebrow { margin-bottom: 10px; }
.takeaways ul { margin: 0; padding-left: 1.2em; font-size: 16px; line-height: 1.5; }
.takeaways li + li { margin-top: 6px; }
.toc { margin-bottom: 36px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.toc .eyebrow { margin-bottom: 8px; }
.toc ol { margin: 0; padding-left: 1.2em; font-size: 15px; line-height: 1.5; columns: 2; column-gap: 32px; }
@media (max-width: 640px) { .toc ol { columns: 1; } }
.toc li { break-inside: avoid; padding: 2px 0; }
.toc a { color: var(--ink-2); text-decoration: none; }
.toc a:hover { color: var(--ink); text-decoration: underline; }
.prose .cta-box { margin: 2.4em 0; padding: 24px 26px; border-radius: var(--r-card); display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 20px; align-items: center; }
.prose .cta-box b { display: block; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -.01em; }
.prose .cta-box span { display: block; font-size: 14.5px; line-height: 1.45; margin-top: 4px; }
@media (max-width: 640px) { .prose .cta-box { grid-template-columns: 1fr; } }
.faq-block { margin-top: 3em; }
.faq-block h2 { margin-bottom: .6em; }
.faq-block details { border-top: 1px solid var(--line); }
.faq-block summary { list-style: none; cursor: pointer; padding: 16px 0; display: flex; justify-content: space-between; gap: 16px; }
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary h3 { font-size: 18px; margin: 0; }
.faq-block summary::after { content: "–"; color: var(--ink-2); font-size: 22px; line-height: 1; }
.faq-block details:not([open]) summary::after { content: "+"; }
.faq-block .a { padding: 0 0 18px; font-size: 16px; line-height: 1.55; color: var(--ink-2); max-width: 64ch; }
.author { display: grid; gap: 12px; padding: 8px 0; margin-top: 16px; }
.author .who { display: flex; align-items: center; gap: 12px; }
.author .av { width: 44px; height: 44px; border-radius: 50%; background: var(--card); border: 1px solid var(--line); display: grid; place-items: center; font-size: 14px; font-weight: 600; overflow: hidden; }
.author .av img { width: 100%; height: 100%; object-fit: cover; }
.author b { display: block; font-weight: 600; }
.author span { display: block; font-size: 13.5px; color: var(--ink-2); }
.author p { font-size: 15px; color: var(--ink-2); line-height: 1.5; max-width: 60ch; }
.post-cta-tile { grid-template-columns: 240px minmax(0,1fr) auto; padding: 28px 32px 28px 24px; }
.cta-art { height: 150px; }
.cta-art .con-t { width: 200px; border-radius: 10px; }
.cta-art .ph-t { left: 150px; top: 26px; width: 66px; border-radius: 11px; }
.cta-art .ph-t.solo { left: 70px; top: 0; width: 88px; border-radius: 14px; }

/* mid-post CTA: heatmap art */
.prose .cta-box { grid-template-columns: 150px minmax(0,1fr) auto; }
.cta-grid { display: grid; grid-template-rows: repeat(7, 1fr); grid-auto-flow: column; grid-auto-columns: 1fr; gap: 3px; width: 150px; }
.cta-grid i { display: block; aspect-ratio: 1; border-radius: 2px; background: #2a2a2c; }
.cta-grid i.on { background: #30d158; } .cta-grid i.on.l1 { opacity: .45; } .cta-grid i.on.l2 { opacity: .75; }
@media (max-width: 700px) { .prose .cta-box { grid-template-columns: 1fr; } .cta-grid { width: 100%; max-width: 260px; } }

/* mid-post CTA: art left, copy + buttons right */
.prose .cta-box { grid-template-columns: 168px minmax(0,1fr); gap: 26px; padding: 28px; }
.cta-grid { width: 168px; gap: 4px; }
.cta-copy { display: grid; gap: 16px; }
.cta-copy .ctas { gap: 10px; }
.prose .cta-box b { font-size: 20px; }
.prose .cta-box span { font-size: 15px; }
@media (max-width: 700px) { .prose .cta-box { grid-template-columns: 1fr; } }
/* closing CTA: bigger art, centred */
.post-cta-tile { grid-template-columns: 300px minmax(0,1fr) auto; min-height: 240px; padding: 32px 36px 32px 28px; align-items: center; }
.cta-art { height: 190px; display: block; }
.cta-art .con-t { width: 250px; top: 50%; transform: translateY(-50%); border-radius: 12px; }
.cta-art .ph-t { left: 190px; top: 50%; transform: translateY(-40%); width: 84px; border-radius: 14px; }
.cta-art .ph-t.solo { left: 90px; top: 50%; transform: translateY(-50%); width: 110px; border-radius: 18px; }
@media (max-width: 900px) { .post-cta-tile { grid-template-columns: 1fr; min-height: 0; } .cta-art { display: none; } }

.post-cta-tile { grid-template-columns: 340px minmax(0,1fr); gap: 36px; min-height: 260px; }
.post-cta-tile .cta-copy { max-width: 56ch; }
.cta-art { height: 210px; }
.cta-art .con-t { width: 290px; }
.cta-art .ph-t { left: 222px; width: 96px; border-radius: 16px; }
.cta-art .ph-t.solo { left: 110px; width: 120px; }
@media (max-width: 900px) { .post-cta-tile { grid-template-columns: 1fr; } }
/* closing CTA: fill the box */
.post-cta-tile { grid-template-columns: 420px minmax(0,1fr); min-height: 300px; padding: 28px 36px 28px 28px; }
.cta-art { height: 260px; }
.cta-art .con-t { width: 360px; }
.cta-art .ph-t { left: 276px; width: 118px; border-radius: 18px; transform: translateY(-44%); }
.cta-art .ph-t.solo { left: 140px; width: 128px; border-radius: 20px; transform: translateY(-50%); }
@media (max-width: 1000px) { .post-cta-tile { grid-template-columns: 300px minmax(0,1fr); } .cta-art { height: 200px; } .cta-art .con-t { width: 260px; } .cta-art .ph-t { left: 196px; width: 88px; } .cta-art .ph-t.solo { left: 100px; width: 100px; } }
@media (max-width: 900px) { .post-cta-tile { grid-template-columns: 1fr; min-height: 0; } }
.post-cta-tile { min-height: 340px; }
.cta-art { height: 280px; }
.cta-art .ph-t { width: 112px; transform: translateY(-50%); }
.post-cta-tile { align-items: stretch; }
.post-cta-tile .cta-copy { align-self: center; }
.cta-art { height: auto; min-height: 280px; align-self: stretch; }
.post-cta-tile { grid-template-rows: 1fr; min-height: 0; }

/* ---- gym directory pages ---- */
.gp-head { padding: 44px 24px 0; }
.gp-crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.gp-crumbs a { color: var(--ink-2); }
.gp-crumbs a:hover { color: var(--ink); }
.gp-rating { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 15px; color: var(--ink-2); }
.stars { position: relative; display: inline-block; font-size: 16px; letter-spacing: 2px; line-height: 1; color: var(--card-2); }
.stars b { position: absolute; inset: 0; overflow: hidden; color: var(--amber); font-weight: 400; white-space: nowrap; }
.gp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.gp-chips a, .gp-chips span { font-size: 13.5px; font-weight: 600; padding: 8px 15px; border-radius: var(--r-pill); border: 1px solid var(--line); color: var(--ink); background: var(--card); }
html[data-mode="app"] .gp-chips a, html[data-mode="app"] .gp-chips span { background: #0c0c0d; }
.gp-chips a:hover { border-color: var(--ink-2); }
.gp-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,460px); gap: 18px; align-items: stretch; margin-top: 34px; }
.gp-facts { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px 28px; display: flex; flex-direction: column; }
html[data-mode="app"] .gp-facts { background: #0c0c0d; }
.gp-facts .row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; min-width: 0; }
.gp-facts .row:last-of-type { border-bottom: 0; }
.gp-facts .row span, .gp-facts .row a { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gp-facts .row span { color: var(--ink-2); }
.gp-facts .row a { color: var(--ink); }
.gp-facts .row a:hover { color: var(--accent); }
.gp-facts svg { width: 18px; height: 18px; flex: none; fill: none; stroke: var(--ink-3); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.gp-facts .ctas { margin-top: auto; padding-top: 24px; }
.gp-map { position: relative; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); background: var(--card); min-height: 340px; }
.gp-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
html[data-mode="app"] .gp-map iframe { filter: invert(89%) hue-rotate(180deg) saturate(.5) brightness(.93) contrast(.95); }
.gp-map .note { position: absolute; left: 12px; bottom: 12px; z-index: 1; font-size: 12px; padding: 6px 11px; border-radius: var(--r-pill); background: rgba(0,0,0,.72); color: #98989e; pointer-events: none; }
.gcta { min-height: 0; grid-template-rows: 1fr; }
.gcta .in { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 30px; align-items: center; padding: 34px; }
.gcta h3 { margin-bottom: 8px; }
.gcta p { font-size: 15px; }
.gcta .cta-grid { width: 224px; }
.gp-claim-list { display: grid; gap: 10px; margin: 4px 0 8px; padding: 0; }
.gp-claim-list li { list-style: none; display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.gp-claim-list svg { width: 16px; height: 16px; flex: none; margin-top: 2px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.post-card .dist { color: var(--accent); }
@media (max-width: 940px) { .gp-grid { grid-template-columns: 1fr; } .gp-map { min-height: 280px; } }
@media (max-width: 700px) { .gcta .in { grid-template-columns: 1fr; } .gcta .cta-grid { width: 100%; max-width: 260px; } }

/* ---- directory marketplace (search, cards, maps) ---- */
.bigq { width: 100%; max-width: 640px; padding: 18px 24px; font: inherit; font-size: 17px; color: var(--ink); background: var(--card); border: 1px solid var(--line); border-radius: var(--r-pill); }
html[data-mode="app"] .bigq { background: #0c0c0d; }
.bigq:focus { outline: none; border-color: var(--ink-2); }
.dchips { display: flex; flex-wrap: wrap; gap: 8px; }
.dchips button { font: inherit; font-size: 13.5px; font-weight: 600; padding: 9px 16px; border-radius: var(--r-pill); border: 1px solid var(--line); background: var(--card); color: var(--ink); cursor: pointer; transition: border-color .15s; }
html[data-mode="app"] .dchips button { background: #0c0c0d; }
.dchips button:hover { border-color: var(--ink-2); }
.dchips button.on, html[data-mode="app"] .dchips button.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.gcard { display: block; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 20px 22px; transition: transform .15s, border-color .2s; }
html[data-mode="app"] .gcard { background: #0c0c0d; }
.gcard:hover { transform: translateY(-2px); border-color: var(--ink-3); }
.gcard h3 { font-size: 17px; line-height: 1.3; }
.gcard .gc-r { display: flex; gap: 8px; align-items: center; margin-top: 7px; font-size: 13.5px; color: var(--ink-2); }
.gcard .gc-r b { color: var(--ink); }
.gcard .gc-m { font-size: 13.5px; color: var(--ink-2); margin-top: 7px; }
.gcard .gc-l { font-size: 13px; color: var(--ink-3); margin-top: 3px; }
.rgrid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; align-content: start; }
.rhead { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 4px 0 16px; }
.rhead select { font: inherit; font-size: 14px; font-weight: 600; color: var(--ink); background: var(--card); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 9px 14px; cursor: pointer; }
html[data-mode="app"] .rhead select { background: #0c0c0d; }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,44%); gap: 18px; align-items: start; }
.split .maps { position: sticky; top: 84px; height: calc(100vh - 110px); min-height: 420px; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); background: #e8eaec; }
#maptoggle { display: none; }
.mt-pin { width: 18px; height: 18px; border-radius: 50%; background: #30d158; border: 2.5px solid #fff; box-shadow: 0 3px 10px rgba(0,0,0,.35); }
.mt-pop a { color: #111214; } .mt-pop b { display: block; font-size: 14px; } .mt-pop span { font-size: 12.5px; color: #6b7078; }
.maplibregl-popup-content { border-radius: 12px; padding: 12px 14px; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.browse-cities { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.browse-cities a { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 18px 20px; }
html[data-mode="app"] .browse-cities a { background: #0c0c0d; }
.browse-cities a:hover { border-color: var(--ink-3); }
.browse-cities h3 { font-size: 15.5px; }
.browse-cities p { font-size: 13px; color: var(--ink-3); margin-top: 3px; }
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .split .maps { display: none; }
  body.showmap .split .maps { display: block; position: fixed; inset: 62px 0 0; z-index: 40; height: auto; min-height: 0; border-radius: 0; border: 0; }
  #maptoggle { display: inline-flex; position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 41; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
  .rgrid, .browse-cities { grid-template-columns: 1fr; }
}
@media (min-width: 700px) and (max-width: 960px) { .rgrid, .browse-cities { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* ---- gym detail: airbnb skeleton ---- */
.gp-heromap { position: relative; height: min(44vh, 400px); border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); background: #e8eaec; margin-top: 20px; }
.gp-heromap .note { position: absolute; left: 12px; bottom: 12px; z-index: 5; font-size: 12px; padding: 6px 11px; border-radius: var(--r-pill); background: rgba(0,0,0,.72); color: #d3d3d8; pointer-events: none; }
.gp-cols { display: grid; grid-template-columns: minmax(0,1fr) 384px; gap: 28px; margin-top: 30px; align-items: start; }
.gp-rail { position: sticky; top: 84px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px; display: grid; gap: 14px; }
html[data-mode="app"] .gp-rail { background: #0c0c0d; }
.gp-rail h3 { font-size: 19px; }
.gp-rail .sep3 { height: 1px; background: var(--line); margin: 8px 0; }
.gp-rail .cta-grid { width: 100%; }
.gp-about { margin-top: 30px; font-size: 15.5px; line-height: 1.65; color: var(--ink-2); max-width: 640px; }
.gp-about b { color: var(--ink); }
.gp-sec { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 26px; }
.gp-sec > .eyebrow { margin-bottom: 14px; }
.gp-facts2 { display: grid; gap: 0; }
.gp-facts2 .row { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; min-width: 0; }
.gp-facts2 .row:last-child { border-bottom: 0; }
.gp-facts2 .row span, .gp-facts2 .row a { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gp-facts2 .row span.hrs { white-space: normal; overflow: visible; }
.gp-facts2 .row span { color: var(--ink-2); }
.gp-facts2 .row a { color: var(--ink); }
.gp-facts2 .row a:hover { color: var(--accent); }
.gp-facts2 svg { width: 18px; height: 18px; flex: none; fill: none; stroke: var(--ink-3); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.gp-facts2 .row-links { flex-wrap: wrap; gap: 8px 24px; }
.gp-facts2 .row-links a { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.gp-facts2 .row-links svg { width: 16px; height: 16px; }
@media (max-width: 960px) { .gp-cols { grid-template-columns: 1fr; } .gp-rail { position: static; } .gp-heromap { height: 300px; } }

/* ---- what/where search bar ---- */
.qbar { display: flex; align-items: center; gap: 0; margin-top: 28px; max-width: 720px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 8px 8px 8px 26px; }
html[data-mode="app"] .qbar { background: #0c0c0d; }
.qbar:focus-within { border-color: var(--ink-2); }
.qbar .qf { flex: 1; min-width: 0; display: grid; gap: 1px; padding: 6px 0; }
.qbar .qf label { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.qbar .qf input { border: 0; background: none; font: inherit; font-size: 15.5px; color: var(--ink); padding: 0; width: 100%; }
.qbar .qf input:focus { outline: none; }
.qbar .qf input::-webkit-search-cancel-button { -webkit-appearance: none; }
.qbar .qsep { width: 1px; align-self: stretch; margin: 8px 20px; background: var(--line); }
.qbar .btn { flex: none; gap: 8px; }
@media (max-width: 700px) {
  .qbar { flex-direction: column; align-items: stretch; border-radius: 24px; padding: 16px 20px; gap: 10px; }
  .qbar .qsep { width: auto; height: 1px; margin: 2px 0; }
  .qbar .btn { width: 100%; }
}
.rgrid.cols3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 960px) { .rgrid.cols3 { grid-template-columns: 1fr; } }
@media (min-width: 700px) and (max-width: 960px) { .rgrid.cols3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
#results[hidden] ~ #maptoggle { display: none !important; }

/* ---- gym logos, CTA boxes, ad unit ---- */
.glogo { position: relative; flex: none; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--card-2); color: var(--ink-2); font-weight: 700; letter-spacing: .02em; overflow: hidden; }
.glogo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 20%; background: var(--card-2); }
.gc-top { display: flex; align-items: center; gap: 12px; min-width: 0; }
.gc-top h3 { min-width: 0; }
.gp-title { display: flex; align-items: center; gap: 18px; margin-top: 16px; }
.gp-title .glogo { border-radius: 16px; }
.gp-rail { background: none; border: 0; padding: 0; gap: 14px; }
html[data-mode="app"] .gp-rail { background: none; }
.rail-box { min-height: 0; padding: 24px; display: grid; gap: 12px; grid-template-rows: none; align-content: start; }
.rail-box h3 { font-size: 18px; }
.claim-box { border-color: var(--accent); border-width: 1px; }
.claim-box .eyebrow { color: var(--accent); }
.ad-box { border: 1px dashed var(--line); border-radius: var(--r-card); padding: 24px; display: grid; gap: 10px; align-content: start; background: var(--bg-2); }
.ad-box .eyebrow { font-size: 10.5px; color: var(--ink-3); }
.ad-box h3 { font-size: 17px; }
.ad-box p { font-size: 14px; color: var(--ink-2); }
.ad-box .btn { justify-self: start; }
.cta3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; align-items: stretch; }
.cta3 .rail-box, .cta3 .ad-box { height: 100%; }
.cta3 .ctas { margin-top: auto; }
@media (max-width: 960px) { .cta3 { grid-template-columns: 1fr; } .gp-title { gap: 14px; } .gp-title .glogo { width: 48px !important; height: 48px !important; } }

/* ---- where autocomplete ---- */
.qf-where { position: relative; }
.qsug[hidden] { display: none; }
.qsug { position: absolute; top: calc(100% + 14px); left: -20px; right: -20px; z-index: 60; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 6px; display: grid; box-shadow: 0 24px 60px rgba(0,0,0,.45); max-height: 320px; overflow: auto; }
html[data-mode="app"] .qsug { background: #131315; }
.qsug button { display: grid; gap: 1px; text-align: left; font: inherit; background: none; border: 0; color: var(--ink); padding: 10px 12px; border-radius: 10px; cursor: pointer; }
.qsug button b { font-size: 14.5px; font-weight: 600; }
.qsug button span { font-size: 12.5px; color: var(--ink-3); }
.qsug button:hover, .qsug button.sel { background: var(--card-2); }
@media (max-width: 700px) { .qsug { left: 0; right: 0; } }

/* ---- class schedule + review flag ---- */
.gp-flag { margin-top: 14px; font-size: 14px; color: var(--amber); background: color-mix(in srgb, var(--amber) 10%, transparent); border: 1px solid color-mix(in srgb, var(--amber) 35%, transparent); border-radius: var(--r-tile); padding: 10px 14px; display: inline-block; }
.gp-flag a { color: inherit; text-decoration: underline; }
.gp-cols > div:first-child { min-width: 0; }
.sch-wrap { overflow-x: auto; padding-bottom: 6px; }
.cal { display: grid; grid-template-columns: 46px repeat(var(--cols), minmax(0, 1fr)); gap: 0 6px; }
.cal-day > b, .cal-gutter > b { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); padding-bottom: 10px; }
.cal-gutter { position: sticky; left: 0; z-index: 3; background: var(--bg); }
.cal-gtrack { position: relative; }
.cal-glabel { position: absolute; right: 8px; transform: translateY(-55%); font-size: 11px; font-weight: 600; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.cal-skip { position: absolute; right: 10px; transform: translateY(-60%); font-size: 12px; letter-spacing: 2px; color: var(--ink-3); }
.cal-track { position: relative; border-radius: 10px; }
html[data-mode="app"] .cal-track { background-color: #0a0a0b; }
.cal-line { position: absolute; left: 0; right: 0; height: 1px; background: color-mix(in srgb, var(--line) 70%, transparent); }
.cal-break { position: absolute; left: 0; right: 0; background: repeating-linear-gradient(to bottom, transparent 0 3px, color-mix(in srgb, var(--line) 45%, transparent) 3px 4px); }
.cal-ev { position: absolute; overflow: hidden; background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 7px; padding: 4px 7px; display: grid; gap: 1px; align-content: start; transition: box-shadow .12s; }
html[data-mode="app"] .cal-ev { background: #101012; }
.cal-ev span { font-size: 11px; line-height: 1.25; color: var(--ink); font-weight: 600; }
.cal-ev i { font-style: normal; font-size: 10px; color: var(--ink-3); font-variant-numeric: tabular-nums; line-height: 1.3; }
.cal-ev.ev-strik { border-left-color: var(--amber); }
.cal-ev.ev-mma { border-left-color: var(--blue); }
.cal-ev.ev-other { border-left-color: var(--ink-3); }
.cal-ev:hover { z-index: 6; left: 1px !important; width: calc(100% - 3px) !important; height: auto !important; min-height: 40px; box-shadow: 0 10px 28px rgba(0,0,0,.45); border-color: var(--ink-2); border-left-width: 3px; }
.cal-legend { display: flex; gap: 14px; margin-top: 14px; }
.cal-legend span { font-size: 12px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 7px; }
.cal-legend span::before { content: ''; width: 10px; height: 10px; border-radius: 3px; background: var(--accent); }
.cal-legend .lg-strik::before { background: var(--amber); }
.cal-legend .lg-mma::before { background: var(--blue); }
.cal-legend .lg-other::before { background: var(--ink-3); }
@media (max-width: 940px) { .cal { min-width: 620px; } }
#schedule { scroll-margin-top: 84px; }
.sch-note { margin-top: 10px; font-size: 11.5px; line-height: 1.6; color: var(--ink-3); }
.sch-note a { color: var(--ink-3); text-decoration: underline; text-underline-offset: 2px; }
.sch-note a:hover { color: var(--ink-2); }
.gp-chips .chip-trial { border-color: var(--accent); color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, transparent); }

/* fix: CTA art keeps aspect ratio at every breakpoint (width set per-media, height followed the attribute) */
.cta-art img { height: auto; }
.post-cta .cta-alt { margin-top: 14px; text-align: center; font-size: 14.5px; color: var(--ink-2); }
.post-cta .cta-alt a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.post-cta .cta-alt a:hover { color: var(--accent); }
.prose .cta-box .cta-box-alt { grid-column: 1 / -1; margin: 0; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13.5px; color: #98989e; }
.prose .cta-box .cta-box-alt a { color: #fff; font-weight: 600; }
.prose .cta-box .cta-box-alt a:hover { color: var(--accent); }

/* ---- compare pages (/x-alternative/) ---- */
.cmp-scroll { overflow-x: auto; margin-top: 20px; }
.cmp { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 640px; }
.cmp th, .cmp td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.cmp thead th { font-family: var(--display); font-size: 16px; letter-spacing: -.01em; }
.cmp thead th:nth-child(2) { color: var(--accent); }
.cmp tbody th { font-weight: 600; color: var(--ink-2); width: 220px; }
.cmp tbody td:first-of-type { font-weight: 600; }
.cmp-steps { margin: 18px 0 0; padding-left: 1.3em; max-width: 62ch; font-size: 16px; line-height: 1.55; }
.cmp-steps li + li { margin-top: 10px; }
.bicon { display: inline-block; width: 20px; height: 20px; border-radius: 5px; vertical-align: -4px; }
.cmp thead .bicon { width: 22px; height: 22px; vertical-align: -5px; margin-right: 6px; }
.alt-hero { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,0.85fr); gap: 48px; align-items: center; padding-top: clamp(40px,7vw,84px); }
.alt-heroart { position: relative; min-height: 420px; }
.alt-heroart .ha-console { position: absolute; left: 0; top: 8%; width: 88%; height: auto; border-radius: 14px; box-shadow: 0 24px 64px rgba(17,18,20,.18); border: 1px solid var(--line); }
.alt-heroart .ha-phone { position: absolute; right: -2%; bottom: -4%; width: 34%; height: auto; border-radius: 22px; box-shadow: 0 18px 48px rgba(17,18,20,.28); }
.alt-stats { display: flex; gap: 34px; margin-top: 28px; flex-wrap: wrap; }
.alt-stats b { display: block; font-family: var(--display); font-size: 28px; letter-spacing: -.02em; }
.alt-stats span { font-size: 13.5px; color: var(--ink-2); }
.alt-two { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 40px; align-items: start; margin-top: 20px; }
.alt-shot img { width: 100%; height: auto; border-radius: var(--r-card); border: 1px solid var(--line); }
.alt-shot figcaption { font-size: 13px; color: var(--ink-2); margin-top: 8px; }
.alt-worked { border: 1px solid var(--line); border-radius: var(--r-card); padding: 8px 22px; background: var(--card); }
.alt-worked > div { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.alt-worked > div:last-child { border-bottom: 0; }
.alt-worked .sum b { color: var(--accent); font-size: 18px; }
.alt-feature { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 48px; align-items: center; }
.alt-feature.flip > div { order: 2; }
.alt-feature img { width: 100%; height: auto; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 16px 48px rgba(17,18,20,.10); }
.alt-feature.narrowimg img { width: 62%; justify-self: center; border-radius: 26px; }
.cmp tr.cat th { font-family: var(--display); font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); padding-top: 26px; border-bottom: 2px solid var(--ink); background: none; width: auto; }
@media (max-width: 860px) { .alt-hero, .alt-two, .alt-feature { grid-template-columns: 1fr; } .alt-heroart { min-height: 320px; } .alt-feature.flip > div { order: 0; } .alt-feature.narrowimg img { width: 78%; } }
.alt-hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; flex-wrap: nowrap; }
.alt-stats { max-width: 460px; display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 20px 34px; }
/* compare page refinements */
[data-page="compare"] main h2 { font-size: clamp(24px, 3.1vw, 38px); letter-spacing: -.02em; }
[data-page="compare"] .faq-block h2 { font-size: clamp(24px, 3.1vw, 38px); }
.alt-heroart .ha-console { width: 82%; top: 14%; }
.alt-heroart .ha-phone { width: 30%; right: 2%; bottom: 0; }
.alt-cols2 { columns: 2; column-gap: 44px; margin-top: 18px; max-width: 100%; font-size: 16px; line-height: 1.6; }
.alt-cols2 p { break-inside: avoid; margin-bottom: 14px; }
@media (max-width: 800px) { .alt-cols2 { columns: 1; } }
.alt-shot-wide { margin-top: 28px; }
/* comparison table, carded */
.cmp-scroll { border: 1px solid var(--line); border-radius: var(--r-card); background: var(--card); padding: 6px 26px 14px; }
.cmp { min-width: 720px; }
.cmp thead th { padding-top: 22px; font-size: 17px; }
.cmp thead th:nth-child(2) { color: var(--ink); }
.cmp td:nth-child(2) { background: color-mix(in srgb, var(--accent) 6%, transparent); font-weight: 600; }
.cmp thead th:nth-child(2), .cmp td:nth-child(2) { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.cmp tr.cat th { font-size: 13px; padding-top: 30px; padding-bottom: 8px; border-bottom: 2px solid var(--ink); }
.cmp tbody tr:last-child td, .cmp tbody tr:last-child th { border-bottom: 0; }
.alt-kit { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
.alt-kit-col { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px 26px 18px; }
.alt-kit-col h3 { font-family: var(--display); font-size: 17px; margin: 0 0 14px; }
.alt-kit-col ul { list-style: none; margin: 0; padding: 0; }
.alt-kit-col li { font-size: 14.5px; line-height: 1.5; color: var(--ink-2); padding: 10px 0; border-top: 1px solid var(--line); }
.alt-kit-col li strong { color: var(--ink); }
@media (max-width: 900px) { .alt-kit { grid-template-columns: 1fr; } }
.alt-crawl { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 30px; }
.alt-crawl-big b { font-family: var(--display); font-size: 52px; letter-spacing: -.03em; display: block; line-height: 1; }
.alt-crawl-big span { font-size: 13.5px; color: var(--ink-2); display: block; margin-top: 6px; }
.alt-crawl-meter { height: 10px; border-radius: 100px; background: var(--card-2); margin: 18px 0 22px; overflow: hidden; }
.alt-crawl-meter i { display: block; height: 100%; border-radius: 100px; background: var(--accent, #158a44); }
.alt-crawl-rows div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; }
.alt-crawl-rows b { font-variant-numeric: tabular-nums; white-space: nowrap; }
.alt-crawl-rows span { color: var(--ink-2); text-align: right; }
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hub-card { display: flex; flex-direction: column; gap: 8px; padding: 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); text-decoration: none; color: var(--ink); transition: border-color .15s ease; }
.hub-card:hover { border-color: var(--ink-3, #999); }
.hub-card h3 { font-family: var(--display); font-size: 17px; margin: 0; display: flex; align-items: center; gap: 8px; }
.hub-card p { font-size: 14px; line-height: 1.5; color: var(--ink-2); margin: 0; flex: 1; }
.hub-card .hub-go { font-size: 13.5px; font-weight: 600; }
@media (max-width: 900px) { .hub-grid { grid-template-columns: 1fr; } }
.alt-who { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.alt-who-card { border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px; background: var(--card); }
.alt-who-card h3 { font-family: var(--display); font-size: 17px; margin: 0 0 10px; }
.alt-who-card p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }
@media (max-width: 900px) { .alt-who { grid-template-columns: 1fr; } }

/* legal index (/legal/) */
.legal-index { list-style: none; padding-left: 0; display: grid; gap: 14px; }
.legal-index li + li { margin-top: 0; }
.legal-index a { display: block; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--r-tile); text-decoration: none; }
.legal-index a:hover { border-color: var(--ink); }
.legal-index b { display: block; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -.01em; }
.legal-index .dim { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-2); margin-top: 4px; }
.legal-index span:not(.dim) { display: block; font-size: 15px; line-height: 1.5; color: var(--ink-2); margin-top: 8px; }

/* store badges in the directory rail — they are the call to action, so the
   copy no longer has to say "free on iPhone and Android" */
.rail-store { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-top: 16px; }
.rail-store img { height: 38px; width: auto; display: block; }
.rail-store a { display: block; border-radius: 7px; }
.rail-store a:hover { opacity: .85; }
