:root {
  --bg: #08130d;
  --bg-2: #0c1c14;
  --bg-3: #0f261a;
  --panel: #102a1c;
  --panel-2: #143524;
  --line: rgba(43, 217, 107, 0.14);
  --line-strong: rgba(43, 217, 107, 0.32);
  --led: #2bd96b;
  --led-bright: #6dffae;
  --led-dim: #1a7e3f;
  --led-glow: rgba(43, 217, 107, 0.55);
  --cream: #f3efe4;
  --ink: #e7f2ea;
  --ink-soft: #93b29f;
  --ink-faint: #5d7f6a;
  --amber: #ffb300;
  --radius: 14px;
  --container: 1180px;
  --shadow-glow: 0 0 28px rgba(43, 217, 107, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle LED dot-matrix background overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(43, 217, 107, 0.05) 1px, transparent 1.5px);
  background-size: 22px 22px;
  z-index: 0;
  opacity: 0.7;
}

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

a { color: var(--led); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--led-bright); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 19, 13, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
}
.brand img {
  height: 32px;
  width: auto;
  display: block;
}
.brand-suffix {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1;
}
.primary-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.primary-nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
}
.primary-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--led);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.primary-nav a:not(.nav-cta):hover { color: var(--led-bright); }
.primary-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.primary-nav a.nav-cta {
  background: var(--led);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 0 var(--led-glow);
  transition: box-shadow 0.2s ease, transform 0.08s ease, background 0.15s ease;
}
.primary-nav a.nav-cta::after { display: none; }
.primary-nav a.nav-cta:hover {
  background: var(--led-bright);
  color: var(--bg);
  box-shadow: 0 0 24px var(--led-glow);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--led);
  margin: 5px 0;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(closest-side, rgba(43, 217, 107, 0.16), transparent);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(closest-side, rgba(109, 255, 174, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.hero-visual { margin-top: 30px; }
.hero-copy { max-width: 640px; }
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-badges .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--led);
  box-shadow: 0 0 10px var(--led-glow);
}
.hero-badges li.svs img {
  height: 16px;
  width: auto;
  display: block;
}
.hero-badges li.svs {
  gap: 10px;
}

.hero-visual {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), var(--shadow-glow);
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
}
.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--led);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--led);
  box-shadow: 0 0 12px var(--led-glow);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
}
.hero h1 .hl {
  background: linear-gradient(90deg, var(--led), var(--led-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 32px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
}
.contact-form .btn { width: 100%; }
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--led);
  color: var(--bg);
}
.btn-primary:hover { background: var(--led-bright); box-shadow: 0 0 24px var(--led-glow); color: var(--bg); }
.btn-ghost {
  background: transparent;
  color: var(--led);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(43, 217, 107, 0.08); border-color: var(--led); color: var(--led-bright); }

