/* vulkan24-casino5.xyz — премиум-лендинг Vulkan 24 / Вулкан 24. Парадигма: центр мониторинга / mission-control console. Палитра «console green-amber» (уголь-нуар + консольный зелёный + янтарь-warning) */

:root {
  --bg: #0a0e12;
  --bg-2: #10161c;
  --bg-3: #161d24;
  --line: #243039;
  --line-2: #33424d;
  --txt: #e2ece4;
  --muted: #8ea094;
  --muted-2: #5f6f66;
  --green: #4ade80;
  --green-d: #2fa85f;
  --amber: #f59e0b;
  --amber-d: #b9770a;
  --r: 12px;
  --r-s: 7px;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Code", "Consolas", "Liberation Mono", monospace;
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  margin: 0;
  font: 16px/1.65 "Reddit Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Arial, sans-serif;
  color: var(--txt);
  background:
    radial-gradient(1000px 560px at 86% -14%, rgba(74, 222, 128, .12) 0%, transparent 60%),
    radial-gradient(820px 560px at -8% 54%, rgba(245, 158, 11, .09) 0%, transparent 58%),
    var(--bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto }
a { color: var(--green); text-decoration: none }
a:hover { text-decoration: underline }

.skip {
  position: absolute; top: -42px; left: 8px;
  padding: 8px 12px; background: var(--green); color: #05130a;
  border-radius: 4px; z-index: 100; font-weight: 700;
}
.skip:focus { top: 8px }

/* ===== STATUS LED ===== */
.led {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  flex: none; vertical-align: middle;
}
.led--g { background: var(--green); box-shadow: 0 0 8px 1px rgba(74, 222, 128, .7) }
.led--a { background: var(--amber); box-shadow: 0 0 8px 1px rgba(245, 158, 11, .7) }

/* ===== TOP DECK (header) ===== */
.deck {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 18, .88);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 50;
}
.mark { display: flex; align-items: center; gap: 11px; color: var(--txt) }
.mark:hover { text-decoration: none }
.mark__svg { width: 32px; height: 32px; flex: none; filter: drop-shadow(0 0 8px rgba(74, 222, 128, .45)) }
.mark__t { font-family: "Sansita", Georgia, serif; font-weight: 800; line-height: 1; letter-spacing: .2px; font-size: 19px }
.mark__sub {
  display: block; font-family: var(--mono); font-size: 9.5px; color: var(--muted);
  letter-spacing: 2px; font-weight: 400; margin-top: 5px; text-transform: uppercase;
}
.deck__nav { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap }
.deck__nav a {
  color: var(--muted); font-size: 14px; padding: 4px 0;
  border-bottom: 1px solid transparent; transition: color .15s, border-color .15s;
}
.deck__nav a:hover { color: var(--green); border-bottom-color: var(--green); text-decoration: none }

/* ===== CTA ===== */
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: var(--r-s);
  font-family: "Reddit Sans", system-ui, sans-serif;
  font-weight: 700; font-size: 14px;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .15s, box-shadow .2s, background .2s;
  cursor: pointer; letter-spacing: .3px;
}
.cta:hover { text-decoration: none; transform: translateY(-1px) }
.cta--s { background: var(--bg-3); color: var(--txt); border-color: var(--line-2) }
.cta--s:hover { background: var(--bg-2); border-color: var(--green) }
.cta--big { padding: 15px 30px; font-size: 15px }
.cta--g {
  background: linear-gradient(120deg, var(--green) 0%, var(--amber) 100%);
  color: #06130b; border: 0;
  box-shadow: 0 12px 30px -12px rgba(74, 222, 128, .6);
  font-weight: 700;
}
.cta--g:hover { box-shadow: 0 16px 40px -10px rgba(245, 158, 11, .7) }
.cta--ghost { background: transparent; color: var(--txt); border-color: var(--line-2) }
.cta--ghost:hover { border-color: var(--green); color: var(--green) }

/* ===== TELEMETRY STRIP (aggregate counter) ===== */
.telemetry {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; padding: 10px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(74, 222, 128, .04), rgba(245, 158, 11, .04));
}
.telemetry__cell {
  display: flex; flex-direction: column; gap: 3px;
  padding: 6px 16px;
  border-right: 1px solid var(--line);
  align-items: flex-start;
}
.telemetry__cell:last-child { border-right: 0 }
.readout {
  font-family: var(--mono); font-weight: 500; font-size: 17px; color: var(--green);
  letter-spacing: .5px;
}
.telemetry__cell:nth-child(3) .readout, .telemetry__cell:nth-child(5) .readout { color: var(--amber) }
.telemetry__lbl { font-size: 10.5px; color: var(--muted); letter-spacing: .8px; text-transform: uppercase }
.telemetry .led { margin-bottom: 1px }

