:root {
  --asphalt: #06080b;
  --asphalt-2: #0b0f14;
  --surface: #11161d;
  --surface-2: #161d26;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .18);
  --ink: #f4f6f8;
  --mute: #93a0ae;
  --sodium: #ff8a1f;
  --sodium-soft: rgba(255, 138, 31, .14);
  --lime: #e9d417;
  --signal: #49a0ff;
  --ok: #33d17a;
  --grad: linear-gradient(95deg, var(--lime), var(--sodium));
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .55);
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--asphalt);
  color: var(--ink);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code, .mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

.wrap { width: min(var(--maxw), 92vw); margin-inline: auto; }

.section { padding: clamp(64px, 9vw, 116px) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sodium);
  display: block;
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 14px; }
.section-head p { color: var(--mute); font-size: 1.02rem; }

/* ---------- backdrop ---------- */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(255, 138, 31, .16), transparent 62%),
    radial-gradient(760px 480px at 8% 4%, rgba(73, 160, 255, .12), transparent 60%),
    linear-gradient(180deg, #06080b 0%, #070a0e 55%, #05070a 100%);
}
.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 78%);
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(6, 8, 11, .72);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(6, 8, 11, .92); }
.nav-inner { display: flex; align-items: center; gap: 22px; height: 74px; }
.logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 26px; margin-left: 12px; }
.nav-links a {
  font-size: .92rem;
  color: var(--mute);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 10px;
  width: 42px; height: 42px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  padding: 11px 18px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  transition: transform .18s, background .2s, border-color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); border-color: var(--sodium); }
.btn:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.btn-primary {
  background: var(--grad);
  border-color: transparent;
  color: #140d02;
  box-shadow: 0 12px 30px rgba(255, 138, 31, .28);
}
.btn-primary:hover { box-shadow: 0 18px 40px rgba(255, 138, 31, .4); }
.btn-discord { background: #5865f2; border-color: transparent; color: #fff; }
.btn-discord:hover { background: #4653e0; border-color: transparent; box-shadow: 0 16px 34px rgba(88, 101, 242, .38); }
.btn-ghost { background: rgba(255, 255, 255, .04); }
.btn-lg { padding: 15px 26px; font-size: 1.02rem; }
.btn-sm { padding: 8px 14px; font-size: .86rem; border-radius: 9px; }
.btn svg { width: 18px; height: 18px; }

/* ---------- status pill ---------- */
.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: rgba(51, 209, 122, .08);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .82rem;
  font-family: "JetBrains Mono", monospace;
  color: #c9f7dd;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(51, 209, 122, .55); animation: pulse 2.2s infinite; }
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(51, 209, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(51, 209, 122, 0); }
}
.status.is-off { background: rgba(255, 90, 90, .09); color: #ffc9c9; }
.status.is-off .dot { background: #ff5a5a; animation: none; box-shadow: none; }

/* ---------- hero ---------- */
.hero { padding: clamp(46px, 7vw, 86px) 0 clamp(40px, 6vw, 70px); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 46px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); margin: 20px 0 18px; }
.hero h1 .glow {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { color: var(--mute); font-size: 1.1rem; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; color: var(--mute); font-size: .88rem; }
.hero-meta strong { display: block; color: var(--ink); font-family: "Chakra Petch", sans-serif; font-size: 1.28rem; }

/* dispatch card = signature element */
.dispatch {
  background: linear-gradient(170deg, rgba(22, 29, 38, .96), rgba(11, 15, 20, .96));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.dispatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.dispatch-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .02);
}
.dispatch-top span.label { font-family: "JetBrains Mono", monospace; font-size: .72rem; letter-spacing: .22em; color: var(--mute); text-transform: uppercase; }
.dispatch-body { padding: 22px 18px 18px; display: grid; gap: 16px; }
.gauge { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.gauge > div { min-width: 0; }
.gauge-num { font-family: "Chakra Petch", sans-serif; font-size: clamp(2.6rem, 7vw, 3.6rem); line-height: 1; }
.gauge-num small { font-size: 1.1rem; color: var(--mute); }
.bar { height: 8px; border-radius: 99px; background: rgba(255, 255, 255, .07); overflow: hidden; }
.bar > i { display: block; height: 100%; background: var(--grad); border-radius: 99px; transition: width 1.2s ease; }
.kv { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.kv div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, .02);
}
.kv span { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); font-family: "JetBrains Mono", monospace; }
.kv b { font-family: "Chakra Petch", sans-serif; font-size: 1.05rem; font-weight: 600; }
.ipbar {
  display: flex; align-items: center; gap: 10px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 138, 31, .05);
}
.ipbar code { font-size: .92rem; color: var(--lime); flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ipbar .btn { flex: 0 0 auto; }

/* ---------- stats strip ---------- */
.strip {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 138, 31, .06), rgba(73, 160, 255, .05));
}
.strip-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.strip-grid div { padding: 26px 18px; text-align: center; border-left: 1px solid var(--line); }
.strip-grid div:first-child { border-left: 0; }
.strip-grid b { display: block; font-family: "Chakra Petch", sans-serif; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.strip-grid span { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); font-family: "JetBrains Mono", monospace; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(22, 29, 38, .8), rgba(11, 15, 20, .8));
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 138, 31, .16), transparent 68%);
  opacity: 0;
  transition: opacity .3s;
}
.card:hover::after { opacity: 1; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--mute); font-size: .95rem; }
.icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--sodium-soft);
  border: 1px solid rgba(255, 138, 31, .3);
  margin-bottom: 16px;
  color: var(--sodium);
}
.icon svg { width: 22px; height: 22px; }