/* ===================== SCOREBORD-FOTO (real product photo) ===================== */
.scorebord-photo {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 86%;
  max-width: 540px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(43, 217, 107, 0.18),
    0 0 32px rgba(43, 217, 107, 0.18);
  z-index: 3;
}
.scorebord-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================== SCOREBOARD (legacy synth — kept for fallback) ===================== */
.scoreboard {
  background: linear-gradient(180deg, rgba(5, 11, 8, 0.96) 0%, rgba(10, 22, 16, 0.96) 100%);
  backdrop-filter: blur(8px) saturate(140%);
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line-strong);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.4),
    0 20px 50px rgba(0,0,0,0.55),
    var(--shadow-glow);
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -28px;
  z-index: 3;
}
.hero-visual .sb-row { gap: 10px; }
.hero-visual .sb-top { padding: 2px 4px 10px; margin-bottom: 12px; }
.hero-visual .sb-bottom { margin-top: 12px; padding-top: 10px; }
.scoreboard::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.018) 1px, transparent 1.2px);
  background-size: 4px 4px;
}
.sb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Share Tech Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--led-dim);
  padding: 4px 6px 12px;
  border-bottom: 1px dashed rgba(43, 217, 107, 0.18);
  margin-bottom: 18px;
}
.sb-top .live {
  color: var(--led);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sb-top .live::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 8px #ff3b30;
  animation: blink 1s ease-in-out infinite;
}
.sb-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  font-family: 'Share Tech Mono', ui-monospace, monospace;
}
.sb-team {
  text-align: center;
  color: var(--ink);
}
.sb-team .name {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sb-score {
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  color: var(--led-bright);
  text-shadow:
    0 0 8px var(--led-glow),
    0 0 22px rgba(43,217,107,0.35),
    0 0 44px rgba(43,217,107,0.18);
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease;
}
.sb-score.bump { transform: scale(1.12); }
.sb-mid { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.sb-colon {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--led-bright);
  text-shadow: 0 0 14px var(--led-glow);
  line-height: 1;
  animation: blink 1.2s ease-in-out infinite;
}
.sb-clock {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-shadow: 0 0 10px rgba(255, 179, 0, 0.45);
}
.sb-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(43, 217, 107, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Share Tech Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--led-dim);
}
.sb-bottom .sponsor-rot {
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 220px;
  transition: opacity 0.3s ease;
}

/* ===================== TICKER ===================== */
.ticker {
  background: #050b08;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: flex;
  gap: 48px;
  padding: 14px 0;
  animation: tick 38s linear infinite;
  font-family: 'Share Tech Mono', ui-monospace, monospace;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--led);
  text-transform: uppercase;
  white-space: nowrap;
  width: max-content;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 12px; }
.ticker-track span::before {
  content: '●';
  color: var(--led-dim);
  font-size: 0.7rem;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}
.section-alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 820px;
  line-height: 1.15;
  font-weight: 800;
}
.section h2 .hl {
  color: var(--led);
}
.section .lead { margin-bottom: 36px; }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.two-col p { margin: 0 0 16px; color: var(--ink-soft); }

.stat-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat-grid li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.stat-grid li:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.stat-grid li::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--led), transparent);
  opacity: 0.6;
}
.stat-num {
  font-family: 'Share Tech Mono', ui-monospace, monospace;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--led-bright);
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px var(--led-glow);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--led), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.card:hover::after { opacity: 0.55; }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(43, 217, 107, 0.1);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--led);
  margin-bottom: 18px;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 700;
}
.card p { margin: 0; color: var(--ink-soft); }

/* ===================== TEAM ===================== */
.team-section { text-align: center; }
.team-section .eyebrow,
.team-section h2 {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.team-section h2 { max-width: none; }
.team-section .eyebrow { display: inline-flex; }
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(48px, 10vw, 120px);
  margin-top: 56px;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border: 0;
  padding: 0;
  transition: transform 0.2s ease;
}
.team-card:hover { transform: translateY(-3px); }
.team-photo {
  width: clamp(160px, 18vw, 220px);
  height: clamp(160px, 18vw, 220px);
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-3);
  border: 2px solid var(--line-strong);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 0 6px rgba(43, 217, 107, 0.05);
  margin-bottom: 20px;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover .team-photo {
  border-color: var(--led);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 0 8px rgba(43, 217, 107, 0.12), var(--shadow-glow);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-info h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 700;
}
.team-role {
  margin: 0;
  color: var(--led);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

/* ===================== PARTNERS ===================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.partner-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.partner-card:hover {
  border-color: var(--line-strong);
  background: var(--panel-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  text-decoration: none;
}
.partner-card:focus-visible {
  outline: none;
  border-color: var(--led);
  box-shadow: 0 0 0 3px rgba(43, 217, 107, 0.25);
}
.partner-card img {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.partner-wordmark {
  font-family: 'Share Tech Mono', ui-monospace, monospace;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--led-bright);
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px var(--led-glow);
}

/* ===================== FOUNDER (legacy) ===================== */
.founder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 0;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.founder::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--led), transparent);
  border-radius: var(--radius) 0 0 var(--radius);
}
.founder img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line-strong);
  flex-shrink: 0;
}
.founder figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.founder-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}
.founder-role {
  font-size: 0.86rem;
  color: var(--led);
  font-weight: 500;
}