/* ===== HERO ===== */
.hero {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px;
  padding: 52px 22px 36px;
  max-width: 1220px; margin: 0 auto;
  align-items: center;
}
.hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 1px; color: var(--green);
  background: rgba(74, 222, 128, .06);
  border: 1px solid rgba(74, 222, 128, .28);
  padding: 6px 13px; border-radius: 6px;
  margin: 0 0 18px; text-transform: uppercase;
}
h1 {
  font-family: "Sansita", Georgia, serif;
  font-size: clamp(29px, 4.3vw, 47px); line-height: 1.1;
  margin: 0 0 18px; letter-spacing: -.4px; font-weight: 800;
}
.acc { color: var(--green) }
.hero__sub { color: var(--muted); font-size: 16px; margin: 0 0 14px; line-height: 1.7 }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 28px }
.hero__gauge { margin: 0 }
.hero__gauge-svg {
  display: block; width: 100%; height: auto;
  border-radius: var(--r); border: 1px solid var(--line);
  background:
    radial-gradient(360px 260px at 50% 20%, rgba(74, 222, 128, .12), transparent 62%),
    radial-gradient(300px 240px at 78% 88%, rgba(245, 158, 11, .12), transparent 66%),
    linear-gradient(160deg, #0c1218 0%, #12191f 100%);
  box-shadow: 0 24px 64px -24px rgba(74, 222, 128, .35);
}
.hero__gauge figcaption {
  margin-top: 12px; font-family: var(--mono); font-size: 11px; color: var(--muted-2);
  text-align: right; letter-spacing: .3px;
}

/* KPI inline */
.kpi {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 18px 0 0; border-top: 1px solid var(--line);
}
.kpi__item { display: flex; flex-direction: column; gap: 2px }
.kpi__num { font-family: var(--mono); font-size: 27px; font-weight: 600; color: var(--green); letter-spacing: -.5px }
.kpi__lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px }

/* ===== SECTION FRAME ===== */
section {
  max-width: 1220px; margin: 0 auto;
  padding: 58px 22px;
}
.ovr {
  display: inline-block;
  font-family: var(--mono); font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--amber); font-weight: 500; margin: 0 0 10px;
}
h2 {
  font-family: "Sansita", Georgia, serif;
  font-size: clamp(24px, 3.1vw, 35px); line-height: 1.2;
  margin: 0 0 16px; letter-spacing: -.3px; font-weight: 700;
}
h3 {
  font-family: "Sansita", Georgia, serif;
  font-size: clamp(17px, 2vw, 22px); line-height: 1.32;
  margin: 26px 0 10px; color: var(--green); font-weight: 700; letter-spacing: -.2px;
}
p { margin: 0 0 14px; color: var(--txt) }
.lead { color: var(--muted); font-size: 16px; margin-bottom: 24px; max-width: 810px }

/* ===== PANEL BAR (console header on modules) ===== */
.bay__bar, .contest__bar {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-2);
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.4px;
  color: var(--muted); text-transform: uppercase;
}
.bay__code { color: var(--txt) }
.bay__stat { margin-left: auto; color: var(--green) }

/* ===== WELCOME (bay module) ===== */
.bay {
  background:
    radial-gradient(720px 360px at 84% 24%, rgba(74, 222, 128, .06) 0%, transparent 70%),
    rgba(16, 22, 28, .6);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin: 32px 22px; max-width: none;
}
.charges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 22px 0 24px;
}
.charge {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .15s;
}
.charge::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--green), var(--amber));
}
.charge:hover { border-color: var(--green); transform: translateY(-2px) }
.charge__step { font-family: var(--mono); font-size: 11px; color: var(--amber); letter-spacing: 2px; margin-bottom: 8px; text-transform: uppercase }
.charge__pct { font-family: var(--mono); font-size: 30px; font-weight: 600; line-height: 1; color: var(--green); margin-bottom: 8px }
.charge__title { font-weight: 600; font-size: 15px; margin-bottom: 6px }
.charge__sub { font-size: 13px; color: var(--muted); line-height: 1.5 }

/* ===== SEQUENCE (three steps) ===== */
.sequence__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px }
.phase {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  position: relative; overflow: hidden;
}
.phase__num {
  font-family: var(--mono); position: absolute; top: 16px; right: 20px;
  font-size: 44px; font-weight: 700; line-height: 1; color: var(--bg-3);
}
.phase__head {
  font-family: "Sansita", Georgia, serif;
  font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--green);
}
.phase p { color: var(--muted); font-size: 14px; margin: 0 }