/* ---------- panel showcase ---------- */
.panel-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: center; }
.feature-list { display: grid; gap: 14px; margin: 26px 0; }
.feature-list li { list-style: none; display: flex; gap: 12px; color: var(--mute); font-size: .96rem; }
.feature-list b { color: var(--ink); font-family: "Chakra Petch", sans-serif; font-weight: 600; }
.tick { color: var(--lime); flex: 0 0 auto; }

.mock {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--asphalt-2);
}
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .03); }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: #2c343e; }
.mock-bar code { margin-left: 10px; font-size: .74rem; color: var(--mute); }
.mock-body { display: grid; grid-template-columns: 172px 1fr; min-height: 380px; }
.mock-side { border-right: 1px solid var(--line); padding: 16px 12px; display: grid; gap: 4px; align-content: start; background: rgba(255, 255, 255, .015); }
.mock-side button {
  all: unset;
  cursor: pointer;
  padding: 9px 11px;
  border-radius: 9px;
  font-size: .86rem;
  color: var(--mute);
  transition: background .2s, color .2s;
}
.mock-side button:hover { background: rgba(255, 255, 255, .05); color: var(--ink); }
.mock-side button[aria-selected="true"] { background: var(--sodium-soft); color: var(--ink); box-shadow: inset 2px 0 0 var(--sodium); }
.mock-main { padding: 18px; display: grid; gap: 14px; align-content: start; overflow-x: auto; }
.mock-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.mock-head h4 { font-size: 1.1rem; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-family: "JetBrains Mono", monospace; font-size: .7rem; border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; color: var(--mute); }
table.mock-table { width: 100%; border-collapse: collapse; font-size: .86rem; }
table.mock-table th {
  text-align: left;
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 400;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
}
table.mock-table td { padding: 10px; border-bottom: 1px solid rgba(255, 255, 255, .05); }
table.mock-table tbody tr:hover { background: rgba(255, 255, 255, .03); }
.tag { font-size: .72rem; padding: 3px 9px; border-radius: 999px; font-family: "JetBrains Mono", monospace; }
.tag.on { background: rgba(51, 209, 122, .14); color: #7ff0b3; }
.tag.off { background: rgba(255, 255, 255, .06); color: var(--mute); }
.tag.hot { background: rgba(255, 138, 31, .16); color: #ffc38a; }
.tag.ban { background: rgba(255, 86, 86, .14); color: #ff9a9a; }
.num { font-family: "JetBrains Mono", monospace; }

/* login card */
.login-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(88, 101, 242, .12), rgba(11, 15, 20, .9));
  padding: 30px 28px;
  display: grid;
  gap: 14px;
  max-width: 460px;
}
.login-card h3 { font-size: 1.4rem; }
.login-card p { color: var(--mute); font-size: .94rem; }
.login-steps { display: grid; gap: 10px; margin-top: 4px; }
.login-steps li { list-style: none; display: flex; gap: 12px; font-size: .9rem; color: var(--mute); }
.login-steps em {
  font-style: normal;
  font-family: "JetBrains Mono", monospace;
  font-size: .72rem;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, .06);
  color: var(--ink);
  flex: 0 0 auto;
}

