/* ============================================================
   Clutch Alarm — Marketing Site  ·  "Stadium Night"
   Dark near-black canvas · electric orange + lime drama accents
   Bilingual EN / HE (RTL) · football-forward
   ============================================================ */

:root {
  /* ---- Canvas ---- */
  --bg:        #0A0E1A;
  --bg-2:      #06090F;
  --surface:   #121826;
  --surface-2: #161E2E;
  --surface-3: #1B2436;
  --line:      rgba(255,255,255,0.09);
  --line-2:    rgba(255,255,255,0.055);

  /* ---- Ink ---- */
  --text:  #EAF0F7;
  --soft:  #B7C2D4;
  --muted: #7D8AA0;

  /* ---- Electric accents ---- */
  --orange:   #FF5A1F;
  --orange-2: #FF8042;
  --lime:     #C6FF3A;
  --cyan:     #36E0FF;
  --red:      #FF2D55;
  --gold:     #FFC53A;
  --blue:     #4D8CF5;

  /* tints */
  --orange-t: rgba(255,90,31,0.14);
  --lime-t:   rgba(198,255,58,0.13);
  --cyan-t:   rgba(54,224,255,0.13);
  --red-t:    rgba(255,45,85,0.14);
  --gold-t:   rgba(255,197,58,0.14);

  /* ---- Type ---- */
  --f-display: 'Anton', 'Heebo', Impact, sans-serif;
  --f-head:    'Archivo', 'Heebo', system-ui, sans-serif;
  --f-body:    'Archivo', 'Heebo', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;
  --f-he:      'Heebo', 'Archivo', system-ui, sans-serif;

  /* ---- Layout ---- */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --r:   18px;
  --r-sm: 13px;
}

* , *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.1px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}
html[lang="he"] body { font-family: var(--f-he); letter-spacing: 0; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--orange); color: #fff; }

/* ---- Atmospheric background: stadium-night glows + faint pitch lines ---- */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(820px 560px at 82% -6%, rgba(255,90,31,0.18), transparent 60%),
    radial-gradient(680px 520px at 8% 2%, rgba(54,224,255,0.10), transparent 62%),
    radial-gradient(900px 760px at 50% 116%, rgba(198,255,58,0.07), transparent 60%),
    var(--bg);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.45;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 78%);
}

/* ---- Shared ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-weight: 600; font-size: 12px; letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--orange-2);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: currentColor; }
html[lang="he"] .eyebrow { font-family: var(--f-he); font-weight: 800; letter-spacing: 1.5px; }
.eyebrow.lime { color: var(--lime); }
.eyebrow.cyan { color: var(--cyan); }
.eyebrow.gold { color: var(--gold); }
.eyebrow.red  { color: var(--red); }

h1, h2, h3, h4 { color: #fff; font-weight: 800; letter-spacing: -0.02em; line-height: 1.04; }

.display {
  font-family: var(--f-display); font-weight: 400;
  letter-spacing: 0.5px; line-height: 0.94; text-transform: uppercase;
}
html[lang="he"] .display { font-family: var(--f-he); font-weight: 900; letter-spacing: -0.01em; text-transform: none; line-height: 1.0; }

.mono { font-family: var(--f-mono); font-feature-settings: "tnum" 1; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-head); font-weight: 800; font-size: 16px; letter-spacing: 0.2px;
  padding: 15px 26px; border-radius: var(--r-sm);
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .15s cubic-bezier(.4,0,.2,1), box-shadow .2s, background .2s, border-color .2s, color .2s;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #160a04;
  box-shadow: 0 10px 28px -6px rgba(255,90,31,0.55), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -8px rgba(255,90,31,0.7), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: rgba(255,255,255,0.03); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: rgba(198,255,58,0.5); color: #fff; background: rgba(198,255,58,0.05); }
.btn-sm { padding: 11px 18px; font-size: 14px; }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: sticky; top: 0; z-index: 100; transition: background .25s, border-color .25s, backdrop-filter .25s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(8,11,18,0.78); backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%); border-bottom-color: var(--line-2); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,.5); }
.brand span { font-family: var(--f-head); font-weight: 800; font-size: 18px; letter-spacing: .2px; color: #fff; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--soft); font-weight: 600; font-size: 14.5px; transition: color .15s; }
.nav__links a:hover { color: #fff; }
.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; }

/* language toggle */
.lang-toggle { display: inline-flex; padding: 3px; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid var(--line); }
.lang-toggle button {
  font-family: var(--f-mono); font-size: 12px; font-weight: 600; letter-spacing: .5px;
  padding: 6px 12px; border-radius: 999px; color: var(--muted); transition: color .2s, background .2s;
}
html[lang="he"] .lang-toggle button { font-family: var(--f-he); font-weight: 800; }
.lang-toggle button.on { background: var(--orange); color: #160a04; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(40px,7vw,84px) 0 clamp(50px,8vw,96px); }
.hero__grid { display: grid; grid-template-columns: 1.06fr 0.94fr; align-items: center; gap: clamp(28px,5vw,68px); }
.hero h1 { font-size: clamp(46px, 8.4vw, 104px); }
.hero h1 .dim { -webkit-text-stroke: 1.5px rgba(255,255,255,0.55); color: transparent; }
html[lang="he"] .hero h1 .dim { -webkit-text-stroke: 0; color: var(--muted); }
.hero h1 .lime { color: var(--lime); }
.hero__sub { margin-top: 26px; font-size: clamp(17px,1.9vw,21px); color: var(--soft); max-width: 34ch; line-height: 1.55; }
.hero__cta { margin-top: 36px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__note { margin-top: 20px; display: flex; align-items: center; gap: 13px; color: var(--muted); font-size: 13.5px; font-weight: 600; flex-wrap: wrap; }
.hero__note b { color: var(--text); }
.hero__note .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); }