/* ===================== REVENUE TABLE ===================== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--panel);
  position: relative;
}
.revenue-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.revenue-table th,
.revenue-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--ink);
}
.revenue-table thead th {
  background: var(--bg-3);
  color: var(--led);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.revenue-table tbody tr { transition: background 0.15s ease; }
.revenue-table tbody tr:hover { background: rgba(43, 217, 107, 0.04); }
.revenue-table .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-family: 'Share Tech Mono', ui-monospace, monospace;
  color: var(--cream);
}
.revenue-table tfoot th,
.revenue-table tfoot td {
  background: linear-gradient(90deg, var(--bg-3), var(--panel-2));
  color: var(--led-bright);
  font-weight: 700;
  border-bottom: none;
  border-top: 1px solid var(--line-strong);
  font-size: 0.92rem;
}
.revenue-table tfoot th { text-align: right; }
.revenue-table tfoot .total {
  font-size: 1.15rem;
  font-family: 'Share Tech Mono', ui-monospace, monospace;
  text-shadow: 0 0 12px var(--led-glow);
}
.note {
  color: var(--ink-faint);
  font-size: 0.88rem;
  margin-top: 18px;
}

/* ===================== FEATURE LIST ===================== */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.feature-list li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px 14px 44px;
  position: relative;
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature-list li:hover {
  border-color: var(--line-strong);
  transform: translateX(2px);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--led);
  box-shadow: 0 0 0 4px rgba(43, 217, 107, 0.15), 0 0 12px var(--led-glow);
}

/* ===================== IMPACT ===================== */
.impact {
  background:
    radial-gradient(ellipse at top right, rgba(43, 217, 107, 0.15), transparent 60%),
    linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.impact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}
.impact-text { max-width: 720px; }
.impact h2 { color: var(--ink); }
.impact h2 .hl { color: var(--led-bright); text-shadow: 0 0 22px var(--led-glow); }
.impact p { color: var(--ink-soft); font-size: 1.05rem; }
.impact-logo {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
@media (max-width: 720px) {
  .impact-inner { grid-template-columns: 1fr; gap: 20px; }
  .impact-logo { width: 120px; height: 120px; justify-self: start; }
}

/* ===================== FAQ ===================== */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
}
.faq-tab {
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.2s ease, transform 0.08s ease;
  font-family: inherit;
}
.faq-tab:hover {
  color: var(--led-bright);
  border-color: var(--led-dim);
}
.faq-tab.is-active {
  background: var(--led);
  color: var(--bg);
  border-color: var(--led);
  box-shadow: 0 0 20px var(--led-glow);
}
.faq-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 217, 107, 0.3);
}
.faq-groups {
  display: block;
}
.faq-group[hidden] { display: none; }
.faq-group {
  animation: faq-fade 0.25s ease both;
}
@keyframes faq-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-group-title {
  font-size: 0.82rem;
  color: var(--led);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-group-title::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--led);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--led-glow);
}
details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.15s ease, background 0.15s ease;
}
details[open] {
  border-color: var(--line-strong);
  background: var(--panel-2);
}
summary {
  cursor: pointer;
  padding: 16px 22px;
  font-weight: 500;
  list-style: none;
  position: relative;
  padding-right: 52px;
  color: var(--ink);
  font-size: 0.96rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--led);
  font-weight: 300;
  transition: transform 0.2s ease;
  line-height: 1;
}
details[open] summary::after { content: '−'; }
details > *:not(summary) {
  padding: 0 22px 18px;
  margin: 0;
  color: var(--ink-soft);
}
details ul {
  margin: 10px 0 0;
  list-style: none;
}
details ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.55;
}
details ul li:last-child { margin-bottom: 0; }
details ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--led);
  box-shadow: 0 0 8px var(--led-glow);
}

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--panel);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.field label span[aria-hidden] {
  color: var(--led);
  margin-left: 4px;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.96rem;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--bg-2);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.field textarea {
  height: auto;
  min-height: 132px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.5;
}
.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--led) 50%),
    linear-gradient(135deg, var(--led) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) center,
    calc(100% - 12px) center;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
  cursor: pointer;
}
.field select option { background: var(--bg-2); color: var(--ink); }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-faint); }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--led-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--led);
  box-shadow: 0 0 0 3px rgba(43, 217, 107, 0.18);
  background: var(--bg-3);
}

