/* ============================================================
   Saylo website — design tokens
   Dark-first (the app itself is dark). Accent = the icon's sky blue.
   ============================================================ */
:root {
  --bg: #0e0f14;
  --bg-2: #14151c;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f5f8;
  --text-2: #b4b8c4;          /* 7.9:1 on --bg */
  --text-3: #8a8f9d;          /* 4.9:1 on --bg */
  --accent: #38bdf8;
  --accent-2: #7dd3fc;
  --accent-ink: #06202d;      /* text on accent, 12:1 */
  --rec: #ff453a;
  --ok: #34d399;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-pill: 999px;
  --s-1: 8px; --s-2: 16px; --s-3: 24px; --s-4: 40px; --s-5: 64px; --s-6: 96px; --s-7: 144px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 220ms;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--border);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; letter-spacing: -0.02em; line-height: 1.12; font-weight: 700; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.75rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.125rem; }
code { font-family: var(--mono); font-size: 0.875em; background: var(--surface-2); padding: 2px 7px; border-radius: 6px; }
kbd {
  font-family: var(--font); font-size: 0.85rem; font-weight: 600;
  padding: 6px 12px; border-radius: 8px;
  background: linear-gradient(180deg, #2a2b34, #1c1d25);
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 3px 0 #0a0b0f;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--accent); color: var(--accent-ink); padding: 8px 12px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 8px; }
.muted { color: var(--text-3); }

.container { width: min(1120px, calc(100% - 2 * var(--s-3))); margin-inline: auto; }
.container.narrow { max-width: 760px; }

/* ---------- Ambient background ---------- */
.ambient { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
  background: radial-gradient(1200px 600px at 70% -10%, rgba(56,189,248,.10), transparent 60%), var(--bg); }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .35; will-change: transform; }
.blob-a { width: 520px; height: 520px; left: -160px; top: 8vh; background: #1d4ed8; animation: drift 26s ease-in-out infinite alternate; }
.blob-b { width: 420px; height: 420px; right: -120px; top: 55vh; background: #0e7490; animation: drift 32s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0,0) } to { transform: translate(60px, 40px) } }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50;
  background: rgba(14,15,20,.72); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; gap: var(--s-3); height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; margin-right: auto; }
.brand img { border-radius: 8px; }
.nav-links { display: flex; gap: var(--s-3); align-items: center; }
.nav-links a { color: var(--text-2); font-weight: 500; font-size: .95rem; padding: 8px 2px; transition: color var(--dur); }
.nav-links a:hover { color: var(--text); }
.nav-github { display: inline-flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform var(--dur) var(--ease-out), opacity var(--dur); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; padding: var(--s-2) var(--s-3) var(--s-3); border-top: 1px solid var(--border); }
.mobile-menu a { padding: 12px 0; font-weight: 500; color: var(--text-2); border-bottom: 1px solid var(--border); }
.mobile-menu:not([hidden]) { display: flex; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer;
  font-weight: 600; border-radius: var(--r-md); border: 1px solid transparent; white-space: nowrap;
  transition: transform var(--dur) var(--ease-out), background var(--dur), border-color var(--dur), box-shadow var(--dur); }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 28px rgba(56,189,248,.25); }
.btn-primary:hover { background: var(--accent-2); box-shadow: 0 10px 34px rgba(56,189,248,.35); transform: translateY(-1px); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-sm { height: 40px; padding: 0 16px; font-size: .9rem; }
.btn-lg { height: 54px; padding: 0 26px; font-size: 1.02rem; }
.btn-block { width: 100%; height: 52px; }
.btn-meta { font-weight: 500; opacity: .7; font-size: .9em; }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--s-5); align-items: center; padding: var(--s-6) 0 var(--s-5); min-height: min(calc(100vh - 64px), 820px); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.hero .eyebrow { padding: 6px 12px; border-radius: var(--r-pill); background: rgba(56,189,248,.1); border: 1px solid rgba(56,189,248,.25); margin-bottom: var(--s-3); }
.grad { background: linear-gradient(92deg, #7dd3fc, #38bdf8 50%, #a5b4fc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-2); max-width: 34rem; margin: var(--s-3) 0 var(--s-4); }
.cta-row { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.cta-note { margin-top: var(--s-2); font-size: .9rem; color: var(--text-3); }

/* Mockup window */
.hero-visual { position: relative; }
.window { position: relative; border-radius: var(--r-lg); background: linear-gradient(180deg, #1b1c24, #15161d);
  box-shadow: var(--shadow-lg); overflow: hidden; aspect-ratio: 16 / 11; }
.window-bar { display: flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px; background: rgba(255,255,255,.04); border-bottom: 1px solid var(--border); }
.window-bar span[class^="dot-"] { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.window-title { margin-left: 8px; font-size: .8rem; color: var(--text-3); }
.window-body { text-align: left; padding: 28px 30px; font-family: var(--mono); font-size: clamp(.9rem, 1.3vw, 1.05rem); line-height: 1.7; }
.typed-line { min-height: 1.7em; }
.caret { display: inline-block; width: 2px; height: 1.1em; background: var(--accent); vertical-align: -0.2em; margin-left: 2px; animation: blink 1s steps(2) infinite; }
@keyframes blink { to { visibility: hidden } }

/* The Saylo pill */
.pill, .mini-pill { display: inline-flex; align-items: center; gap: 12px; height: 46px; padding: 0 20px; border-radius: 23px;
  background: rgba(24,24,30,.94); border: 1px solid rgba(255,255,255,.14); box-shadow: 0 10px 34px rgba(0,0,0,.5); }
.pill { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out); }
.pill.is-hidden { opacity: 0; transform: translateX(-50%) translateY(10px) scale(.96); }
.pill-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--rec); animation: pulse 1.1s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1) } 50% { opacity: .55; transform: scale(.82) } }
.bars { display: flex; align-items: center; gap: 3px; height: 28px; }
.bars span { width: 3.5px; min-height: 4px; height: 4px; border-radius: 2px; background: linear-gradient(180deg, #7dd3fc, #38bdf8); transition: height 110ms ease; }
.pill .bars span, .mini-pill .bars span { animation: bar 900ms ease-in-out infinite; }
/* While actually "recording", run a touch faster and taller so the live phase still reads as different */
.pill.is-live .bars span { animation-name: bar-live; animation-duration: 760ms; }
.bars span:nth-child(odd) { animation-delay: -.3s; } .bars span:nth-child(3n) { animation-delay: -.6s; } .bars span:nth-child(4n) { animation-duration: 1.2s; }
@keyframes bar { 0%,100% { height: 5px } 50% { height: 20px } }
@keyframes bar-live { 0%,100% { height: 5px } 50% { height: 26px } }
.key-hint { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: var(--s-3); color: var(--text-3); font-size: .9rem; }

/* ---------- Trust strip ---------- */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2); padding: var(--s-3); border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
.strip-item { display: flex; align-items: center; gap: 10px; justify-content: center; font-weight: 500; color: var(--text-2); font-size: .95rem; }
.strip-item svg { color: var(--accent); flex-shrink: 0; }

/* ---------- Sections ---------- */
.section { padding: var(--s-7) 0 0; }
.section-head { max-width: 40rem; margin-bottom: var(--s-5); }
.section-head .eyebrow { margin-bottom: var(--s-2); }
.section-head p { color: var(--text-2); font-size: 1.05rem; margin-top: var(--s-2); }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); counter-reset: step; }
.step { position: relative; padding: var(--s-4) var(--s-3) var(--s-3); border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
.step-num { position: absolute; top: 18px; right: 18px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(56,189,248,.12); color: var(--accent); font-weight: 700; font-size: .85rem; }
.step-art { height: 96px; display: grid; place-items: center; margin-bottom: var(--s-3); }
.big-key { font-size: 1.1rem; padding: 12px 22px; border-radius: 12px; }
.mini-text { font-family: var(--mono); font-size: .95rem; color: var(--text-2); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: .95rem; }
.aside { margin-top: var(--s-3); color: var(--text-3); font-size: .95rem; text-align: center; }

/* Feature cards */
.grid.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.card { padding: var(--s-3); border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface);
  transition: border-color var(--dur), background var(--dur), transform var(--dur) var(--ease-out); }