.hero__stage { position: relative; display: flex; justify-content: center; }
.hero__stage .glow { position: absolute; width: 135%; height: 135%; top: -16%; left: -18%; z-index: 0;
  background: radial-gradient(closest-side, rgba(255,90,31,0.34), transparent 70%); filter: blur(8px); pointer-events: none; }

/* drama score chip (floating) */
.drama-chip {
  position: absolute; z-index: 6; display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px 11px 13px; border-radius: 15px;
  background: linear-gradient(135deg, rgba(255,45,85,0.95), rgba(255,90,31,0.95));
  box-shadow: 0 18px 40px -10px rgba(255,45,85,0.6), inset 0 1px 0 rgba(255,255,255,0.3);
  color: #fff;
}
.drama-chip .score { font-family: var(--f-mono); font-weight: 700; font-size: 26px; line-height: 1; }
.drama-chip .lbl { font-family: var(--f-head); font-weight: 800; font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; opacity: .92; }
html[lang="he"] .drama-chip .lbl { font-family: var(--f-he); letter-spacing: .5px; }
.drama-chip--hero { top: 8%; inset-inline-end: -6%; animation: floatA 7s ease-in-out infinite; }

/* floating notification */
.notif {
  position: absolute; z-index: 5; display: flex; align-items: flex-start; gap: 12px;
  width: 290px; max-width: 72vw; padding: 13px 15px;
  background: rgba(13,18,28,0.96); border: 1px solid var(--line);
  border-radius: 17px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 26px 50px -16px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.05);
}
.notif__icon { width: 36px; height: 36px; border-radius: 9px; flex: none; box-shadow: 0 2px 8px rgba(0,0,0,.4); }
.notif__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.notif__app { font-family: var(--f-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
html[lang="he"] .notif__app { font-family: var(--f-he); font-weight: 800; }
.notif__time { font-size: 11px; color: var(--muted); flex: none; }
.notif__title { font-size: 13.5px; font-weight: 700; color: #fff; margin-top: 3px; line-height: 1.32; }
.notif__title .hot { color: var(--orange-2); }
.notif--b { bottom: 9%; inset-inline-start: -9%; animation: floatB 8s ease-in-out infinite; }

@keyframes floatA { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }
@keyframes floatB { 0%,100% { transform: translateY(0);} 50% { transform: translateY(10px);} }

/* ============================================================
   DEVICE FRAME
   ============================================================ */
.device {
  --w: 318px; position: relative; z-index: 1; width: var(--w);
  aspect-ratio: 1179 / 2556;
  background: linear-gradient(150deg, #232a34, #0a0d12 60%);
  border-radius: 14.5% / 6.7%; padding: 2.4%;
  box-shadow: 0 2px 3px rgba(255,255,255,.1) inset, 0 -2px 4px rgba(0,0,0,.6) inset,
    0 44px 90px -26px rgba(0,0,0,.8), 0 18px 44px -20px rgba(255,90,31,0.22);
}
.device__screen { position: relative; width: 100%; height: 100%; border-radius: 11.6% / 5.4%; overflow: hidden; background: #0b0f17; }
.device__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.device__island { position: absolute; top: 2.4%; left: 50%; transform: translateX(-50%); width: 30%; height: 2.4%; min-height: 13px; background: #000; border-radius: 999px; z-index: 3; }
.device__glare { position: absolute; inset: 0; z-index: 2; pointer-events: none; border-radius: inherit; background: linear-gradient(125deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,0) 28%); }
.device.float { animation: float 6.5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-13px);} }

/* ============================================================
   LEAGUE MARQUEE
   ============================================================ */
.marquee { border-block: 1px solid var(--line-2); background: rgba(6,9,15,0.5); overflow: hidden; }
.marquee__row { display: flex; align-items: center; gap: 0; padding: 0; }
.marquee__track { display: flex; align-items: center; gap: 40px; padding: 18px 20px; white-space: nowrap; animation: scroll 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
html[dir="rtl"] .marquee__track { animation-direction: reverse; }
.marquee__item { display: inline-flex; align-items: center; gap: 9px; color: var(--soft); font-weight: 700; font-size: 15px; flex: none; }
.marquee__item svg { width: 17px; height: 17px; color: var(--lime); }
.marquee__item .star { color: var(--orange); }
.marquee__sep { width: 5px; height: 5px; border-radius: 50%; background: var(--line); flex: none; }
@keyframes scroll { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(46px,7vw,80px); }
.section-head h2 { font-size: clamp(34px, 5vw, 60px); margin-top: 18px; }
.section-head p { color: var(--soft); margin-top: 20px; font-size: clamp(16px,1.7vw,19px); }

/* ============================================================
   FEATURE STORIES
   ============================================================ */
.features { padding: clamp(64px,9vw,120px) 0 clamp(16px,3vw,32px); }
.story { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(34px,6vw,92px); padding: clamp(46px,7vw,84px) 0; }
.story + .story { border-top: 1px solid var(--line-2); }
.story__media { position: relative; display: flex; justify-content: center; }
.story__media .glow { position: absolute; width: 120%; height: 92%; top: 5%; left: -10%; z-index: 0; filter: blur(14px); pointer-events: none; }
.story:nth-child(even) .story__text { order: 2; }
.story:nth-child(even) .story__media { order: 1; }
.story__text h3 { font-size: clamp(30px,4vw,48px); margin-top: 16px; }
.story__text p { color: var(--soft); margin-top: 18px; font-size: clamp(16px,1.7vw,19px); line-height: 1.6; max-width: 46ch; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px;
  font-family: var(--f-head); font-size: 13px; font-weight: 700; letter-spacing: .2px;
  background: var(--orange-t); color: var(--orange-2); border: 1px solid rgba(255,90,31,0.28); }
html[lang="he"] .chip { font-family: var(--f-he); font-weight: 700; }
.chip.lime { background: var(--lime-t); color: var(--lime); border-color: rgba(198,255,58,0.3); }
.chip.cyan { background: var(--cyan-t); color: var(--cyan); border-color: rgba(54,224,255,0.3); }
.chip.gold { background: var(--gold-t); color: var(--gold); border-color: rgba(255,197,58,0.32); }
.chip.red  { background: var(--red-t);  color: #ff6b88; border-color: rgba(255,45,85,0.32); }
.chip svg { width: 14px; height: 14px; }
.chip .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(198,255,58,.6); animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(198,255,58,.5);} 70% { box-shadow: 0 0 0 9px rgba(198,255,58,0);} 100% { box-shadow: 0 0 0 0 rgba(198,255,58,0);} }

.feat-list { margin-top: 24px; display: flex; flex-direction: column; gap: 15px; }
.feat-list li { display: flex; gap: 13px; align-items: flex-start; }
.feat-list .ic { width: 30px; height: 30px; border-radius: 9px; flex: none; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line); color: var(--lime); }
.feat-list .ic svg { width: 16px; height: 16px; }
.feat-list b { color: var(--text); font-weight: 700; }
.feat-list span { color: var(--soft); }

/* drama meter inline graphic (used in Drama Engine story) */
.meter { margin-top: 26px; display: flex; flex-direction: column; gap: 9px; max-width: 360px; }
.meter__row { display: flex; align-items: center; gap: 12px; }
.meter__name { font-size: 13px; color: var(--muted); width: 92px; flex: none; }
.meter__bar { position: relative; height: 8px; border-radius: 99px; background: var(--surface-2); flex: 1; overflow: hidden; }
.meter__fill { position: absolute; inset-inline-start: 0; top: 0; height: 100%; border-radius: 99px; }
.meter__val { font-family: var(--f-mono); font-size: 12px; color: var(--soft); width: 30px; text-align: end; flex: none; }

/* ============================================================
   LOUD ALERT — full-bleed band
   ============================================================ */
.loud { padding: clamp(70px,9vw,120px) 0; position: relative; overflow: hidden; }
.loud::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(700px 460px at 78% 50%, rgba(255,45,85,0.14), transparent 65%),
              radial-gradient(620px 460px at 18% 60%, rgba(255,90,31,0.12), transparent 62%); }
.loud__grid { display: grid; grid-template-columns: 0.86fr 1.14fr; align-items: center; gap: clamp(34px,6vw,80px); }
.loud__phone { display: flex; justify-content: center; }
.loud__phone .device { --w: 276px; }
.loud h2 { font-size: clamp(34px,5vw,60px); margin-top: 16px; }
.loud p { color: var(--soft); margin-top: 20px; font-size: clamp(16px,1.8vw,20px); max-width: 46ch; line-height: 1.6; }
.loud__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

/* ============================================================
   BASKETBALL band
   ============================================================ */
.ball { padding: clamp(60px,8vw,110px) 0; }
.ball__card { position: relative; overflow: hidden; padding: clamp(36px,5vw,68px);
  background: linear-gradient(135deg, rgba(255,138,51,0.08), rgba(13,18,28,0.5));
  border: 1px solid var(--line); border-radius: 26px; }
.ball__card::before { content: ""; position: absolute; width: 460px; height: 460px; top: -180px; inset-inline-end: -120px;
  background: radial-gradient(closest-side, rgba(255,90,31,0.22), transparent 70%); pointer-events: none; }
.ball__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px,5vw,56px); align-items: center; }
.ball h2 { font-size: clamp(30px,4.4vw,50px); margin-top: 16px; }
.ball p { color: var(--soft); margin-top: 18px; font-size: 17px; line-height: 1.6; max-width: 44ch; }
.ball__leagues { display: flex; flex-direction: column; gap: 12px; }
.ball__row { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px; background: rgba(8,11,18,0.5); border: 1px solid var(--line); }
.ball__row .bic { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center; background: linear-gradient(160deg, var(--orange), #c43d12); color: #fff; }
.ball__row .bic svg { width: 22px; height: 22px; }
.ball__row h4 { font-size: 16px; color: #fff; }
.ball__row span { font-size: 13px; color: var(--muted); }

/* ============================================================
   LANGUAGE showcase
   ============================================================ */
.lang { padding: clamp(40px,6vw,84px) 0; }
.lang__card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px,5vw,60px); align-items: center;
  padding: clamp(34px,5vw,62px); background: linear-gradient(135deg, rgba(18,24,38,0.92), rgba(8,11,18,0.6)); border: 1px solid var(--line); border-radius: 26px; }
.lang__card::before { content: ""; position: absolute; width: 420px; height: 420px; top: -160px; inset-inline-end: -120px; background: radial-gradient(closest-side, rgba(54,224,255,0.2), transparent 70%); pointer-events: none; }
.lang__text h2 { font-size: clamp(28px,3.8vw,44px); margin-top: 14px; }
.lang__text p { color: var(--soft); margin-top: 16px; font-size: 17px; line-height: 1.6; max-width: 42ch; }
.lang__demo { display: flex; flex-direction: column; gap: 13px; position: relative; z-index: 1; }
.lang__msg { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 19px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }
.lang__msg .flag { font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: 1px; color: var(--muted); flex: none; }
.lang__msg .t { font-weight: 700; color: #fff; font-size: 15.5px; }
.lang__msg.he { direction: rtl; }
.lang__msg.he .t { font-family: var(--f-he); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: clamp(66px,9vw,116px) 0; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: clamp(40px,6vw,62px); }
.step { position: relative; padding: 32px 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); transition: border-color .2s, transform .2s; }
.step:hover { border-color: rgba(198,255,58,0.4); transform: translateY(-3px); }
.step__num { font-family: var(--f-display); font-weight: 400; font-size: 22px; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; color: var(--orange); background: var(--orange-t); border: 1px solid rgba(255,90,31,0.3); }
html[lang="he"] .step__num { font-family: var(--f-mono); }
.step h3 { font-size: 22px; margin-top: 22px; }
.step p { color: var(--soft); margin-top: 12px; font-size: 15.5px; line-height: 1.6; }
.step__line { position: absolute; top: 56px; inset-inline-end: -22px; width: 22px; height: 2px; background: linear-gradient(90deg, var(--line), transparent); }
html[dir="rtl"] .step__line { background: linear-gradient(270deg, var(--line), transparent); }
.step:last-child .step__line { display: none; }

/* ============================================================
   LEAGUES grid
   ============================================================ */
.leagues { padding: clamp(36px,5vw,64px) 0 clamp(66px,9vw,116px); }
.lg-group { margin-top: clamp(34px,5vw,52px); }
.lg-group__label { font-family: var(--f-mono); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
html[lang="he"] .lg-group__label { font-family: var(--f-he); font-weight: 800; }
.lg-group__label::after { content: ""; flex: 1; height: 1px; background: var(--line-2); }
.league-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.league { display: flex; align-items: center; gap: 13px; padding: 18px 18px; border-radius: var(--r-sm); background: var(--surface); border: 1px solid var(--line); transition: border-color .2s, transform .2s, box-shadow .2s; }
.league:hover { border-color: rgba(255,90,31,0.45); transform: translateY(-3px); box-shadow: 0 16px 30px -22px rgba(0,0,0,.8); }
.league__ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--surface-3); border: 1px solid var(--line); font-size: 20px; }
.league h4 { font-size: 15px; font-weight: 700; color: #fff; }
.league span { font-size: 12px; color: var(--muted); }
.league.soon { border-style: dashed; opacity: .65; }

/* ============================================================
   CALENDAR feature
   ============================================================ */
.cal { padding: 0 0 clamp(60px,8vw,110px); }
.cal__card { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,60px); align-items: center; padding: clamp(34px,5vw,60px); border-radius: 26px; background: linear-gradient(135deg, rgba(54,224,255,0.07), rgba(13,18,28,0.5)); border: 1px solid var(--line); position: relative; overflow: hidden; }
.cal__card::before { content: ""; position: absolute; width: 400px; height: 400px; bottom: -180px; inset-inline-start: -100px; background: radial-gradient(closest-side, rgba(54,224,255,0.16), transparent 70%); pointer-events: none; }
.cal__text { position: relative; z-index: 1; }
.cal h2 { font-size: clamp(28px,3.8vw,44px); margin-top: 14px; }
.cal p { color: var(--soft); margin-top: 16px; font-size: 17px; line-height: 1.6; max-width: 42ch; }
.cal__media { position: relative; z-index: 1; display: flex; justify-content: center; }
.cal__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(56px,8vw,96px) 0 clamp(66px,9vw,116px); }
.faq__list { max-width: 840px; margin: clamp(38px,6vw,54px) auto 0; display: flex; flex-direction: column; gap: 13px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .2s; }
.faq__item[open] { border-color: rgba(255,90,31,0.45); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 21px 24px; font-family: var(--f-head); font-weight: 700; font-size: 17.5px; color: #fff; list-style: none; }
html[lang="he"] .faq__q { font-family: var(--f-he); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q .plus { position: relative; width: 19px; height: 19px; flex: none; }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: var(--orange); border-radius: 2px; transition: transform .25s, opacity .25s; }
.faq__q .plus::before { top: 8.5px; left: 0; width: 19px; height: 2px; }
.faq__q .plus::after { left: 8.5px; top: 0; width: 2px; height: 19px; }
.faq__item[open] .plus::after { transform: rotate(90deg); opacity: 0; }
.faq__a { padding: 0 24px 22px; color: var(--soft); font-size: 15.5px; line-height: 1.65; max-width: 72ch; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta { padding: clamp(36px,5vw,70px) 0 clamp(70px,9vw,118px); }
.cta__card { position: relative; overflow: hidden; text-align: center; padding: clamp(50px,8vw,96px) var(--gutter); border-radius: 30px;
  background: radial-gradient(620px 400px at 50% -28%, rgba(255,90,31,0.22), transparent 70%), linear-gradient(150deg, #14101c, #07090f); border: 1px solid var(--line); }
.cta__card .ball-glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; bottom: -210px; left: 50%; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(198,255,58,0.18), transparent 70%); pointer-events: none; }
.cta__card h2 { position: relative; font-size: clamp(36px,5.4vw,68px); }
.cta__card p { position: relative; color: var(--soft); margin: 20px auto 0; font-size: clamp(17px,1.9vw,20px); max-width: 42ch; }
.cta__card .hero__cta { position: relative; justify-content: center; margin-top: 36px; }
.cta__card .hero__note { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line-2); padding: clamp(46px,6vw,68px) 0 38px; background: var(--bg-2); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 38px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p { color: var(--soft); font-size: 14.5px; max-width: 36ch; line-height: 1.6; }
.footer__social { display: flex; gap: 11px; margin-top: 20px; }
.footer__social a { width: 41px; height: 41px; border-radius: 11px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); color: var(--muted); transition: color .2s, border-color .2s, transform .2s; }
.footer__social a:hover { color: #fff; border-color: rgba(255,90,31,0.5); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__col h5 { font-family: var(--f-mono); font-size: 11.5px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
html[lang="he"] .footer__col h5 { font-family: var(--f-he); font-weight: 800; }
.footer__col a { display: block; color: var(--soft); font-size: 14.5px; padding: 6px 0; transition: color .15s; }
.footer__col a:hover { color: var(--lime); }
.footer__bottom { margin-top: clamp(38px,5vw,52px); padding-top: 24px; border-top: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer__bottom p { color: var(--muted); font-size: 13px; }
.footer__langs { display: flex; gap: 9px; }
.footer__langs .tag { padding: 4px 11px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 12px; color: var(--soft); }

/* ============================================================
   REVEAL  (visible by default; animate when JS marks ready)
   ============================================================ */
@keyframes revealIn { from { opacity: 0; transform: translateY(26px);} to { opacity: 1; transform: none;} }
html.reveal-ready .reveal { opacity: 0; }
html.reveal-ready .reveal.in { opacity: 1; animation: revealIn .7s cubic-bezier(.16,1,.3,1) both; }

/* ============================================================
   RTL tweaks
   ============================================================ */
html[dir="rtl"] .eyebrow::before { /* logical, fine */ }
html[dir="rtl"] .hero__sub,
html[dir="rtl"] .story__text p,
html[dir="rtl"] .section-head p { /* keep natural RTL alignment */ }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta, .hero__note { justify-content: center; }
  .hero__stage { margin-top: 24px; }
  .story { grid-template-columns: 1fr; gap: 34px; }
  .story__text { order: 2 !important; text-align: center; }
  .story__media { order: 1 !important; }
  .story__text p, .meter { margin-inline: auto; }
  .chips, .feat-list { align-items: center; justify-content: center; }
  .feat-list { max-width: 440px; margin-inline: auto; }
  .feat-list li { text-align: start; }
  .loud__grid, .ball__inner, .lang__card, .cal__card { grid-template-columns: 1fr; text-align: center; }
  .ball__leagues { max-width: 460px; margin-inline: auto; }
  .ball__row, .lang__msg { text-align: start; }
  .lang__text p, .cal p, .ball p, .loud p { margin-inline: auto; }
  .loud__tags, .cal__chips { justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .step__line { display: none; }
  .league-grid { grid-template-columns: repeat(2,1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; inset-inline: 0; top: 74px; padding: 8px var(--gutter) 16px;
    background: rgba(8,11,18,0.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav__links a { padding: 14px 2px; border-bottom: 1px solid var(--line-2); font-size: 16px; }
  .nav__burger { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line); }
  .nav__burger svg { width: 22px; height: 22px; }
  .hero h1 { font-size: clamp(42px, 13vw, 64px); }
  .notif { width: 232px; padding: 11px 13px; }
  .league-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
  html.reveal-ready .reveal, html.reveal-ready .reveal.in { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   PRESS KIT  (press.html)
   ============================================================ */
.pk-hero { padding: clamp(40px,7vw,80px) 0 clamp(28px,4vw,44px); }
.pk-hero__sub { margin-top: 24px; font-size: clamp(17px,1.9vw,21px); color: var(--soft); max-width: 60ch; line-height: 1.6; }
.pk-section { padding: clamp(40px,6vw,72px) 0; }
.pk-section .section-head { margin-inline: 0; }
.pk-note { margin-top: 18px; color: var(--muted); font-size: 13.5px; }

/* fact sheet */
.factsheet { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.fact { display: flex; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--line-2); background: var(--surface); }
.fact:nth-child(odd) { border-inline-end: 1px solid var(--line-2); }
.fact__k { font-family: var(--f-mono); font-size: 11.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); width: 116px; flex: none; padding-top: 2px; }
html[lang="he"] .fact__k { font-family: var(--f-he); font-weight: 800; letter-spacing: 0; }
.fact__v { font-size: 15px; font-weight: 600; color: var(--text); }
.fact__v a { color: var(--cyan); }
.fact__v a:hover { text-decoration: underline; }

/* descriptions */
.desc-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.desc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; }
.desc__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.desc__tag { font-family: var(--f-mono); font-size: 11.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange-2); }
html[lang="he"] .desc__tag { font-family: var(--f-he); font-weight: 800; letter-spacing: 0; }
.desc p { color: var(--soft); font-size: 15.5px; line-height: 1.7; }
.copy-btn { font-family: var(--f-head); font-size: 12.5px; font-weight: 700; letter-spacing: .3px; color: var(--lime); padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(198,255,58,0.3); background: var(--lime-t); transition: background .15s, color .15s; flex: none; white-space: nowrap; }
html[lang="he"] .copy-btn { font-family: var(--f-he); }
.copy-btn:hover { background: rgba(198,255,58,0.18); }
.copy-btn.copied { color: #160a04; background: var(--lime); border-color: var(--lime); }

/* key features */
.pk-feats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pk-feat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; transition: border-color .2s, transform .2s; }
.pk-feat:hover { border-color: rgba(255,90,31,0.45); transform: translateY(-3px); }
.pk-feat__ic { font-size: 28px; line-height: 1; }
.pk-feat h3 { font-size: 19px; margin-top: 16px; }
.pk-feat p { color: var(--soft); font-size: 14.5px; line-height: 1.6; margin-top: 10px; }

/* founders */
.founders { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 720px; }
.founder { display: flex; align-items: center; gap: 18px; padding: 20px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.founder__photo { position: relative; width: 72px; height: 72px; border-radius: 50%; flex: none; overflow: hidden; background: linear-gradient(160deg, var(--orange), #c43d12); display: grid; place-items: center; }
.founder__mono { font-family: var(--f-display); font-size: 26px; color: #160a04; letter-spacing: 1px; }
.founder__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder__txt h3 { font-size: 19px; }
.founder__txt span { display: block; margin-top: 4px; color: var(--muted); font-size: 13.5px; }

/* press release */
.release { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.release__bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 24px; border-bottom: 1px solid var(--line-2); background: rgba(255,90,31,0.06); }
.release__tag { font-family: var(--f-mono); font-size: 11.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange-2); }
html[lang="he"] .release__tag { font-family: var(--f-he); font-weight: 800; letter-spacing: 0; }
.release__body { padding: 28px clamp(24px,4vw,40px); }
.release__body h3 { font-size: clamp(22px,3vw,30px); line-height: 1.2; }
.release__lede { font-size: 17px; font-weight: 700; color: var(--text); margin-top: 14px; line-height: 1.5; }
.release__body p { color: var(--soft); font-size: 15.5px; line-height: 1.7; margin-top: 16px; }
.release__body p b { color: var(--text); }
.release__about { margin-top: 22px !important; padding-top: 18px; border-top: 1px solid var(--line-2); font-size: 14.5px !important; }

/* quotes */
.quotes { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px 26px; }
.quote__stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; }
.quote p { color: var(--text); font-size: 17px; font-weight: 600; line-height: 1.5; margin-top: 12px; }
.quote cite { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; font-style: normal; font-family: var(--f-mono); letter-spacing: .5px; }
html[lang="he"] .quote cite { font-family: var(--f-he); }

/* brand sheet */
.brand-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 16px; }
.brand-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.brand-card h4 { font-size: 14px; font-family: var(--f-mono); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
html[lang="he"] .brand-card h4 { font-family: var(--f-he); font-weight: 800; letter-spacing: 0; }
.swatches { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.swatch { display: flex; align-items: center; gap: 9px; font-family: var(--f-mono); font-size: 12px; color: var(--soft); }
.swatch i { width: 26px; height: 26px; border-radius: 7px; background: var(--c); border: 1px solid var(--line); flex: none; }
.brand-type { display: flex; flex-direction: column; gap: 14px; }
.brand-type li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line-2); padding-bottom: 12px; }
.brand-type li:last-child { border-bottom: none; padding-bottom: 0; }
.brand-type li span:first-child { color: #fff; }
.brand-type li span:last-child { color: var(--muted); font-size: 12px; font-family: var(--f-mono); }
html[lang="he"] .brand-type li span:last-child { font-family: var(--f-he); }
.brand-logo { display: flex; gap: 18px; align-items: center; }
.brand-logo img { width: 72px; height: 72px; border-radius: 16px; flex: none; box-shadow: 0 6px 18px rgba(0,0,0,.5); }
.brand-logo p { color: var(--soft); font-size: 13.5px; line-height: 1.55; margin-bottom: 12px; }

/* assets gallery */
.asset-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,3vw,32px); margin-top: 36px; }
.asset { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.asset .device { --w: 210px; }
.asset__dl { font-family: var(--f-mono); font-size: 12.5px; font-weight: 600; letter-spacing: .5px; color: var(--cyan); padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(54,224,255,0.3); background: var(--cyan-t); transition: background .15s; }
html[lang="he"] .asset__dl { font-family: var(--f-he); font-weight: 700; }
.asset__dl:hover { background: rgba(54,224,255,0.18); }

/* contact */
.pk-contact { position: relative; overflow: hidden; text-align: center; padding: clamp(44px,7vw,80px) var(--gutter); border-radius: 28px; background: radial-gradient(560px 360px at 50% -28%, rgba(255,90,31,0.18), transparent 70%), linear-gradient(150deg,#14101c,#07090f); border: 1px solid var(--line); }
.pk-contact p { position: relative; color: var(--soft); margin: 18px auto 0; font-size: clamp(16px,1.8vw,19px); max-width: 48ch; }

@media (max-width: 960px) {
  .pk-feats, .quotes, .asset-grid { grid-template-columns: repeat(2,1fr); }
  .brand-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .factsheet { grid-template-columns: 1fr; }
  .fact:nth-child(odd) { border-inline-end: none; }
  .pk-feats, .quotes, .founders, .asset-grid { grid-template-columns: 1fr; }
  .desc__head { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   MOBILE OPTIMIZATION
   ============================================================ */
@media (max-width: 600px) {
  /* decorative hero floats clutter / overflow narrow screens — drop them */
  .hero__stage .drama-chip--hero,
  .hero__stage .notif--b { display: none; }
  .hero__stage .glow,
  .story__media .glow { width: 100%; left: 0; }
  /* device frames always fit the viewport */
  .hero__stage .device,
  .story .device,
  .loud__phone .device,
  .cal__media .device { --w: min(300px, 82vw); }
  .asset .device { --w: min(240px, 64vw); }
  /* a touch more breathing room on the densest sections */
  .pk-section { padding: clamp(34px,8vw,72px) 0; }
}

@media (max-width: 480px) {
  /* compact nav: icon-only download keeps the CTA without crowding */
  .nav__inner { gap: 12px; }
  .nav__right { gap: 8px; }
  .nav__right .btn-primary { font-size: 0; padding: 11px; gap: 0; }
  .nav__right .btn-primary svg { width: 20px; height: 20px; }
  .lang-toggle button { padding: 8px 11px; }
  /* full-width primary CTAs read better on phones */
  .hero__cta .btn, .cta__card .hero__cta .btn { width: 100%; }
  .hero__cta { width: 100%; }
  /* keep big display headlines from getting too tight */
  .pk-hero h1 { font-size: clamp(34px,9vw,56px) !important; }
}

@media (max-width: 360px) {
  .lang-toggle button { padding: 7px 9px; font-size: 11px; }
  .nav__right { gap: 6px; }
}

/* prevent long URLs / nowrap buttons from forcing boxes wider than the screen */
.fact__v { min-width: 0; overflow-wrap: anywhere; }
.fact__v a { word-break: break-word; }
.brand-logo { flex-wrap: wrap; }
.brand-logo > div { min-width: 0; }
@media (max-width: 480px) {
  .fact__k { width: 96px; }
  .brand-logo .btn { white-space: normal; }
  .pk-contact { padding-inline: clamp(18px,5vw,40px); }
  .pk-contact .hero__cta,
  .pk-contact .hero__cta .btn { width: 100%; }
}

@media (max-width: 340px) {
  .brand span { display: none; }  /* keep the icon; reclaim space on tiny screens */
}

/* ============================================================
   LEGAL  (privacy.html)
   ============================================================ */
.legal { padding: clamp(34px,6vw,64px) 0 clamp(60px,8vw,110px); }
.legal__wrap { max-width: 880px; margin: 0 auto; }
.legal__header h1 { font-size: clamp(34px,5vw,58px); margin-top: 16px; }
.legal__dates { display: flex; gap: 10px 24px; flex-wrap: wrap; margin-top: 20px; }
.legal__date { font-family: var(--f-mono); font-size: 12.5px; color: var(--muted); }
html[lang="he"] .legal__date { font-family: var(--f-he); }
.legal__date b { color: var(--soft); font-weight: 600; }
.legal__intro { color: var(--soft); font-size: clamp(16px,1.7vw,18px); line-height: 1.75; margin-top: 22px; }
.legal__intro + .legal__intro { margin-top: 14px; }

.toc { margin: clamp(28px,4vw,40px) 0 8px; padding: 22px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.toc h2 { font-family: var(--f-mono); font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
html[lang="he"] .toc h2 { font-family: var(--f-he); font-weight: 800; letter-spacing: 0; }
.toc ol { list-style: none; counter-reset: toc; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 28px; }
.toc li { counter-increment: toc; }
.toc a { color: var(--soft); font-size: 14.5px; display: inline-flex; gap: 9px; transition: color .15s; }
.toc a::before { content: counter(toc); font-family: var(--f-mono); color: var(--orange-2); font-size: 12.5px; min-width: 18px; }
.toc a:hover { color: var(--lime); }

.legal section { margin-top: clamp(32px,5vw,46px); scroll-margin-top: 92px; }
.legal h2 { font-size: clamp(20px,2.6vw,27px); padding-bottom: 13px; border-bottom: 1px solid var(--line-2); display: flex; gap: 11px; }
.legal h2 .n { font-family: var(--f-mono); font-weight: 600; color: var(--orange-2); font-size: 0.8em; }
.legal h3 { font-size: 16.5px; margin-top: 22px; color: #fff; }
.legal p { color: var(--soft); font-size: 15.5px; line-height: 1.75; margin-top: 14px; }
.legal ul { margin-top: 14px; padding-inline-start: 22px; display: flex; flex-direction: column; gap: 9px; }
.legal li { color: var(--soft); font-size: 15.5px; line-height: 1.65; list-style: disc; }
.legal li::marker { color: var(--orange); }
.legal strong, .legal b { color: var(--text); font-weight: 700; }
.legal a.inline { color: var(--cyan); word-break: break-word; }
.legal a.inline:hover { text-decoration: underline; }

.legal__tablewrap { overflow-x: auto; margin-top: 18px; border: 1px solid var(--line); border-radius: var(--r); }
.legal table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 460px; }
.legal th, .legal td { text-align: start; padding: 12px 15px; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.legal thead th { font-family: var(--f-mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); background: rgba(255,255,255,0.02); }
html[lang="he"] .legal thead th { font-family: var(--f-he); font-weight: 800; letter-spacing: 0; }
.legal tbody td { color: var(--soft); }
.legal tbody td:first-child { color: var(--text); font-weight: 600; }
.legal tbody tr:last-child td { border-bottom: none; }

.legal__contact { margin-top: clamp(34px,5vw,48px); padding: clamp(24px,4vw,34px); background: linear-gradient(135deg, rgba(54,224,255,0.06), rgba(18,24,38,0.6)); border: 1px solid var(--line); border-radius: var(--r); }
.legal__contact h2 { border: none; padding: 0; }
.legal__contact a { color: var(--cyan); }

@media (max-width: 600px) {
  .toc ol { grid-template-columns: 1fr; }
  .legal th, .legal td { padding: 10px 11px; font-size: 13.5px; }
}