/* LED-themed checkbox */
.field-check label {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  line-height: 1.5;
}
.field-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.field-check label::before {
  content: '';
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 1.5px solid var(--line-strong);
  background: var(--bg-2);
  display: inline-block;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}
.field-check label:hover::before { border-color: var(--led-dim); }
.field-check input:focus-visible + span::before,
.field-check label:focus-within::before {
  box-shadow: 0 0 0 3px rgba(43, 217, 107, 0.22);
}
.field-check input:checked + span {
  color: var(--ink);
}
.field-check input:checked ~ span::before,
.field-check label:has(input:checked)::before {
  background: var(--led);
  border-color: var(--led);
  box-shadow: 0 0 12px var(--led-glow);
}
.field-check label:has(input:checked)::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-65%) rotate(45deg);
  width: 7px;
  height: 13px;
  border-right: 2.5px solid var(--bg);
  border-bottom: 2.5px solid var(--bg);
}
.form-status {
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: var(--led);
}
.form-status.error { color: #ff8a80; }

/* Honeypot — hidden from real users, visible to dumb bots */
.hp-field {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: progress;
}

.contact-thanks {
  background: var(--panel);
  border: 1px solid var(--led);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-glow);
  animation: thanks-in 0.4s ease both;
}
@keyframes thanks-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(43, 217, 107, 0.12);
  color: var(--led);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px rgba(43, 217, 107, 0.06), var(--shadow-glow);
}
.contact-thanks h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 700;
}
.contact-thanks p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  background: linear-gradient(160deg, var(--panel-2), var(--bg-3));
  border: 1px solid var(--line-strong);
  padding: 32px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(closest-side, rgba(43, 217, 107, 0.18), transparent);
  border-radius: 50%;
}
.contact-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  line-height: 1;
  margin-bottom: 22px;
  position: relative;
}
.contact-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.contact-logo .brand-suffix {
  font-size: 1rem;
}
.contact-info h3 { margin: 0 0 16px; color: var(--ink); position: relative; }
.contact-info address {
  font-style: normal;
  line-height: 1.8;
  color: var(--ink-soft);
  position: relative;
}
.contact-info a { color: var(--led-bright); }
.contact-info p { margin: 18px 0 0; position: relative; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: #050b08;
  color: var(--ink-faint);
  padding: 56px 0 24px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 32px;
}
.footer-col h4 {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--led);
  font-weight: 600;
}
.footer-col address,
.footer-col .footer-legal,
.footer-col p {
  font-style: normal;
  line-height: 1.7;
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin: 0;
}
.footer-col a {
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--led-bright); }
.footer-legal {
  margin-top: 14px !important;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
}
.footer-links li { margin-bottom: 6px; }
.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin: 0;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
  opacity: 0.9;
}
.footer-logo {
  height: 28px;
  width: auto;
  display: block;
}
.footer-brand .brand-suffix {
  font-size: 0.72rem;
}
.footer-inner p { margin: 0; font-size: 0.86rem; }

/* ===================== REVEAL ON SCROLL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .two-col,
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .cards { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 64px 0; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(8, 19, 13, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    backdrop-filter: blur(10px);
  }
  .primary-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
  }
  .primary-nav li a {
    display: block;
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav li:last-child a { border-bottom: 0; }
  .nav-cta { text-align: center; margin-top: 8px; }
}

@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.95rem; }
  .scoreboard { padding: 16px; }
  .contact-form { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