.card:hover { border-color: var(--border-strong); background: var(--surface-2); transform: translateY(-2px); }
.card-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: rgba(56,189,248,.12); color: var(--accent); margin-bottom: var(--s-2); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-2); font-size: .95rem; }

/* Privacy */
.privacy { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); align-items: center; }
.privacy-copy .eyebrow { margin-bottom: var(--s-2); }
.privacy-copy p { color: var(--text-2); margin-top: var(--s-2); font-size: 1.05rem; }
.checks { list-style: none; padding: 0; margin: var(--s-3) 0 0; display: grid; gap: 12px; }
.checks li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); }
.checks svg { margin-top: 4px; }
.checks li > span { flex: 1; min-width: 0; }
.checks svg { color: var(--ok); flex-shrink: 0; }
.compare { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.compare-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: var(--s-2); padding: 14px 18px; border-top: 1px solid var(--border); font-size: .95rem; align-items: center; }
.compare-row:first-child { border-top: 0; }
.compare-row > span:first-child { color: var(--text-2); }
.compare-row > span:nth-child(2) { color: var(--text-3); }
.compare-head { background: rgba(255,255,255,.03); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-3); }
.compare .hl { color: var(--accent-2); font-weight: 600; }

/* Models table */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
.models { width: 100%; border-collapse: collapse; min-width: 640px; }
.models th, .models td { text-align: left; padding: 14px 18px; border-top: 1px solid var(--border); font-size: .95rem; }
.models thead th { border-top: 0; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-3); font-weight: 600; background: rgba(255,255,255,.03); }
.models tbody th { font-weight: 600; }
.models td { color: var(--text-2); }
.models tr.rec { background: rgba(56,189,248,.06); }
.badge { display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: var(--r-pill); font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: rgba(56,189,248,.15); color: var(--accent-2); vertical-align: middle; }
.meter { display: block; width: 120px; height: 6px; border-radius: 3px; background: rgba(255,255,255,.08); position: relative; overflow: hidden; }
.meter::after { content: ""; position: absolute; inset: 0; width: var(--v); background: linear-gradient(90deg, #38bdf8, #a5b4fc); border-radius: 3px; }

/* Download */
.dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.dl-card { padding: var(--s-3); border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); transition: border-color var(--dur), box-shadow var(--dur); }
.dl-card.is-detected { border-color: rgba(56,189,248,.45); box-shadow: 0 0 0 4px rgba(56,189,248,.08), 0 20px 60px rgba(0,0,0,.35); }
.dl-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: var(--s-3); }
.dl-head svg { color: var(--text); flex-shrink: 0; margin-top: 2px; }
.dl-head h3 { font-size: 1.25rem; }
.dl-head p { color: var(--text-3); font-size: .9rem; margin-top: 2px; }
.detected-tag { margin-left: auto; padding: 4px 10px; border-radius: var(--r-pill); font-size: .75rem; font-weight: 700; background: rgba(52,211,153,.14); color: var(--ok); white-space: nowrap; }
.dl-meta { margin-top: 12px; font-size: .85rem; color: var(--text-3); }
.dl-meta a { color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; }
.steps-details { margin-top: var(--s-3); border-top: 1px solid var(--border); padding-top: var(--s-2); }
.steps-details summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 6px 0; }
.steps-details summary::-webkit-details-marker { display: none; }
.steps-details summary::after { content: "+"; font-size: 1.3rem; color: var(--text-3); transition: transform var(--dur); }
.steps-details[open] summary::after { transform: rotate(45deg); }
.steps-details ol { margin: 10px 0 0; padding-left: 20px; color: var(--text-2); font-size: .95rem; display: grid; gap: 8px; }
.fine { margin-top: 12px; font-size: .85rem; color: var(--text-3); }
.dl-foot { margin-top: var(--s-3); text-align: center; color: var(--text-3); font-size: .95rem; }
.dl-foot a { color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface); padding: 0 var(--s-3); }
.faq summary { cursor: pointer; font-weight: 600; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s-2); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--text-3); flex-shrink: 0; transition: transform var(--dur); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--text-2); padding-bottom: 18px; }