/* ===== RACK (slot catalogue) ===== */
.rack {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px; margin: 24px 0;
}
.slot {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .15s, border-color .2s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.slot:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: 0 18px 36px -16px rgba(74, 222, 128, .4) }
.slot__cover {
  width: 100%; aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  font-family: "Sansita", Georgia, serif;
  font-weight: 700; font-size: 22px; color: rgba(226, 236, 228, .97);
  text-align: center; padding: 14px; line-height: 1.16;
  position: relative; overflow: hidden;
}
.slot__cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}
.sc-1 { background: linear-gradient(135deg, #0a2f1c 0%, #4ade80 100%); color: #05130a }
.sc-2 { background: linear-gradient(135deg, #3a2708 0%, #f59e0b 100%); color: #160e02 }
.sc-3 { background: linear-gradient(135deg, #0a2f1c 0%, #55e88c 100%); color: #05130a }
.sc-4 { background: linear-gradient(135deg, #3a2708 0%, #ffb638 100%); color: #160e02 }
.sc-5 { background: linear-gradient(135deg, #10241a 0%, #2fa85f 100%) }
.sc-6 { background: linear-gradient(135deg, #33240a 0%, #f59e0b 100%); color: #160e02 }
.sc-7 { background: linear-gradient(135deg, #0a2f1c 0%, #4ade80 100%); color: #05130a }
.sc-8 { background: linear-gradient(135deg, #10241a 0%, #3ad074 100%); color: #05130a }
.sc-9 { background: linear-gradient(135deg, #3a2708 0%, #f59e0b 100%); color: #160e02 }
.sc-10 { background: linear-gradient(135deg, #33240a 0%, #ffbe4c 100%); color: #160e02 }
.sc-11 { background: linear-gradient(135deg, #10241a 0%, #2fa85f 100%) }
.sc-12 { background: linear-gradient(135deg, #0a2f1c 0%, #4ade80 100%); color: #05130a }

.slot h3 { font-family: "Reddit Sans", sans-serif; font-size: 15px; margin: 12px 14px 4px; color: var(--txt); font-weight: 600 }
.slot p { font-family: var(--mono); font-size: 11.5px; color: var(--muted); margin: 0 14px 12px; line-height: 1.4 }
.slot__btn {
  display: block; padding: 10px; margin: auto 12px 12px;
  background: var(--bg-3); color: var(--txt);
  text-align: center; border-radius: var(--r-s); font-size: 13px; font-weight: 600;
  border: 1px solid var(--line); transition: all .15s;
}
.slot__btn:hover { background: var(--green); border-color: var(--green); color: #05130a; text-decoration: none }

.tags { margin: 22px 0 0 }
.tags__title { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--amber); margin-bottom: 10px; letter-spacing: 1.2px; text-transform: uppercase }
.tags__list { display: flex; flex-wrap: wrap; gap: 8px }
.tags__list span {
  padding: 6px 13px; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: 5px;
  font-size: 12px; color: var(--muted);
}

/* ===== MODES (loyalty / VIP) ===== */
.modes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 14px }
.mode {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  padding: 14px 8px 12px;
  text-align: center;
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.mode__led { width: 10px; height: 10px; border-radius: 50%; background: var(--green-d); box-shadow: 0 0 6px rgba(74,222,128,.5) }
.mode:nth-child(2) .mode__led { background: #6fd88c }
.mode:nth-child(3) .mode__led { background: var(--green) }
.mode:nth-child(4) .mode__led { background: #b8c766 }
.mode:nth-child(5) .mode__led { background: var(--amber) }
.mode:nth-child(6) .mode__led { background: var(--amber); box-shadow: 0 0 10px 2px rgba(245,158,11,.8) }
.mode__name { font-family: "Sansita", Georgia, serif; font-size: 15px; font-weight: 700; color: var(--txt); line-height: 1 }
.mode__cb { font-family: var(--mono); font-size: 11px; color: var(--muted) }
.mode--top { border-color: var(--amber); background: linear-gradient(160deg, var(--bg-2), rgba(245, 158, 11, .12)) }
.mode--top .mode__name { color: var(--amber) }
.mode:first-child .mode__name { color: var(--green) }

.briefs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px }
.brief {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  transition: border-color .2s;
}
.brief:hover { border-color: var(--green) }
.brief__h { font-family: "Sansita", Georgia, serif; font-weight: 700; font-size: 19px; margin-bottom: 10px; color: var(--green) }
.brief p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6 }

/* ===== CONTEST (tournament) ===== */
.contest {
  background:
    radial-gradient(640px 360px at 50% 40%, rgba(245, 158, 11, .08) 0%, transparent 70%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin: 32px 22px; max-width: none;
  text-align: center;
}
.contest__bar { justify-content: center }
.contest__btns { margin: 22px 0 28px }
.contest__kpi { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 22px }
.contest__kpi > div {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.contest__kpi span { font-family: var(--mono); font-size: 24px; font-weight: 600; color: var(--amber); margin-bottom: 4px }
.contest__kpi em { font-size: 14px; font-weight: 600; color: var(--txt); font-style: normal }
.contest__kpi i { font-size: 12px; color: var(--muted); font-style: normal; line-height: 1.4 }

/* ===== LIVE ===== */
.live__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px; margin-top: 22px;
}
.tbl {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden; position: relative;
  transition: transform .15s, border-color .2s, box-shadow .25s;
}
.tbl:hover { transform: translateY(-3px); border-color: var(--amber); box-shadow: 0 18px 36px -16px rgba(245, 158, 11, .4) }
.tbl__cover {
  width: 100%; aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  font-family: "Sansita", Georgia, serif;
  font-weight: 700; font-size: 20px; color: rgba(226, 236, 228, .97);
  padding: 12px; text-align: center; line-height: 1.16;
  position: relative; overflow: hidden;
}
.tc-1 { background: linear-gradient(135deg, #0a2f1c 0%, #4ade80 100%); color: #05130a }
.tc-2 { background: linear-gradient(135deg, #33240a 0%, #f59e0b 100%); color: #160e02 }
.tc-3 { background: linear-gradient(135deg, #10241a 0%, #2fa85f 100%) }
.tc-4 { background: linear-gradient(135deg, #3a2708 0%, #ffb638 100%); color: #160e02 }
.tc-5 { background: linear-gradient(135deg, #0a2f1c 0%, #55e88c 100%); color: #05130a }
.tc-6 { background: linear-gradient(135deg, #33240a 0%, #f59e0b 100%); color: #160e02 }
.tbl__b { padding: 14px 16px 16px; position: relative }
.tbl__t { font-weight: 600; font-size: 16px; margin-bottom: 4px }
.tbl__s { font-family: var(--mono); font-size: 11.5px; color: var(--muted); margin-bottom: 10px }
.tbl__m { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 4px }
.tbl__p { font-size: 12px; color: var(--muted-2) }
.tbl__live {
  position: absolute; top: 12px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(10, 14, 18, .8); color: var(--amber);
  padding: 4px 10px; border-radius: 5px; border: 1px solid var(--line-2);
  font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
}

/* ===== OVERVIEW ===== */
.overview h3 { border-left: 3px solid var(--green); padding-left: 14px; margin-top: 30px }
.overview p { color: var(--txt); line-height: 1.74 }
.badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
}
.bdg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; background: var(--bg-2);
  border: 1px solid var(--line-2); border-radius: 6px;
  font-family: var(--mono); font-size: 12px; color: var(--txt); letter-spacing: .3px;
}

/* ===== LOGS (reviews) ===== */
.logs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px }
.log {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.log__stars { color: var(--amber); font-size: 16px; letter-spacing: 4px }
.log__stars--four .star-off { color: var(--line-2) }
.log__q { font-size: 14px; line-height: 1.62; color: var(--txt); margin: 0 }
.log__meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  border-top: 1px solid var(--line); padding-top: 14px;
}
.log__a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--green), var(--amber));
  border-radius: 50%; color: #06130b; font-weight: 700; font-size: 14px; flex: none;
}

/* ===== CASHIER ===== */
.rails { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin: 22px 0 }
.rail {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  padding: 18px 14px; text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.rail__b { font-family: var(--mono); font-size: 15px; color: var(--txt); font-weight: 600 }
.rail i { font-family: var(--mono); font-size: 10.5px; color: var(--muted); font-style: normal; text-transform: uppercase; letter-spacing: .8px }
.timings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px }
.timings > div {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.timings em { font-family: var(--mono); font-size: 18px; color: var(--green); font-weight: 600; font-style: normal }
.timings span { font-size: 12px; color: var(--muted) }

/* ===== LAUNCH (pre-footer CTA) ===== */
.launch {
  text-align: center; padding: 58px 22px;
  background:
    radial-gradient(620px 320px at 50% 50%, rgba(74, 222, 128, .1) 0%, transparent 70%),
    var(--bg-2);
  border-radius: var(--r);
  margin: 32px 22px; max-width: none;
  border: 1px solid var(--line);
}
.launch h2 { margin-bottom: 10px }
.launch p { color: var(--muted); margin-bottom: 24px }

/* ===== NOTE (author) ===== */
.note {
  background: rgba(16, 22, 28, .55);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: var(--r);
  margin: 32px 22px; max-width: none;
  padding: 36px 30px;
}
.note h2 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 16px }
.note p { color: var(--muted); font-size: 14px; line-height: 1.74; max-width: 920px }

/* ===== FAQ ===== */
.faq h2 { margin-bottom: 22px }
details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  padding: 16px 20px; margin: 0 0 10px;
  transition: border-color .2s;
}
details[open] { border-color: var(--green) }
summary {
  cursor: pointer; font-weight: 600; list-style: none;
  position: relative; padding-right: 32px;
  display: flex; align-items: center; min-height: 24px;
}
summary::-webkit-details-marker { display: none }
summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px;
  border: 1px solid var(--line-2); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--green); font-size: 16px; transition: transform .25s;
}
details[open] summary::after { content: "–"; border-color: var(--green) }
details p { margin: 12px 0 0; color: var(--muted); font-size: 15px; line-height: 1.66 }

/* ===== BASE (footer) ===== */
.base {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  background: rgba(10, 14, 18, .65);
}
.base__top {
  max-width: 1220px; margin: 0 auto;
  padding: 42px 22px 26px;
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 36px;
}
.base__brand { font-size: 14px; color: var(--muted); line-height: 1.66 }
.base__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px }
.base__logo span { display: flex; flex-direction: column; line-height: 1.1 }
.base__name { font-family: "Sansita", Georgia, serif; color: var(--txt); font-size: 17px; font-weight: 700; margin-bottom: 3px }
.base__logo > span > span:last-child, .base__logo span { font-family: var(--mono); font-size: 11px }
.base__legal { font-size: 12px; color: var(--muted-2); margin: 0; line-height: 1.66; font-family: "Reddit Sans", sans-serif }
.base__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px }
.base__col h4 { font-family: "Sansita", Georgia, serif; font-size: 14px; color: var(--amber); font-weight: 700; letter-spacing: .3px; margin: 0 0 12px }
.base__col ul { list-style: none; padding: 0; margin: 0 }
.base__col li { font-size: 13px; color: var(--muted); padding: 4px 0; cursor: default; transition: color .15s }
.base__col li:hover { color: var(--txt) }
.base__bottom {
  border-top: 1px solid var(--line);
  padding: 16px 22px; max-width: 1220px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: var(--muted-2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .charges { grid-template-columns: 1fr }
  .rails { grid-template-columns: repeat(3, 1fr) }
  .contest__kpi { grid-template-columns: repeat(2, 1fr) }
  .logs__grid { grid-template-columns: 1fr }
  .base__top { grid-template-columns: 1fr }
  .telemetry { grid-template-columns: repeat(3, 1fr) }
  .telemetry__cell:nth-child(4), .telemetry__cell:nth-child(5) { border-top: 1px solid var(--line); padding-top: 8px }
  .modes { grid-template-columns: repeat(3, 1fr) }
}
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 24px; padding-top: 32px }
  .hero__gauge { order: -1 }
  .deck__nav { display: none }
  .deck { padding: 11px 14px }
  section { padding: 38px 16px }
  .bay, .contest, .launch, .note { padding: 32px 18px; margin: 22px 14px }
  .sequence__grid { grid-template-columns: 1fr }
  .briefs { grid-template-columns: 1fr }
  .base__top { padding: 30px 16px 22px; gap: 22px }
  .base__cols { grid-template-columns: repeat(2, 1fr); gap: 18px }
  .telemetry { padding: 8px 14px; grid-template-columns: repeat(2, 1fr) }
  .telemetry__cell { padding: 4px 10px }
  .timings { grid-template-columns: 1fr }
  .kpi { grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 480px) {
  .rack { grid-template-columns: repeat(2, 1fr); gap: 10px }
  .live__grid { grid-template-columns: 1fr }
  .slot h3 { font-size: 13px }
  .slot p { font-size: 10.5px }
  .slot__cover { font-size: 16px }
  .hero__btns { flex-direction: column; align-items: stretch }
  .cta--big { width: 100% }
  .rails { grid-template-columns: repeat(2, 1fr) }
  .contest__kpi { grid-template-columns: 1fr }
  .base__cols { grid-template-columns: 1fr }
  .modes { grid-template-columns: repeat(2, 1fr) }
}