/* ---------- donations ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.tier {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(170deg, rgba(22, 29, 38, .72), rgba(11, 15, 20, .82));
}
.tier.featured { border-color: rgba(255, 138, 31, .5); box-shadow: 0 20px 50px rgba(255, 138, 31, .12); }
.tier h3 { font-size: 1.24rem; }
.price { font-family: "Chakra Petch", sans-serif; font-size: 2.2rem; }
.price small { font-size: .9rem; color: var(--mute); font-family: "Sora", sans-serif; }
.tier ul { display: grid; gap: 9px; }
.tier li { list-style: none; display: flex; gap: 10px; font-size: .92rem; color: var(--mute); }
.tier .btn { margin-top: auto; }

/* ---------- discord cta ---------- */
.cta {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(32px, 5vw, 56px);
  background:
    radial-gradient(600px 240px at 88% 10%, rgba(88, 101, 242, .22), transparent 70%),
    linear-gradient(165deg, rgba(22, 29, 38, .9), rgba(9, 12, 16, .95));
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: center;
}
.cta h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 10px; }
.cta p { color: var(--mute); max-width: 520px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }

/* ---------- faq ---------- */
.faq { display: grid; gap: 10px; max-width: 840px; margin-inline: auto; }
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .02);
  padding: 16px 18px;
}
details[open] { border-color: var(--line-strong); }
summary {
  cursor: pointer;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--sodium); font-size: 1.3rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { color: var(--mute); font-size: .94rem; margin-top: 10px; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); padding: 46px 0 34px; background: rgba(5, 7, 10, .7); }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.foot-grid h4 { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); margin-bottom: 14px; font-family: "JetBrains Mono", monospace; font-weight: 400; }
.foot-grid a, .foot-grid p { color: var(--mute); font-size: .92rem; display: block; margin-bottom: 8px; transition: color .2s; }
.foot-grid a:hover { color: var(--sodium); }
.foot-bottom { border-top: 1px solid var(--line); margin-top: 32px; padding-top: 20px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--mute); font-size: .84rem; }