/* Final CTA */
.final { text-align: center; padding: var(--s-7) 0 var(--s-6); display: grid; place-items: center; gap: var(--s-2); }
.final img { border-radius: 18px; margin-bottom: var(--s-1); box-shadow: 0 20px 60px rgba(56,189,248,.18); }
.final p { color: var(--text-2); font-size: 1.05rem; margin-bottom: var(--s-2); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: var(--s-4) 0; background: rgba(0,0,0,.25); }
.footer-inner { display: grid; gap: var(--s-2); }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.footer-brand img { border-radius: 6px; }
.footer-links { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.footer-links a { color: var(--text-2); font-size: .95rem; }
.footer-links a:hover { color: var(--text); }
.footer p { font-size: .85rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: var(--s-4); min-height: 0; padding-top: var(--s-5); text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-visual { max-width: 640px; margin-inline: auto; width: 100%; }
  .window { aspect-ratio: 16 / 9; }
  .lead { margin-inline: auto; }
  .cta-row { justify-content: center; }
  .steps, .grid.features { grid-template-columns: 1fr 1fr; }
  .privacy { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav .btn-sm { display: none; }
  .nav-toggle { display: flex; }
  .section { padding-top: var(--s-6); }
  .steps, .grid.features, .dl-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.2fr 1fr 1fr; padding: 12px 14px; font-size: .85rem; }
  .btn-lg { width: 100%; }
  .window-body { padding: 20px; }
}
@media (max-width: 480px) {
  .strip { grid-template-columns: 1fr; }
  .strip-item { justify-content: flex-start; }
  h1 { font-size: 2.4rem; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .blob { animation: none; }
}


/* ============================================================
   Before / after, context split, screenshots
   ============================================================ */
.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; }
.center { text-align: center; }

/* --- What you said → what gets typed --- */
.ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}
.ba-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-3);
  display: flex; flex-direction: column; gap: 10px;
}
.ba-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3);
}
.ba-tag-ok { color: var(--ok); }
.ba-text { font-size: 1.0625rem; line-height: 1.55; }
.ba-before { color: var(--text-3); }
.ba-after { color: var(--text); font-weight: 500; }
.ba-arrow { display: grid; place-items: center; color: var(--accent); }
.ba-col:last-of-type { border-color: color-mix(in srgb, var(--ok) 35%, transparent); background: color-mix(in srgb, var(--ok) 7%, var(--surface)); }

/* --- Context split --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); align-items: center; }
.split-copy .checks { margin-top: var(--s-3); }
.split-copy .checks strong { color: var(--text); font-weight: 600; }
.ctx-list { display: flex; flex-direction: column; gap: var(--s-2); }
.ctx-row {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: var(--s-2) var(--s-3); display: flex; flex-direction: column; gap: 6px;
}
.ctx-app {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
}
.ctx-row code { background: none; padding: 0; color: var(--text-2); font-size: 0.9rem; word-break: break-all; }
.ctx-text { color: var(--text-2); }

/* --- Screenshot gallery --- */
.shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
.shot { margin: 0; }
.shot img {
  width: 100%; height: auto; border-radius: var(--r-md);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  background: #1c1c1f;
}
.shot figcaption { margin-top: 10px; color: var(--text-2); font-size: 0.9375rem; }

.badge-soft { background: var(--surface-2); color: var(--text-2); border-color: var(--border); }
.th-note { font-weight: 400; color: var(--text-3); font-size: 0.8em; text-transform: none; letter-spacing: 0; }
.grid.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--s-3); }
  .grid.three { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); padding: 4px 0; }
}
