/* ============================================================
   SKILL VGT — Texas Industrial Editorial / "Midnight Vault"
   Preserve the deep navy, machined steel, and brass-gold system.
   Photography stays credible, low-key, and commercially grounded.
   ============================================================ */

@font-face { font-family: "Archivo"; font-style: normal; font-weight: 500; font-display: swap; src: url("../assets/fonts/archivo-500.ttf") format("truetype"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 600; font-display: swap; src: url("../assets/fonts/archivo-600.ttf") format("truetype"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 700; font-display: swap; src: url("../assets/fonts/archivo-700.ttf") format("truetype"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 800; font-display: swap; src: url("../assets/fonts/archivo-800.ttf") format("truetype"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 900; font-display: swap; src: url("../assets/fonts/archivo-900.ttf") format("truetype"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 400; font-display: swap; src: url("../assets/fonts/source-sans-3-400.ttf") format("truetype"); }
@font-face { font-family: "Source Sans 3"; font-style: italic; font-weight: 400; font-display: swap; src: url("../assets/fonts/source-sans-3-400-italic.ttf") format("truetype"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 600; font-display: swap; src: url("../assets/fonts/source-sans-3-600.ttf") format("truetype"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 700; font-display: swap; src: url("../assets/fonts/source-sans-3-700.ttf") format("truetype"); }

:root {
  --navy: #0b1220;
  --navy-2: #0e1a2e;
  --navy-3: #0d1526;
  --panel: #101d33;
  --panel-2: #0e1a30;
  --border: rgba(219, 227, 240, 0.14);
  --border-strong: rgba(219, 227, 240, 0.22);
  --steel: #2456b8;
  --steel-light: #4d7ad6;
  --steel-dim: rgba(77, 122, 214, 0.35);
  --gold: #e8b64c;
  --gold-light: #f2ce7d;
  --gold-dim: rgba(232, 182, 76, 0.14);
  --platinum: #dbe3f0;
  --white: #ffffff;
  --muted: #8b96ac;
  --muted-2: #6a7690;
  --radius: 10px;
  --container: 1180px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--platinum);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: "Archivo", "Segoe UI", sans-serif;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

.gold-text { color: var(--gold); }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.vault-rule {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--steel-light) 0%, var(--gold) 55%, transparent 100%);
  opacity: 0.55;
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- vault plate / card system ---------- */
.vault-plate {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 10px),
    linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  background-size: 12px 12px, auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 24px rgba(0, 0, 0, 0.28);
}
.vault-plate.rivets { position: relative; }
.vault-plate.rivets::before,
.vault-plate.rivets::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold) 60%, #a97a1f 100%);
  opacity: 0.55;
  top: 10px;
}
.vault-plate.rivets::before { left: 10px; }
.vault-plate.rivets::after { right: 10px; }

.plaque-numeral {
  font-family: "Archivo", sans-serif;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* ---------- buttons ---------- */
.btn-gold, .btn-steel-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo", sans-serif;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #241703;
  box-shadow: 0 6px 18px rgba(232, 182, 76, 0.25);
}
.btn-gold:hover { transform: translateY(-1px) scale(0.99); box-shadow: 0 8px 22px rgba(232, 182, 76, 0.35); }
.btn-gold:active { transform: scale(0.97); }
.btn-steel-outline {
  background: transparent;
  color: var(--platinum);
  border: 1px solid var(--border-strong);
}
.btn-steel-outline:hover { border-color: var(--steel-light); background: rgba(77, 122, 214, 0.08); }
.btn-steel-outline:active { transform: scale(0.97); }

/* ============================================================ NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 23, 41, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; height: 100%; flex-shrink: 0; gap: 10px; }
.nav-logo .nav-symbol { width: 42px; height: 42px; object-fit: contain; }
.nav-lockup { display: flex; flex-direction: column; line-height: 1; }
.nav-lockup strong { color: var(--white); font: 900 18px/0.95 "Archivo", sans-serif; letter-spacing: 0.12em; }
.nav-lockup small { margin-top: 5px; color: var(--gold); font: 700 9px/1 "Archivo", sans-serif; letter-spacing: 0.15em; text-transform: uppercase; }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links { display: none; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(219, 227, 240, 0.82);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav .btn-gold { font-size: 14px; font-weight: 700; padding: 10px 20px; border-radius: 6px; white-space: nowrap; }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

/* ============================================================ HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 26, 0.99) 0%, rgba(8, 14, 26, 0.94) 32%, rgba(8, 14, 26, 0.48) 60%, rgba(8, 14, 26, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 14, 26, 0.18) 45%, var(--navy) 100%);
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg .gearfield {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.28;
  mix-blend-mode: screen;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 136px;
  padding-bottom: 96px;
}
.hero-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.hero-copy { width: 100%; max-width: 620px; min-width: 0; flex-shrink: 1; }
.hero h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
}
.hero p.lede {
  margin-top: 24px;
  font-size: 19px;
  color: rgba(219, 227, 240, 0.85);
  line-height: 1.6;
  max-width: 520px;
}
.hero-ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-ctas a { font-size: 16px; padding: 14px 28px; border-radius: 6px; font-weight: 700; }
.hero-installation-badge {
  max-width: 250px;
  margin-bottom: 34px;
  padding: 16px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(8, 14, 26, 0.68);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}
.hero-installation-badge span {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-installation-badge strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 15px;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .hero h1 { font-size: 64px; }
}
@media (max-width: 900px) {
  .hero-row { width: 100%; min-width: 0; }
  .hero-copy { max-width: 100%; }
  .hero h1 { overflow-wrap: normal; }
  .hero p.lede { max-width: 100%; }
  .hero-ctas a { min-width: 0; }
  .hero-photo { object-position: 64% center; }
  .hero-bg::after {
    background: linear-gradient(90deg, rgba(8, 14, 26, 0.97) 0%, rgba(8, 14, 26, 0.86) 62%, rgba(8, 14, 26, 0.52) 100%), linear-gradient(180deg, transparent 45%, var(--navy) 100%);
  }
  .hero-installation-badge { display: none; }
}

/* hero terminal bank */
.hero-terminals {
  display: none;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  padding-bottom: 8px;
}
@media (min-width: 1024px) {
  .hero-terminals { display: flex; }
}
.terminal-unit { position: relative; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.55)); }
.terminal-unit.main { width: 190px; z-index: 2; }
.terminal-unit.side { width: 148px; margin-bottom: 22px; opacity: 0.82; }
.terminal-unit.side:first-child { margin-right: -18px; transform: rotate(-4deg); }
.terminal-unit.side:last-child { margin-left: -18px; transform: rotate(4deg); }
.terminal-unit .bezel {
  background: linear-gradient(155deg, #3a4a63 0%, #1a2438 45%, #0c1220 100%);
  border-radius: 16px 16px 8px 8px;
  padding: 8px 8px 0;
  border: 1px solid rgba(219,227,240,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -6px 14px rgba(0,0,0,0.4);
}
.terminal-unit .cam {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7fa0e0, #1c4b9e 70%);
  margin: 0 auto 6px;
}
.terminal-unit .screen {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 3px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(0,0,0,0.6);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}
.terminal-unit .screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.terminal-unit .screen::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 30%);
  pointer-events: none;
}
.terminal-unit .chin {
  height: 30px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.terminal-unit .chin span {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
  opacity: 0.85;
}
.terminal-unit .base {
  width: 56%;
  height: 16px;
  margin: 0 auto;
  background: linear-gradient(180deg, #263248, #0e1524);
  border-radius: 0 0 6px 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

/* hero metrics strip */
.hero-metrics { position: relative; z-index: 3; margin-top: -56px; }
.hero-metrics .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 1024px) {
  .hero-metrics .grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.metric-plate { padding: 20px 22px; }
.metric-plate .v { font-size: 24px; font-weight: 900; white-space: nowrap; }
.metric-plate .l {
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================================ SECTION GENERIC */
section { position: relative; }
.section-pad { padding: 96px 0; }
@media (min-width: 768px) { .section-pad { padding: 128px 0; } }
.section-mark { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.section-mark .gear { flex-shrink: 0; width: 40px; height: 40px; }
.section-mark .mark-body { flex: 1; }
.section-mark .mark-body .vault-rule { margin-top: 8px; }

.bg-alt { background: #0c1425; }
.bg-texture {
  background:
    radial-gradient(ellipse 70% 60% at 15% 10%, rgba(36, 86, 184, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 90%, rgba(232, 182, 76, 0.05), transparent 60%),
    var(--navy-3);
}

/* Premium image-panel system: real photography with controlled contrast. */
.art-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 6px;
}
.art-panel .art-inner {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 220px;
  background:
    radial-gradient(circle at 30% 20%, rgba(77, 122, 214, 0.35), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(232, 182, 76, 0.16), transparent 50%),
    linear-gradient(160deg, #142544 0%, #0a1220 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-panel .art-inner .gear-watermark { width: 46%; max-width: 190px; opacity: 0.22; }
.art-panel .art-inner.photo { background: #05070c; }
.art-panel .art-inner.photo img { width: 100%; height: 100%; object-fit: cover; }
.location-context .location-photo { object-position: center; }
.location-context .terminal-inset {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 43%;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  border: 1px solid rgba(232,182,76,0.58);
  border-radius: 5px;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(0,0,0,0.48), inset 0 0 0 3px rgba(8,14,26,0.72);
}
.location-context .terminal-inset img { width: 100%; height: 100%; object-fit: cover; }
.art-panel .art-inner.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,16,28,0.15) 0%, rgba(10,16,28,0.55) 100%),
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 40%, rgba(6,10,18,0.65) 100%);
  pointer-events: none;
}
.art-panel .art-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(219, 227, 240, 0.55);
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
}

/* ============================================================ WHY */
.why-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 5fr 7fr; align-items: start; }
  .why-grid .why-left { position: sticky; top: 128px; }
}
.why-left h2 { font-size: 36px; font-weight: 900; line-height: 1.08; margin-top: 4px; }
.why-left p { margin-top: 18px; font-size: 18px; color: rgba(219,227,240,0.8); line-height: 1.6; }
.why-left .art-panel { margin-top: 30px; }
.why-left .art-inner { height: 240px; }

.benefit-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
.benefit-card { padding: 24px; border-left-color: rgba(77,122,214,0.55); transition: transform 0.3s var(--ease), border-color 0.3s var(--ease); }
.benefit-card:hover { transform: translateY(-4px); }
.benefit-card:nth-child(3n + 1) { border-top-color: rgba(232,182,76,0.48); }
.benefit-card:hover { border-left-color: var(--gold); }
.benefit-card .icon { width: 30px; height: 30px; color: var(--steel-light); }
.benefit-card h3 { margin-top: 14px; font-size: 18px; font-weight: 700; }
.benefit-card p { margin-top: 8px; font-size: 14px; color: rgba(219,227,240,0.72); line-height: 1.55; }
@media (min-width: 640px) {
  .benefit-card.offset { transform: translateY(24px); }
  .benefit-card.offset:hover { transform: translateY(20px); }
}

/* ============================================================ HOW */
.how-head { max-width: 560px; }
.how-head h2 { font-size: 36px; font-weight: 900; margin-top: 4px; line-height: 1.08; }
.steps-wrap { position: relative; margin-top: 56px; }
.steps-grid { display: grid; gap: 16px; position: relative; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card { padding: 28px; position: relative; border-top: 2px solid rgba(232,182,76,0.48); border-radius: 4px 4px var(--radius) var(--radius); }
@media (min-width: 1024px) {
  .step-card.up { transform: translateY(-16px); }
  .step-card.down { transform: translateY(16px); }
}
.step-card .n { font-size: 44px; font-weight: 900; opacity: 0.8; }
.step-card .icon { position: absolute; top: 28px; right: 28px; width: 26px; height: 26px; color: var(--gold); }
.step-card h3 { margin-top: 22px; font-size: 19px; font-weight: 700; }
.step-card p { margin-top: 10px; font-size: 14px; color: rgba(219,227,240,0.72); line-height: 1.55; }

/* ============================================================ FRESH GAMES */
.fresh-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .fresh-grid { grid-template-columns: 5fr 7fr; align-items: start; } }
.fresh-left h2 { font-size: 36px; font-weight: 900; margin-top: 4px; line-height: 1.08; }
.fresh-left p { margin-top: 18px; font-size: 18px; color: rgba(219,227,240,0.8); line-height: 1.6; max-width: 460px; }
.fresh-callout { margin-top: 30px; padding: 22px; max-width: 460px; font-size: 14px; line-height: 1.6; color: rgba(219,227,240,0.85); }
.fresh-list { display: grid; gap: 16px; }
.fresh-item { padding: 26px; display: flex; align-items: flex-start; gap: 18px; }
.fresh-item .icon-box { flex-shrink: 0; width: 48px; height: 48px; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.fresh-item .icon-box .icon { width: 24px; height: 24px; color: var(--gold); }
.fresh-item h3 { font-size: 19px; font-weight: 700; }
.fresh-item p { margin-top: 8px; font-size: 14px; color: rgba(219,227,240,0.72); line-height: 1.55; }
@media (min-width: 1024px) {
  .fresh-item.shift-1 { transform: translateX(24px); }
  .fresh-item.shift-2 { transform: translateX(48px); }
}

/* Actual Cache of Games screens presented as installed terminal displays. */
.games-showcase { min-width: 0; }
.games-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-items: start; }
@media (min-width: 1180px) { .games-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; } }
.machine-preview { margin: 0; min-width: 0; }
.machine-bezel {
  position: relative;
  padding: 9px 8px 0;
  border: 1px solid rgba(219,227,240,0.2);
  border-radius: 14px 14px 7px 7px;
  background: linear-gradient(145deg, #4b586b 0%, #212d40 38%, #090f1b 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), inset 0 -10px 18px rgba(0,0,0,0.46), 0 18px 36px rgba(0,0,0,0.4);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.machine-preview:hover .machine-bezel { transform: translateY(-4px); border-color: rgba(232,182,76,0.55); }
.machine-camera { display: block; width: 5px; height: 5px; margin: 0 auto 6px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #9eb8ea, #214b95 70%); }
.machine-screen { position: relative; overflow: hidden; aspect-ratio: 9 / 16; border: 1px solid #05070b; border-radius: 3px; background: #02040a; box-shadow: 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 26px rgba(36,86,184,0.22); }
.machine-screen::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(140deg, rgba(255,255,255,0.1), transparent 24%, transparent 76%, rgba(0,0,0,0.18)); }
.machine-screen img { width: 100%; height: 100%; object-fit: cover; }
.machine-chin { height: 28px; display: flex; align-items: center; justify-content: center; border-top: 1px solid rgba(255,255,255,0.08); }
.machine-chin span { color: var(--gold); font: 800 9px/1 "Archivo", sans-serif; letter-spacing: 0.16em; }
.machine-preview figcaption { padding: 12px 4px 0; color: rgba(219,227,240,0.7); font: 700 10px/1.35 "Archivo", sans-serif; letter-spacing: 0.08em; text-align: center; text-transform: uppercase; }
.multipack-note { display: flex; gap: 16px; align-items: flex-start; margin-top: 18px; padding: 20px 22px; border-left: 3px solid var(--gold); }
.multipack-note .icon { flex: 0 0 auto; width: 25px; height: 25px; color: var(--gold); }
.multipack-note h3 { font-size: 16px; line-height: 1.25; }
.multipack-note p { margin: 6px 0 0; font-size: 13px; color: rgba(219,227,240,0.72); line-height: 1.5; }

/* ============================================================ KIOSK */
.kiosk-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .kiosk-grid { grid-template-columns: 5fr 7fr; } }
.kiosk-art .art-inner { height: 340px; }
.kiosk-art .note { margin-top: 12px; font-size: 12px; font-style: italic; color: var(--muted-2); }
.kiosk-copy h2 { font-size: 36px; font-weight: 900; margin-top: 4px; line-height: 1.08; }
.kiosk-copy > p { margin-top: 18px; font-size: 18px; color: rgba(219,227,240,0.8); line-height: 1.6; max-width: 560px; }
.kiosk-points { display: grid; gap: 16px; margin-top: 36px; }
@media (min-width: 640px) { .kiosk-points { grid-template-columns: 1fr 1fr; } }
.kiosk-point { padding: 22px; border-top-color: rgba(77,122,214,0.44); }
.kiosk-point:nth-child(even) { border-top-color: rgba(232,182,76,0.34); }
.kiosk-point .icon { width: 26px; height: 26px; color: var(--gold); }
.kiosk-point h3 { margin-top: 14px; font-size: 17px; font-weight: 700; }
.kiosk-point p { margin-top: 8px; font-size: 14px; color: rgba(219,227,240,0.72); line-height: 1.55; }

/* ============================================================ EARNINGS */
.earnings-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .earnings-grid { grid-template-columns: 1fr 1fr; } }
.earnings-copy h2 { font-size: 36px; font-weight: 900; margin-top: 4px; line-height: 1.08; }
.earnings-copy p { margin-top: 18px; font-size: 18px; color: rgba(219,227,240,0.8); line-height: 1.6; max-width: 460px; }
.earnings-table-wrap { border-radius: 12px; overflow: hidden; }
.earnings-table-head {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.earnings-table-head .t { font-family: "Archivo", sans-serif; font-weight: 700; color: var(--white); font-size: 17px; }
.earnings-table-head .s { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; }
table.earnings { width: 100%; border-collapse: collapse; font-size: 14px; }
table.earnings th {
  text-align: right;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  padding: 16px 28px;
}
table.earnings th:first-child { text-align: left; }
table.earnings td { padding: 16px 28px; border-top: 1px solid rgba(219,227,240,0.06); text-align: right; }
table.earnings td:first-child { text-align: left; color: rgba(219,227,240,0.85); }
table.earnings tr.hero-row { background: rgba(232, 182, 76, 0.07); }
table.earnings tr.hero-row td:first-child { font-weight: 700; color: var(--white); }
table.earnings .num { font-family: "Archivo", sans-serif; font-weight: 800; color: var(--white); font-variant-numeric: tabular-nums; }
table.earnings tr.hero-row .num { color: var(--gold); font-size: 17px; }
.earnings-disclaimer { margin-top: 14px; font-size: 12px; color: var(--muted-2); font-style: italic; line-height: 1.6; }
.earnings-art { margin-top: 30px; max-width: 460px; }
.earnings-art .art-inner { height: 220px; }

/* ============================================================ LEGAL */
.legal-section { overflow: hidden; }
.legal-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(36,86,184,0.18), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, #0a1120 100%);
}
.legal-section .container { position: relative; z-index: 2; }
.legal-copy { max-width: 720px; }
.legal-copy h2 { font-size: 36px; font-weight: 900; margin-top: 4px; line-height: 1.08; }
.legal-card { margin-top: 32px; padding: 32px; border-left: 3px solid var(--gold); }
.legal-card .icon { width: 34px; height: 34px; color: var(--gold); }
.legal-card p.body { margin-top: 20px; font-size: 18px; line-height: 1.65; color: rgba(219,227,240,0.92); }
.legal-card p.body strong { color: var(--white); }
.legal-card .vault-rule { margin: 24px 0; }
.legal-card p.stat { font-size: 16px; line-height: 1.65; color: rgba(219,227,240,0.75); }

/* ============================================================ CONTACT */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; } }
.contact-copy h2 { font-size: 36px; font-weight: 900; margin-top: 4px; line-height: 1.08; }
.contact-copy > p { margin-top: 18px; font-size: 18px; color: rgba(219,227,240,0.8); line-height: 1.6; }
.contact-items { margin-top: 40px; display: grid; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item .icon-box { flex-shrink: 0; width: 46px; height: 46px; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.contact-item .icon-box .icon { width: 20px; height: 20px; color: var(--gold); }
.contact-item .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; }
.contact-item .value { font-weight: 600; color: var(--platinum); }
.contact-item .value a:hover { color: var(--gold-light); }
.office-card { margin-top: 8px; overflow: hidden; }
.office-card .art-inner { height: 160px; }
.office-card .art-inner img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; }
.office-card .office-label { padding: 12px 16px; border-top: 1px solid var(--border); }
.office-card .office-label .t { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; }
.office-card .office-label .s { font-size: 14px; color: rgba(219,227,240,0.8); margin-top: 2px; }

form.contact-form { padding: 32px; display: grid; gap: 16px; border-top: 2px solid rgba(232,182,76,0.52); }
.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--platinum);
  font-family: inherit;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--steel-light);
  box-shadow: 0 0 0 3px rgba(77,122,214,0.25);
}
.field textarea { min-height: 110px; resize: vertical; }
.contact-form button {
  width: 100%;
  padding: 16px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
}
.form-note { font-size: 11px; color: var(--muted-2); text-align: center; margin: 0; }

/* toast */
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--panel);
  border: 1px solid var(--border-strong);
  color: var(--platinum);
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 100;
  max-width: 90vw;
  text-align: center;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
#toast.error { border-color: rgba(220,90,90,0.6); }

/* ============================================================ FOOTER */
.site-footer { border-top: 1px solid var(--border); padding: 48px 0; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-top img { height: 64px; width: auto; }
.footer-top .blurb { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 480px; }
.footer-top .blurb .addr { margin-top: 8px; color: rgba(219,227,240,0.8); font-weight: 500; }
.footer-bottom {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  font-size: 12px;
  color: var(--muted-2);
}
@media (min-width: 768px) {
  .footer-top { flex-direction: row; justify-content: space-between; text-align: right; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
