/* =========================================================================
   Arras marketing site — brand tokens mirror the app's theme (src/lib/theme).
   Default "red" preset: primary #C62828, secondary #7F1D1D. Dark UI surface,
   red glow, primary→secondary GradientCard exactly as in-app. The interactive
   phone's internals are sized in container-query units (cqw) so the match
   screen keeps the app's exact proportions at any rendered width.
   ========================================================================= */
:root {
  --primary: #C62828;
  --primary-bright: #FF453A;
  --secondary: #7F1D1D;
  --grad: linear-gradient(155deg, #C62828 0%, #C62828 45%, #7F1D1D 115%);

  --bg: #0a0a0c;
  --surface: #141417;
  --surface-2: #1b1b1f;
  --hairline: rgba(255, 255, 255, 0.10);
  --text: #f5f5f7;
  --text-dim: rgba(235, 235, 245, 0.62);
  --text-dim2: rgba(235, 235, 245, 0.34);

  --glass-rim: rgba(255, 255, 255, 0.22);
  --glass-shadow: 0 2px 6px rgba(0, 0, 0, 0.16), inset 0 1px 1px rgba(255, 255, 255, 0.45);
  --on-grad: #ffffff;
  --on-grad-dim: rgba(255, 255, 255, 0.92);

  --r-lg: 16px;
  --r-xl: 24px;

  --kb-card: #17171a;
  --kb-fill: rgba(120, 120, 128, 0.24);
  --kb-sep: rgba(84, 84, 88, 0.5);

  --maxw: 1120px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text); line-height: 1.5;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
h1, h2, h3 { letter-spacing: -1px; }
section { scroll-margin-top: 72px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 600;
  text-decoration: none; cursor: pointer; border-radius: 14px; white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:active { transform: scale(0.97); }
.apple { width: 20px; height: 20px; flex: none; }
.btn-appstore { background: #000; color: #fff; padding: 12px 20px; border: 1px solid rgba(255, 255, 255, 0.16); }
.btn-appstore:hover { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45); }
.btn-sm { padding: 8px 14px; font-size: 14px; border-radius: 12px; }
.btn-sm .apple { width: 16px; height: 16px; }
.badge-text { display: flex; flex-direction: column; line-height: 1.05; font-size: 19px; font-weight: 600; }
.badge-text small { font-size: 11px; font-weight: 500; opacity: 0.85; }
.btn-light { background: #fff; color: #1a1a1a; padding: 13px 22px; }
.btn-light .apple path { fill: #1a1a1a; }
.btn-light:hover { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35); }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 20px;
  justify-content: space-between; padding: 12px clamp(16px, 4vw, 40px);
  background: rgba(10, 10, 12, 0.72); backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--hairline);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand-tile { border-radius: 9px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); }
.brand-tile.sm { border-radius: 7px; }
.brand-name { font-size: 19px; font-weight: 700; letter-spacing: -0.2px; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); }

/* ---------------- Shared bits ---------------- */
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary-bright); }
.grad-text { background: linear-gradient(120deg, #FF5A5F, #C62828 55%, #7F1D1D); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ticks { list-style: none; margin: 20px 0 0; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 28px; font-size: 15px; color: var(--text-dim); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(198, 40, 40, 0.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF5A5F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.ticks li strong { color: var(--text); font-weight: 600; }

/* ---------------- Hero ---------------- */
.hero { position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% -10% auto -10%; height: 760px; z-index: 0;
  background:
    radial-gradient(60% 60% at 74% 12%, rgba(198, 40, 40, 0.55), transparent 70%),
    radial-gradient(50% 50% at 18% 0%, rgba(127, 29, 29, 0.45), transparent 70%);
  filter: blur(10px); pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 6vw, 84px) clamp(16px, 4vw, 40px) clamp(48px, 7vw, 88px);
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(24px, 4vw, 56px); align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 { margin: 14px 0 18px; font-size: clamp(36px, 5.6vw, 62px); line-height: 1.02; font-weight: 800; letter-spacing: -1.6px; }
.lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--text-dim); max-width: 50ch; }
.cta-row { display: flex; gap: 14px; margin: 26px 0 18px; flex-wrap: wrap; }
.trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.trust li { font-size: 12.5px; font-weight: 600; color: var(--text-dim); padding: 5px 11px; border: 1px solid var(--hairline); border-radius: 999px; background: rgba(255, 255, 255, 0.03); }