/* toast */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 24px);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 11px 18px;
  font-size: .9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 80;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

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

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid, .panel-split, .cta { grid-template-columns: 1fr; }
  .cards, .tiers { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(3, 1fr); }
  .strip-grid div:nth-child(4) { border-left: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(6, 8, 11, .98);
    border-bottom: 1px solid var(--line);
    padding: 8px 6vw 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .burger { display: block; }
  .nav-actions .btn-ghost { display: none; }
  .cards, .tiers { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid div { border-left: 0; border-top: 1px solid var(--line); }
  .mock-body { grid-template-columns: 1fr; }
  .mock-side { display: flex; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .mock-side button { white-space: nowrap; }
  table.mock-table th:nth-child(3), table.mock-table td:nth-child(3) { display: none; }
  .cta-actions { width: 100%; }
}

@media (max-width: 430px) {
  .kv { grid-template-columns: 1fr; }
  .ipbar { flex-wrap: wrap; }
  .ipbar code { flex-basis: 100%; }
  .hero-cta .btn { flex: 1 1 auto; }
}

.mock-empty {
  margin: 0;
  padding: 26px 4px;
  color: var(--mute);
  font-size: .95rem;
  text-align: center;
}

/* protectie continut */
body { -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; }
input, textarea { -webkit-user-select: text; user-select: text; }
img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }

/* ================= TEME DE CULOARE ================= */
:root, html[data-theme="dark"] {
  --neon-1: #ff8a1f;
  --neon-2: #e9d417;
  --neon-3: #49a0ff;
}

html[data-theme="black"] {
  --asphalt: #000;
  --asphalt-2: #050505;
  --surface: #0b0b0b;
  --surface-2: #131313;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.2);
  --ink: #fff;
  --mute: #9a9a9a;
  --sodium: #ffb020;
  --sodium-soft: rgba(255,176,32,.14);
  --lime: #ffe066;
  --grad: linear-gradient(95deg, #ffe066, #ffb020);
  --neon-1: #ffb020; --neon-2: #ffe066; --neon-3: #ff6a00;
}
html[data-theme="black"] .grid-bg {
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(255,176,32,.18), transparent 62%),
    radial-gradient(760px 480px at 8% 4%, rgba(255,106,0,.10), transparent 60%),
    linear-gradient(180deg, #000 0%, #030303 55%, #000 100%);
}

html[data-theme="blue"] {
  --asphalt: #03070f;
  --asphalt-2: #061021;
  --surface: #0b1730;
  --surface-2: #10203f;
  --line: rgba(120,180,255,.14);
  --line-strong: rgba(120,180,255,.3);
  --ink: #eaf3ff;
  --mute: #8fa8c8;
  --sodium: #38bdf8;
  --sodium-soft: rgba(56,189,248,.16);
  --lime: #7dd3fc;
  --signal: #6366f1;
  --grad: linear-gradient(95deg, #7dd3fc, #4f7cff);
  --shadow: 0 24px 60px rgba(0, 20, 60, .6);
  --neon-1: #38bdf8; --neon-2: #7dd3fc; --neon-3: #a855f7;
}
html[data-theme="blue"] .grid-bg {
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(56,189,248,.22), transparent 62%),
    radial-gradient(760px 480px at 8% 4%, rgba(168,85,247,.16), transparent 60%),
    linear-gradient(180deg, #03070f 0%, #04101f 55%, #02060d 100%);
}
html[data-theme="blue"] .btn-primary { color: #04121f; }

/* aurore colorate peste fundal */
.grid-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(420px 320px at 15% 80%, color-mix(in srgb, var(--neon-3) 22%, transparent), transparent 70%),
    radial-gradient(520px 380px at 85% 60%, color-mix(in srgb, var(--neon-1) 16%, transparent), transparent 70%);
  filter: blur(10px);
  animation: aurora 18s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(-2%, 0, 0) scale(1); opacity: .75; }
  100% { transform: translate3d(3%, -2%, 0) scale(1.08); opacity: 1; }
}

/* ================= THEME SWITCH ================= */
.theme-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}
.theme-switch button {
  width: 24px; height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
  transition: transform .18s, box-shadow .2s, border-color .2s;
}
.theme-switch button i { width: 14px; height: 14px; border-radius: 50%; display: block; }
.theme-switch button[data-theme="black"] i { background: linear-gradient(135deg, #000, #333); }
.theme-switch button[data-theme="dark"] i  { background: linear-gradient(135deg, #e9d417, #ff8a1f); }
.theme-switch button[data-theme="blue"] i  { background: linear-gradient(135deg, #7dd3fc, #4f7cff); }
.theme-switch button:hover { transform: translateY(-1px) scale(1.08); }
.theme-switch button[aria-pressed="true"] {
  border-color: var(--sodium);
  box-shadow: 0 0 0 2px var(--sodium-soft), 0 0 14px color-mix(in srgb, var(--sodium) 55%, transparent);
}

/* ================= NAV SONICPANEL ================= */
.nav-ext { display: inline-flex; align-items: center; gap: 6px; color: var(--sodium) !important; }
.nav-ext svg { width: 13px; height: 13px; }
.nav-ext::after { background: var(--grad); }

/* ================= HERO VIDEO ================= */
.hero { position: relative; isolation: isolate; }
.hero-video {
  position: absolute;
  inset: -6% -6vw 0;
  z-index: -1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.hero-video iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  filter: saturate(1.15) contrast(1.05);
}
.hero-video-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--asphalt) 4%, color-mix(in srgb, var(--asphalt) 72%, transparent) 46%, color-mix(in srgb, var(--asphalt) 86%, transparent) 100%),
    linear-gradient(180deg, color-mix(in srgb, var(--asphalt) 85%, transparent), transparent 28%, color-mix(in srgb, var(--asphalt) 96%, transparent));
}

/* ================= SPONSORI / FOOTER ================= */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sponsored a {
  color: var(--sodium);
  text-shadow: 0 0 14px color-mix(in srgb, var(--sodium) 45%, transparent);
  transition: filter .2s;
}
.sponsored a:hover { filter: brightness(1.25); }

/* ================= AVIZ / GATE ================= */
.gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 4, 7, .82);
  backdrop-filter: blur(9px);
  transition: opacity .4s ease, visibility .4s;
}
.gate.hide { opacity: 0; visibility: hidden; }
body.gated { overflow: hidden; }
.gate-card {
  position: relative;
  width: min(560px, 100%);
  overflow: hidden;
  text-align: center;
  padding: 38px 30px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(170deg, var(--surface-2), var(--asphalt-2));
  box-shadow: var(--shadow), 0 0 60px color-mix(in srgb, var(--sodium) 22%, transparent);
  animation: gateIn .5s cubic-bezier(.2,.9,.25,1.2) both;
}
@keyframes gateIn { from { opacity: 0; transform: translateY(22px) scale(.96); } }
.gate-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, var(--neon-2), var(--neon-1), var(--neon-3), var(--neon-2));
  background-size: 300% 300%;
  animation: borderFlow 6s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@keyframes borderFlow { to { background-position: 300% 50%; } }
.gate-beam {
  position: absolute;
  top: 0; left: -60%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.09), transparent);
  animation: beam 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes beam { 0% { left: -60%; } 60%, 100% { left: 120%; } }
.gate-badge {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem;
  letter-spacing: .3em;
  padding: 6px 14px;
  border-radius: 999px;
  color: #140d02;
  background: var(--grad);
  animation: flashPulse 1.6s ease-in-out infinite;
}
@keyframes flashPulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--sodium) 55%, transparent); }
  50% { box-shadow: 0 0 22px 4px color-mix(in srgb, var(--sodium) 45%, transparent); }
}
.gate-logo { height: 54px; width: auto; margin: 20px auto 16px; filter: drop-shadow(0 8px 26px rgba(0,0,0,.6)); }
.gate-card h2 { font-size: clamp(1.25rem, 3.4vw, 1.75rem); line-height: 1.25; margin-bottom: 14px; }
.gate-card p { color: var(--mute); font-size: .95rem; margin-bottom: 22px; }
.gate-card p b { color: var(--ink); }
.gate-foot { display: block; margin-top: 16px; font-size: .72rem; color: var(--mute); }

@media (max-width: 900px) {
  .hero-video { inset: -4% -4vw 0; }
  .theme-switch { order: 3; }
}

/* ================= HERO FULL SCREEN ================= */
.hero-full {
  min-height: min(86vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: clamp(80px, 14vh, 190px) 0 clamp(26px, 4vh, 46px);
  overflow: hidden;
}
.hero-full .hero-video {
  inset: 0;
  left: 50%;
  right: auto;
  width: 100vw;
  transform: translateX(-50%);
  border-radius: 0;
}
.hero-full .hero-video iframe {
  width: 100vw;
  height: 100%;
  min-height: 56.25vw;
  min-width: 177.78vh;
}
.hero-full .hero-video-veil {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--asphalt) 82%, transparent) 0%, transparent 26%, color-mix(in srgb, var(--asphalt) 55%, transparent) 62%, var(--asphalt) 100%),
    radial-gradient(120% 80% at 50% 40%, transparent 30%, color-mix(in srgb, var(--asphalt) 55%, transparent) 100%);
}
.hero-full .hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, color-mix(in srgb, var(--neon-3) 18%, transparent), transparent 42%, color-mix(in srgb, var(--neon-1) 20%, transparent));
  mix-blend-mode: screen;
  opacity: .55;
  animation: heroTint 9s ease-in-out infinite alternate;
}
@keyframes heroTint { to { opacity: .9; filter: hue-rotate(18deg); } }