/* ---------------- Interactive phone ---------------- */
.hero-phone { position: relative; display: flex; flex-direction: column; align-items: center; }

.phone {
  position: relative; width: 340px; max-width: 88vw; aspect-ratio: 340 / 712;
  background: #000; border-radius: 52px; padding: 12px; border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 30px 80px -20px rgba(198, 40, 40, 0.45),
    0 40px 120px -30px rgba(0, 0, 0, 0.9), inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 118px; height: 26px; background: #000; border-radius: 0 0 16px 16px; z-index: 6; }
.screen {
  position: relative; width: 100%; height: 100%; background: #000; border-radius: 42px;
  overflow: hidden; display: flex; flex-direction: column; padding: 2% 2% 3.4%;
  container-type: inline-size;
}

.statusbar { display: flex; align-items: center; justify-content: space-between; padding: 1.8cqw 3.6cqw 1.2cqw; font-size: 4cqw; font-weight: 600; color: #fff; }
.status-right { display: inline-flex; align-items: center; gap: 1.8cqw; }
.status-right svg { fill: #fff; }
.signal { width: 5.2cqw; height: 3.4cqw; }
.wifi { width: 4.9cqw; height: 3.7cqw; }
.battery { position: relative; width: 7.3cqw; height: 3.7cqw; border: 1px solid rgba(255,255,255,0.6); border-radius: 1px; padding: 0.5cqw; }
.battery::after { content: ""; position: absolute; right: -2.4px; top: 30%; width: 2px; height: 40%; background: rgba(255,255,255,0.6); border-radius: 0 1px 1px 0; }
.battery-fill { display: block; width: 100%; height: 100%; background: #fff; border-radius: 0.5px; }

.topbar { display: flex; align-items: center; justify-content: space-between; gap: 2cqw; padding: 1.2cqw 1.2cqw 2.4cqw; }
.tabs { display: flex; align-items: center; gap: 0.5cqw; }
.tab { display: inline-flex; align-items: center; gap: 1.4cqw; font-size: 3.9cqw; font-weight: 600; color: var(--text-dim); padding: 1.8cqw 2.8cqw; border-radius: 999px; white-space: nowrap; }
.tab.active { color: var(--primary-bright); background: var(--kb-fill); }
.tab .ico { width: 4cqw; height: 4cqw; }
.ico { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ico.xs { width: 3.8cqw; height: 3.8cqw; stroke-width: 2.2; }
.overflow { width: 8.4cqw; height: 8.4cqw; border-radius: 999px; background: var(--kb-fill); display: inline-flex; align-items: center; justify-content: center; gap: 0.7cqw; }
.overflow i { width: 0.9cqw; height: 0.9cqw; border-radius: 50%; background: var(--text-dim); }

/* scoreboard — mirrors app: name+dot, big centered score, LEGS/AVERAGE bottom */
.board { display: grid; grid-template-columns: 1fr 1fr; gap: 3.2cqw; padding: 0; }
.sb-col { display: flex; flex-direction: column; }
.grad { background-image: var(--grad); border: 1px solid var(--glass-rim); box-shadow: var(--glass-shadow); }
.sb-card {
  border-radius: 5.6cqw; padding: 4.4cqw 4.2cqw 4cqw; color: var(--on-grad);
  aspect-ratio: 296 / 446; display: flex; flex-direction: column;
  transition: transform .18s cubic-bezier(.2,.7,.3,1);
}
.sb-card.pulse { transform: scale(1.06); }
.sb-head { display: flex; align-items: center; gap: 2cqw; }
.sb-name { flex: 1; font-size: 5.4cqw; font-weight: 600; }
.turn-dot { width: 3.4cqw; height: 3.4cqw; border-radius: 50%; background: #fff; opacity: 0; transition: opacity .2s; }
.sb-card.at-turn .turn-dot { opacity: 1; }
.sb-score { flex: 1; display: flex; align-items: center; justify-content: center; font-size: 21cqw; font-weight: 500; letter-spacing: -0.5cqw; font-variant-numeric: tabular-nums; line-height: 1; }
.sb-card.at-turn .sb-score { font-weight: 700; }
.sb-stats { display: flex; gap: 5.6cqw; }
.stat { display: flex; flex-direction: column; }
.stat-l { font-size: 3.3cqw; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--on-grad-dim); }
.stat-v { font-size: 5.4cqw; font-weight: 700; font-variant-numeric: tabular-nums; }

.subbar { margin-top: 1.6cqw; padding: 2.1cqw 3.6cqw; border-radius: 4cqw; background: rgba(120,120,128,0.16); display: flex; align-items: center; justify-content: space-between; font-size: 4cqw; font-weight: 600; color: var(--text); }
.sub-left, .sub-right { display: inline-flex; align-items: center; gap: 1.4cqw; color: var(--text-dim); }
.sub-right { color: var(--text); }

.inputcard { position: relative; flex: 1; margin-top: 3cqw; min-height: 0; background: var(--kb-card); border-radius: 5.5cqw; overflow: hidden; }
.layer { position: absolute; inset: 0; padding: 3.4cqw; opacity: 0; transform: scale(0.96); pointer-events: none; transition: opacity .26s cubic-bezier(.4,0,.2,1), transform .26s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.layer.active { opacity: 1; transform: scale(1); pointer-events: auto; }

.kb-display { display: flex; align-items: center; min-height: 11cqw; padding: 0 1.2cqw; }
.kb-buffer { flex: 1; text-align: center; font-size: 8cqw; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.kb-clear { font-size: 4.4cqw; font-weight: 700; letter-spacing: 0.5px; color: #fff; padding: 0.6cqw 1.8cqw; cursor: pointer; }
.kb-clear:active { opacity: 0.4; }
.kb-sep { height: 1px; background: var(--kb-sep); margin: 1.2cqw 0; }
.kb-grid { flex: 1; display: flex; flex-direction: column; gap: 2.4cqw; padding-top: 1.2cqw; }
.kb-row { flex: 1; display: flex; gap: 2.4cqw; }
.key {
  flex: 1; border: 0; background: transparent; border-radius: 5cqw; display: flex; align-items: center;
  justify-content: center; gap: 0.9cqw; cursor: pointer; user-select: none; -webkit-user-select: none;
  transition: transform .09s ease, background-color .12s ease; color: #fff;
}
.key:active, .key.pressing { background: var(--kb-fill); transform: scale(0.94); }
.key .kd { font-size: 8cqw; font-weight: 700; font-variant-numeric: tabular-nums; }
.key .kq { font-size: 3.4cqw; font-weight: 600; color: var(--text-dim); transform: translateY(1.5cqw); }
.key.action { flex-direction: column; align-items: center; justify-content: center; gap: 0.5cqw; border-radius: 7cqw; color: #fff; padding: 0; box-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.key.action .ka { font-size: 4.4cqw; font-weight: 700; }
.key.action .ks { font-size: 3.3cqw; font-weight: 500; opacity: 0.85; }
.key.enter { background: var(--primary); }
.key.undo { background: var(--secondary); }
.key.action:active { transform: scale(0.94); }

.splash { position: absolute; border-radius: 50%; background: var(--primary); pointer-events: none; z-index: 3; transform: scale(0); }

.board-layer { align-items: center; justify-content: center; }
.dartboard-wrap { flex: 1; width: 100%; display: flex; align-items: center; justify-content: center; padding: 1.2cqw; }
#dartboard { width: 100%; max-width: 78cqw; aspect-ratio: 1; }
#dartboard svg { width: 100%; height: 100%; display: block; }
.bot-label { font-size: 4cqw; font-weight: 600; color: var(--text-dim); padding: 0.6cqw 0 1.2cqw; }

.seg-flash { opacity: 0; animation: segflash 2.2s ease-out forwards; }
@keyframes segflash { 0% { opacity: 0; } 9% { opacity: 1; } 68% { opacity: 0.85; } 100% { opacity: 0; } }
.dart { opacity: 0; transform: translateY(-22px); animation: dartdrop .34s cubic-bezier(.3,1.4,.5,1) forwards; }
@keyframes dartdrop { to { opacity: 1; transform: translateY(0); } }

.demo-cap { margin-top: 20px; max-width: 340px; text-align: center; font-size: 13.5px; color: var(--text-dim); }
.demo-cap strong { color: var(--text); }

/* ---------------- Device frame (screenshots) ---------------- */
.device {
  position: relative; width: 300px; max-width: 78vw; aspect-ratio: 1320 / 2868;
  background: #000; border-radius: 44px; padding: 9px; border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 70px -24px rgba(0,0,0,0.85), 0 10px 30px -16px rgba(198,40,40,0.4), inset 0 0 0 2px rgba(255,255,255,0.05);
}
.device .shot { width: 100%; height: 100%; object-fit: cover; border-radius: 36px; display: block; }
/* iPad frame: landscape 4:3, slimmer corners, no notch */
.device.ipad { width: 460px; max-width: 88vw; aspect-ratio: 2752 / 2064; border-radius: 26px; padding: 12px; }
.device.ipad .shot { border-radius: 16px; }
.tilt-l { transform: rotate(-3deg); }
.tilt-r { transform: rotate(3deg); }
.device.tilt-l:hover, .device.tilt-r:hover { transform: rotate(0) translateY(-6px); }
.device { transition: transform .35s cubic-bezier(.2,.8,.2,1); }

/* ---------------- Showcase (zig-zag) ---------------- */
.showcase, .band-inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 8vw, 100px) clamp(16px, 4vw, 40px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center;
}
.showcase.reverse .showcase-text { order: 2; }
.showcase-text h2 { font-size: clamp(28px, 3.8vw, 44px); font-weight: 800; margin: 10px 0 16px; line-height: 1.05; }
.showcase-text p { color: var(--text-dim); font-size: clamp(15px, 1.3vw, 17px); }
.showcase-text p strong { color: var(--text); font-weight: 600; }
.hint { margin-top: 18px; font-size: 13.5px; color: var(--primary-bright); font-weight: 600; }
.showcase-media { display: flex; justify-content: center; }

/* dual-device clusters */
.showcase-media.dual { position: relative; min-height: 480px; }
.dual .device { position: absolute; }
.dual .back { z-index: 1; }
.dual .front { z-index: 2; }
.showcase-media.dual .back { transform: translate(-38px, -26px) rotate(-5deg); }
.showcase-media.dual .front { transform: translate(46px, 30px) rotate(4deg); }
.showcase-media.dual .back:hover { transform: translate(-38px, -32px) rotate(-5deg); }
.showcase-media.dual .front:hover { transform: translate(46px, 22px) rotate(4deg); }

/* coach band (tinted) */
.band { position: relative; background: linear-gradient(180deg, rgba(198,40,40,0.06), transparent 60%); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.pullquote { margin: 4px 0 18px; padding: 16px 18px; border-left: 3px solid var(--primary-bright); background: rgba(198,40,40,0.08); border-radius: 0 12px 12px 0; font-size: 16px; font-style: italic; color: var(--text); }

/* ---------------- Together / companion ---------------- */
.together { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 8vw, 100px) clamp(16px, 4vw, 40px); text-align: center; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(28px, 3.8vw, 44px); font-weight: 800; margin-top: 8px; }
.section-sub { max-width: 60ch; margin: 14px auto 0; color: var(--text-dim); font-size: 16px; }
.duo { display: flex; align-items: center; justify-content: center; gap: clamp(8px, 3vw, 40px); flex-wrap: wrap; }
.duo .device { transform: none; }
.duo-main { z-index: 2; }
.duo-mirror { opacity: 0.96; }
.duo-tag { position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--hairline); color: var(--text-dim); white-space: nowrap; }
.link-pulse { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-dim); font-size: 12px; font-weight: 600; }
.link-pulse svg { width: 120px; height: 40px; overflow: visible; }
.link-pulse path { fill: none; stroke: var(--primary); stroke-width: 2; stroke-dasharray: 5 6; opacity: 0.7; animation: dash 1.4s linear infinite; }
.link-pulse circle { fill: var(--primary-bright); }
.link-pulse .p1 { animation: ping 1.6s ease-out infinite; }
.link-pulse .p2 { animation: ping 1.6s ease-out infinite .8s; }
@keyframes dash { to { stroke-dashoffset: -22; } }
@keyframes ping { 0% { r: 3; opacity: 1; } 100% { r: 9; opacity: 0; } }

/* ---------------- Features grid ---------------- */
.features { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 7vw, 80px) clamp(16px, 4vw, 40px); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-xl); padding: 24px 22px; transition: transform .2s ease, border-color .2s ease, background-color .2s ease; }
.feat:hover { transform: translateY(-4px); border-color: rgba(255,90,95,0.35); background: var(--surface-2); }
.feat-ico { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 13px; margin-bottom: 14px; background: rgba(198,40,40,0.16); color: var(--primary-bright); }
.feat-ico svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.feat h3 { font-size: 17px; font-weight: 700; margin-bottom: 7px; }
.feat p { font-size: 14px; color: var(--text-dim); }

/* ---------------- CTA + footer ---------------- */
.cta { max-width: var(--maxw); margin: 0 auto; padding: clamp(20px,4vw,40px) clamp(16px,4vw,40px) clamp(56px,9vw,110px); }
.cta-card { border-radius: 32px; padding: clamp(36px, 6vw, 68px) clamp(24px, 5vw, 40px); text-align: center; color: var(--on-grad); }
.cta-card h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; }
.cta-card p { margin: 12px auto 26px; max-width: 46ch; color: var(--on-grad-dim); font-size: 16px; }

.site-footer { border-top: 1px solid var(--hairline); }
.foot-inner { max-width: var(--maxw); margin: 0 auto; padding: 28px clamp(16px, 4vw, 40px); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 22px; }
.foot-links a { color: var(--text-dim); text-decoration: none; font-size: 14px; font-weight: 500; }
.foot-links a:hover { color: var(--text); }
.copyright { font-size: 13px; color: var(--text-dim2); }

/* ---------------- Legal / sub-pages ---------------- */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(32px, 6vw, 64px) clamp(16px, 4vw, 40px) 24px; }
.legal-hero { border-radius: var(--r-xl); background: var(--grad); color: var(--on-grad); padding: clamp(28px, 5vw, 40px) clamp(24px, 4vw, 36px); margin-bottom: 32px; }
.legal-hero .eyebrow { color: var(--on-grad-dim); }
.legal-hero h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 800; margin: 6px 0 10px; line-height: 1.04; }
.legal-hero .date { font-size: 14px; color: var(--on-grad-dim); }
.legal-glance { list-style: none; display: grid; gap: 12px; margin: 0 0 40px; }
.legal-glance li { position: relative; padding-left: 30px; font-size: 15px; font-weight: 500; color: var(--text); }
.legal-glance li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(198, 40, 40, 0.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF5A5F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.legal section { margin-bottom: 30px; scroll-margin-top: 72px; }
.legal h2 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary-bright); margin-bottom: 10px; }
.legal p, .legal li { font-size: 15px; color: var(--text-dim); }
.legal p + p { margin-top: 10px; }
.legal ul { padding-left: 20px; margin-top: 8px; }
.legal li { margin-top: 6px; }
.legal a { color: var(--primary-bright); text-decoration: none; font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.legal .fine { font-size: 13px; color: var(--text-dim2); margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--hairline); }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) { .nav-links { display: none; } }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { margin: 0 auto; } .lede { margin-inline: auto; } .cta-row, .trust { justify-content: center; }
  .hero-phone { margin-top: 8px; }
  .showcase, .band-inner { grid-template-columns: 1fr; }
  .showcase.reverse .showcase-text { order: 0; }
  .showcase-text { text-align: center; } .ticks { justify-items: start; text-align: left; max-width: 420px; margin-inline: auto; }
  .showcase-media { order: -1; }
  .showcase.reverse .showcase-media { order: -1; }
  .showcase-media.dual { min-height: 560px; }
  .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .grid { grid-template-columns: 1fr; }
  .duo { flex-direction: column; } .link-pulse svg { transform: rotate(90deg); }
  .foot-inner { flex-direction: column; text-align: center; }
  .chip-br { bottom: 96px; }
}
@media (prefers-reduced-motion: reduce) { * { animation-duration: .001ms !important; transition-duration: .001ms !important; } }