.hero-inner { position: relative; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  width: 100%;
}
.hero-sep { width: 1px; height: 34px; background: var(--line-strong); }
.hero-row .btn-lg { padding: 13px 20px; font-size: .95rem; }
.hero-row .status { font-size: .62rem; letter-spacing: .08em; white-space: nowrap; padding: 6px 12px; }
.hero-full .hero-meta { gap: 10px; margin: 0; }
.hero-full .hero-meta div {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.hero-full .hero-meta strong { display: inline; font-size: 1.05rem; color: var(--sodium); }

/* ---- dispatch pe o linie ---- */
.dispatch-line {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(100deg, color-mix(in srgb, var(--surface-2) 88%, transparent), color-mix(in srgb, var(--asphalt-2) 88%, transparent));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.05),
    0 0 0 1px color-mix(in srgb, var(--sodium) 16%, transparent),
    0 0 38px color-mix(in srgb, var(--sodium) 16%, transparent);
  animation: dlGlow 4.5s ease-in-out infinite alternate;
}
@keyframes dlGlow {
  to { box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.05),
    0 0 0 1px color-mix(in srgb, var(--neon-1) 26%, transparent),
    0 0 46px color-mix(in srgb, var(--neon-1) 22%, transparent); }
}
.dl-label {
  font-size: .64rem;
  letter-spacing: .16em;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--sodium);
}
.dl-players { display: inline-flex; align-items: baseline; gap: 6px; }
.dl-players b {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dl-players small { color: var(--mute); font-size: .86rem; }
.dl-cap { font-style: normal; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }
.dl-bar { flex: 1 1 70px; min-width: 60px; height: 6px; }
.dl-item { display: inline-flex; align-items: baseline; gap: 7px; }
.dl-item i { font-style: normal; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }
.dl-item b { font-size: .9rem; color: var(--ink); }
.dl-ip { display: inline-flex; align-items: center; gap: 10px; margin-left: auto; }
.dl-ip code { font-size: .8rem; color: var(--lime); }

@media (min-width: 1100px) {
  .dispatch-line { flex-wrap: nowrap; gap: 14px; }
  .dispatch-line > * { flex-shrink: 0; }
  .dl-bar { flex-shrink: 1; }
}

@media (max-width: 1099px) {
  .dispatch-line { gap: 8px 12px; padding: 11px 16px; }
  .dl-players b { font-size: 1.35rem; }
  .dl-item b, .dl-ip code { font-size: .78rem; }
  .dl-item i, .dl-cap, .dl-label { font-size: .6rem; letter-spacing: .14em; }
  .dl-bar { flex-basis: 80px; min-width: 70px; }
  .dl-ip { display: none; }
}

@media (max-width: 760px) {
  .dispatch-line { border-radius: var(--radius-lg); justify-content: space-between; }
  .dl-ip { margin-left: 0; }
  .hero-sep { display: none; }
  .hero-full { min-height: 72vh; }
}

/* ---- mai multa viata: accente colorate ---- */
.strip { position: relative; overflow: hidden; }
.strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--neon-3) 14%, transparent), transparent 35%, color-mix(in srgb, var(--neon-1) 16%, transparent));
  pointer-events: none;
}
.strip .count { position: relative; }
.card:hover { border-color: color-mix(in srgb, var(--sodium) 55%, transparent); box-shadow: 0 18px 44px color-mix(in srgb, var(--sodium) 14%, transparent); }
.tier.featured { box-shadow: 0 22px 60px color-mix(in srgb, var(--sodium) 20%, transparent); }

/* ================= VOLUM VIDEO ================= */
.vol {
  position: relative;
  align-self: flex-start;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.vol-btn {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  color: #10120f;
  background: var(--grad);
  box-shadow: 0 0 18px color-mix(in srgb, var(--sodium) 45%, transparent);
}
.vol-btn svg { width: 17px; height: 17px; }
.vol-btn .ico-on { display: none; }
.vol.on .vol-btn .ico-off { display: none; }
.vol.on .vol-btn .ico-on { display: block; }
.vol-range {
  -webkit-appearance: none;
  appearance: none;
  width: 108px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sodium), var(--neon-1));
  outline: none;
  cursor: pointer;
}
.vol-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px color-mix(in srgb, var(--sodium) 70%, transparent);
}
.vol-range::-moz-range-thumb {
  width: 14px; height: 14px; border: 0;
  border-radius: 50%;
  background: #fff;
}
.vol-val { font-size: .72rem; color: var(--mute); min-width: 22px; text-align: right; }
@media (max-width: 600px) { .vol-range { width: 74px; } .vol-val { display: none; } }

/* volum primul in linia de butoane */
.hero-row .vol {
  align-self: center;
  padding: 6px 12px 6px 6px;
  gap: 8px;
}
.hero-row .vol-btn { width: 30px; height: 30px; }
.hero-row .vol-btn svg { width: 15px; height: 15px; }
.hero-row .vol-range { width: 76px; }
.hero-row .vol-val { display: none; }

/* ================= VIATA / FLASH LA SCROLL ================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,.8,.3,1), transform .7s cubic-bezier(.22,.8,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

section { position: relative; }
section::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sodium), var(--neon-1), var(--neon-3), transparent);
  background-size: 300% 100%;
  animation: lineFlow 7s linear infinite;
  opacity: .65;
}
@keyframes lineFlow { to { background-position: 300% 0; } }

section > .wrap { position: relative; z-index: 1; }

/* aura colorata care se plimba in spatele sectiunilor */
main > section:nth-of-type(odd)::after,
main > section:nth-of-type(even)::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}
main > section:nth-of-type(odd)::after {
  background:
    radial-gradient(60% 70% at 8% 20%, color-mix(in srgb, var(--neon-3) 22%, transparent), transparent 70%),
    radial-gradient(55% 65% at 92% 80%, color-mix(in srgb, var(--sodium) 18%, transparent), transparent 70%);
  animation: auraShift 14s ease-in-out infinite alternate;
}
main > section:nth-of-type(even)::after {
  background:
    radial-gradient(55% 65% at 90% 15%, color-mix(in srgb, var(--neon-1) 22%, transparent), transparent 70%),
    radial-gradient(60% 70% at 10% 85%, color-mix(in srgb, var(--lime) 14%, transparent), transparent 70%);
  animation: auraShift 18s ease-in-out infinite alternate-reverse;
}
@keyframes auraShift {
  from { filter: hue-rotate(0deg); transform: translate3d(0,0,0) scale(1); }
  to   { filter: hue-rotate(35deg); transform: translate3d(0,-14px,0) scale(1.06); }
}

/* titluri cu accent colorat animat */
.eyebrow {
  background: linear-gradient(90deg, var(--sodium), var(--neon-1), var(--neon-3), var(--sodium));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: lineFlow 6s linear infinite;
}

/* carduri cu halou la hover */
.card, .tier, .panel-card {
  transition: transform .35s cubic-bezier(.22,.8,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.card:hover, .tier:hover { transform: translateY(-6px); }

/* cifre din strip pulsand colorat */
.strip .count b, .strip b {
  background: linear-gradient(90deg, var(--sodium), var(--neon-1), var(--neon-3));
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: lineFlow 8s linear infinite;
}

/* buton principal cu sclipire */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: "";
  position: absolute;
  top: -60%; bottom: -60%;
  width: 40px;
  left: -80px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
  animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine {
  0%, 65% { left: -80px; }
  100% { left: 130%; }
}

/* accente mai puternice */
main > section:nth-of-type(odd)::after,
main > section:nth-of-type(even)::after { opacity: .85; }

main > section > .wrap::before {
  content: "";
  position: absolute;
  left: -12vw; right: -12vw; top: -8%;
  height: 120%;
  z-index: -1;
  pointer-events: none;
  background: conic-gradient(from 0deg,
    color-mix(in srgb, var(--sodium) 16%, transparent),
    color-mix(in srgb, var(--neon-1) 14%, transparent),
    color-mix(in srgb, var(--neon-3) 16%, transparent),
    color-mix(in srgb, var(--lime) 10%, transparent),
    color-mix(in srgb, var(--sodium) 16%, transparent));
  filter: blur(90px);
  opacity: .45;
  animation: spinAura 28s linear infinite;
}
@keyframes spinAura { to { transform: rotate(360deg); } }

.card, .tier { position: relative; }
.card::after, .tier::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, var(--sodium), var(--neon-1), var(--neon-3), var(--sodium));
  background-size: 300% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  animation: lineFlow 6s linear infinite;
}
.card:hover::after, .tier:hover::after { opacity: .9; }

/* hero mai lat, ca sa incapa tot pe o linie */
.hero-full .hero-inner { width: min(1500px, 94vw); }
