:root {
  --bg0: #020611;
  --bg1: #050b18;
  --panel: rgba(12, 22, 42, 0.82);
  --line: rgba(56, 140, 255, 0.28);
  --text: #eef4ff;
  --muted: #8fa3c4;
  --blue: #3b9eff;
  --blue2: #6ec8ff;
  --blue-deep: #1677ff;
  --flash: #b8e0ff;
  --ok: #3dff9a;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }
body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.45;
  background: var(--bg0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Atmosphere */
.sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 50% 18%, rgba(22, 119, 255, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(30, 130, 255, 0.18), transparent 55%),
    linear-gradient(180deg, #020611 0%, #030814 55%, #020611 100%);
}
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(59, 158, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 158, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 10%, transparent 70%);
}
.bolts { display: none; }
.flash-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(180, 220, 255, 0.04);
  opacity: 0;
  animation: skyFlash 7s ease-in-out infinite;
}
@keyframes skyFlash {
  0%, 92%, 100% { opacity: 0; }
  94% { opacity: 1; }
  96% { opacity: 0.2; }
  97.5% { opacity: 0.7; }
}

.site {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.72), transparent);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav-brand {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(260px, 48vw);
  line-height: 1.15;
  color: var(--blue2);
  text-decoration: none;
}
.nav-bolt {
  width: 12px;
  height: 22px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(122, 240, 255, 0.75));
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-brand-text strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: #7af0ff;
  text-shadow: 0 0 14px rgba(122, 240, 255, 0.45);
}
.nav-brand-text small {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(143, 163, 196, 0.95);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(59, 158, 255, 0.12);
}
.nav-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
a[data-panel][hidden],
button[data-panel][hidden] {
  display: none !important;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(122, 240, 255, 0.45);
  background: linear-gradient(180deg, rgba(20, 48, 96, 0.75), rgba(8, 18, 40, 0.9));
  color: var(--muted);
  font-family: Orbitron, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(122, 240, 255, 0.08) inset,
    0 0 22px rgba(59, 158, 255, 0.2);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
}
.lang-switch:hover {
  transform: translateY(-1px);
  border-color: rgba(122, 240, 255, 0.75);
  box-shadow:
    0 0 0 1px rgba(122, 240, 255, 0.15) inset,
    0 0 30px rgba(59, 158, 255, 0.35);
}
.lang-switch .lang-sep {
  opacity: 0.45;
  font-weight: 500;
}
.lang-switch [data-lang] {
  padding: 2px 2px;
  transition: color 0.2s, text-shadow 0.2s;
}
.lang-switch [data-lang].is-active,
.lang-switch[data-active="ro"] [data-lang="ro"],
.lang-switch[data-active="en"] [data-lang="en"] {
  color: #7af0ff;
  text-shadow: 0 0 12px rgba(122, 240, 255, 0.75);
}
.nav-lang {
  margin-left: auto;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.18s var(--ease), border-color 0.18s, box-shadow 0.18s, background 0.18s;
  background: rgba(12, 22, 42, 0.7);
  color: var(--text);
}
.btn:hover {
  transform: translateY(-1px);
  border-color: var(--blue);
  box-shadow: 0 0 22px rgba(59, 158, 255, 0.22);
}
.btn-primary,
.btn-buy {
  background: linear-gradient(135deg, #1677ff, #2898ff);
  border-color: rgba(110, 200, 255, 0.45);
  color: #fff;
  box-shadow:
    0 0 25px rgba(30, 130, 255, 0.25),
    inset 0 1px rgba(255, 255, 255, 0.2);
}
.btn-buy {
  animation: buyGlow 2.8s ease-in-out infinite;
}
@keyframes buyGlow {
  0%, 100% {
    box-shadow:
      0 0 22px rgba(30, 130, 255, 0.22),
      inset 0 1px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 0 34px rgba(30, 130, 255, 0.42),
      0 0 48px rgba(122, 240, 255, 0.16),
      inset 0 1px rgba(255, 255, 255, 0.28);
  }
}
.btn-primary:hover,
.btn-buy:hover {
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 0 35px rgba(30, 130, 255, 0.45);
}
.btn-ghost {
  background: transparent;
}
.btn-lg {
  padding: 14px 24px;
  font-size: 1rem;
}

.main { flex: 1; }

/* ===== HERO WOW ===== */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 4vh, 36px) clamp(16px, 4vw, 48px) 0;
  text-align: center;
  gap: 0;
}
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  transform: none;
}
.hero-strip {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: none;
  margin-top: auto;
  margin-bottom: 0;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 18px clamp(16px, 4vw, 48px);
  border-radius: 0;
  background: rgba(8, 14, 28, 0.78);
  border: none;
  border-top: 1px solid rgba(59, 158, 255, 0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    #020611
    url("../img/background.png") center center / cover no-repeat;
  transform: scale(1.02);
  animation: bgBreathe 10s ease-in-out infinite;
}
@keyframes bgBreathe {
  0%, 100% { transform: scale(1.02); filter: brightness(1); }
  50% { transform: scale(1.035); filter: brightness(1.06); }
}
.hero-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-radial {
  position: absolute;
  left: 50%;
  top: 36%;
  width: min(640px, 85vw);
  height: min(280px, 36vh);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(2, 6, 17, 0.35), transparent 70%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 17, 0.55) 0%, transparent 28%, transparent 62%, rgba(2, 6, 17, 0.72) 100%),
    radial-gradient(ellipse 80% 70% at 50% 45%, transparent 35%, rgba(2, 6, 17, 0.45) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.55;
}
.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #7af0ff;
  box-shadow: 0 0 8px rgba(122, 240, 255, 0.9);
  opacity: 0.55;
  animation: floatUp linear infinite, particleTwinkle 3.5s ease-in-out infinite;
}
@keyframes floatUp {
  from { transform: translateY(20px); opacity: 0; }
  15% { opacity: 0.7; }
  to { transform: translateY(-100vh); opacity: 0; }
}
@keyframes particleTwinkle {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.6); }
}

.hero-tagline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.tag-white {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}
.tag-blue {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #5ec2ff;
  text-shadow: 0 0 18px rgba(94, 194, 255, 0.55);
}

.hero-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 6px 0 8px;
}
.hero-mini-bolt { display: none; }
.hero-logo {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(6.3rem, 20.5vw, 12.6rem);
  letter-spacing: 0.06em;
  line-height: 0.82;
  background: linear-gradient(180deg, #ffffff 8%, #c8ecff 28%, #5ec2ff 62%, #1677ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(59, 158, 255, 0.55));
  position: relative;
  animation: brandIn 1s var(--ease) both, logoPulse 3.4s ease-in-out infinite;
}
.hero-logo::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: electricShine 3.8s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.55;
}
@keyframes electricShine {
  from { background-position: 120% 0; }
  to { background-position: -120% 0; }
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(59, 158, 255, 0.55)); }
  50% { filter: drop-shadow(0 0 32px rgba(122, 240, 255, 0.75)); }
}
@keyframes brandIn {
  from { opacity: 0; transform: translateY(22px) scale(0.94); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.hero-pill {
  margin-top: 2px;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(94, 194, 255, 0.55);
  color: #7af0ff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-shadow: 0 0 12px rgba(122, 240, 255, 0.7);
  background: rgba(8, 20, 40, 0.45);
  box-shadow: 0 0 20px rgba(22, 119, 255, 0.2);
}

.hero-sub {
  margin-top: 16px;
  max-width: 34rem;
  color: rgba(200, 214, 235, 0.88);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
}
.hero-ctas {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  padding: 6px 8px;
}
.strip-ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(22, 119, 255, 0.12);
  border: 1px solid rgba(122, 240, 255, 0.25);
  filter: drop-shadow(0 0 8px rgba(94, 194, 255, 0.35));
}
.strip-ico svg { display: block; }
.strip-item strong {
  display: block;
  font-size: 0.86rem;
  color: #e8f4ff;
  margin-bottom: 2px;
}
.strip-item p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 860px) {
  .hero-strip {
    grid-template-columns: 1fr 1fr;
  }
  .hero-bolt {
    width: min(90px, 18vw);
    opacity: 0.22;
  }
}
@media (max-width: 520px) {
  .hero-strip { grid-template-columns: 1fr; }
}

.section {
  padding: 72px clamp(18px, 5vw, 64px);
  border-top: 1px solid rgba(56, 140, 255, 0.12);
}
.protect {
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(56, 140, 255, 0.12);
  background: #020611;
}
.protect-full {
  position: relative;
  min-height: min(100vh, 980px);
  width: 100%;
  display: block;
  overflow: hidden;
}
.protect-full-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: none;
  z-index: 0;
  display: block;
}
.protect-full-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(2, 6, 17, 0.55) 0%,
      rgba(2, 6, 17, 0.12) 14%,
      transparent 26%,
      transparent 70%,
      rgba(2, 6, 17, 0.28) 86%,
      rgba(2, 6, 17, 0.65) 100%);
}
.protect-overlay {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 5vh, 52px) clamp(18px, 5vw, 48px) clamp(36px, 6vh, 56px);
  text-align: center;
}
.protect-copy {
  max-width: 46rem;
  margin: 0 auto;
  flex-shrink: 0;
}
.protect-copy h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
  text-shadow:
    0 2px 20px rgba(2, 6, 17, 0.85),
    0 0 40px rgba(22, 119, 255, 0.25);
}
.protect-copy p {
  color: rgba(210, 222, 240, 0.92);
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 36rem;
  text-shadow: 0 2px 18px rgba(2, 6, 17, 0.8);
}
.protect-cta {
  margin-top: clamp(38vh, 48vh, 56vh);
  display: flex;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}
.protect-cta .btn {
  box-shadow:
    0 0 16px rgba(30, 130, 255, 0.22),
    0 6px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px rgba(255, 255, 255, 0.18);
  animation: none;
}
.protect-cta .btn:hover {
  box-shadow: 0 0 24px rgba(30, 130, 255, 0.35);
}
@media (max-width: 860px) {
  .protect-full {
    min-height: 90vh;
  }
  .protect-full-bg {
    object-position: center center;
  }
  .protect-cta {
    margin-top: 40vh;
  }
}

.protect-stage {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  gap: 28px 48px;
  align-items: center;
  min-height: 380px;
  z-index: 2;
  padding: 12px 0 40px;
}
.protect-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.protect-lines .pline {
  fill: none;
  stroke: url(#lineGlow);
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(94, 194, 255, 0.65));
  stroke-dasharray: 8 10;
  animation: lineFlow 4.5s linear infinite;
}
@keyframes lineFlow {
  to { stroke-dashoffset: -72; }
}
.protect-floor {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: min(420px, 70%);
  height: 90px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(40, 150, 255, 0.35), transparent 70%);
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}
.protect-card {
  position: relative;
  z-index: 2;
  padding: 18px 18px 16px;
  background: rgba(6, 12, 26, 0.78);
  border: 1px solid rgba(94, 194, 255, 0.35);
  border-radius: 14px;
  box-shadow:
    0 0 24px rgba(26, 92, 255, 0.16),
    inset 0 0 20px rgba(22, 119, 255, 0.05);
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  backdrop-filter: blur(10px);
}
.protect-card:hover {
  border-color: rgba(122, 240, 255, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 0 36px rgba(59, 158, 255, 0.28);
}
.pc-ico {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: rgba(22, 119, 255, 0.12);
  border: 1px solid rgba(122, 240, 255, 0.28);
}
.protect-card h3 {
  font-size: 1.05rem;
  color: #eef6ff;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  font-weight: 600;
}
.protect-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.protect-card.c1 { grid-column: 1; grid-row: 1; }
.protect-card.c2 { grid-column: 1; grid-row: 2; }
.protect-card.c3 { grid-column: 3; grid-row: 1; }
.protect-card.c4 { grid-column: 3; grid-row: 2; }

.protect-core {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 168px;
  height: 168px;
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  z-index: 3;
}
.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(110, 200, 255, 0.4);
  animation: spinSlow 18s linear infinite;
}
.ring-b {
  inset: 14px;
  border-style: solid;
  border-color: rgba(122, 240, 255, 0.35);
  animation-direction: reverse;
  animation-duration: 12s;
  box-shadow: 0 0 24px rgba(59, 158, 255, 0.25);
}
.core-glow {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 40% 30%, rgba(232, 251, 255, 0.35), transparent 42%),
    radial-gradient(circle at 50% 55%, rgba(122, 240, 255, 0.28), rgba(26, 92, 255, 0.4) 58%, rgba(5, 7, 13, 0.95) 100%);
  border: 1px solid rgba(122, 240, 255, 0.55);
  box-shadow:
    0 0 18px rgba(122, 240, 255, 0.55),
    0 0 42px rgba(59, 158, 255, 0.4),
    inset 0 0 24px rgba(122, 240, 255, 0.12);
  animation: corePulse 3.4s ease-in-out infinite;
}
.core-bolt {
  display: block;
  filter: drop-shadow(0 0 6px rgba(122, 240, 255, 0.95))
          drop-shadow(0 0 16px rgba(59, 158, 255, 0.75));
  animation: boltFlicker 2.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes boltFlicker {
  0%, 100% { transform: scale(1) rotate(-2deg); opacity: 0.92; }
  40% { transform: scale(1.04) rotate(1deg); opacity: 1; }
  55% { transform: scale(0.98) rotate(-1deg); opacity: 0.88; }
  70% { transform: scale(1.05) rotate(0deg); opacity: 1; }
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}
@keyframes corePulse {
  0%, 100% { filter: brightness(1); box-shadow: 0 0 18px rgba(122, 240, 255, 0.55), 0 0 42px rgba(59, 158, 255, 0.4), inset 0 0 24px rgba(122, 240, 255, 0.12); }
  50% { filter: brightness(1.12); box-shadow: 0 0 26px rgba(122, 240, 255, 0.75), 0 0 56px rgba(59, 158, 255, 0.5), inset 0 0 28px rgba(122, 240, 255, 0.18); }
}

@media (max-width: 860px) {
  .protect-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    gap: 14px;
  }
  .protect-lines,
  .protect-floor {
    display: none;
  }
  .protect-core {
    grid-column: 1;
    grid-row: 1;
    margin: 8px auto 12px;
  }
  .protect-card.c1,
  .protect-card.c2,
  .protect-card.c3,
  .protect-card.c4 {
    grid-column: 1;
    grid-row: auto;
  }
}

.section-head {
  max-width: 40rem;
  margin-bottom: 28px;
}
.section-head h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  color: var(--blue2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-head h2 svg { width: 22px; height: 36px; flex-shrink: 0; }
.section-head p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.02rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.pill {
  border: 1px solid var(--line);
  background: rgba(20, 40, 80, 0.45);
  padding: 8px 14px;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.pill strong { color: var(--blue2); font-weight: 600; }

.feature-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.feature-preview article {
  padding: 18px 16px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.feature-preview article:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}
.feature-preview h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}
.feature-preview p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Features page */
.feat-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 64px) clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.feat-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 85% 40%, rgba(59, 158, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(122, 240, 255, 0.08), transparent 50%);
  pointer-events: none;
}
.feat-showcase-copy {
  position: relative;
  z-index: 1;
}
.feat-showcase-kicker {
  font-family: Orbitron, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7af0ff;
  margin: 0 0 14px;
  text-shadow: 0 0 16px rgba(122, 240, 255, 0.55);
}
.feat-showcase-slogan {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  color: #fff;
  text-shadow: 0 0 40px rgba(59, 158, 255, 0.35);
}
.feat-showcase-slogan span {
  display: inline-block;
  margin-top: 0.08em;
  color: #7af0ff;
  text-shadow:
    0 0 12px rgba(122, 240, 255, 0.8),
    0 0 32px rgba(59, 158, 255, 0.5);
}
.feat-showcase-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 28rem;
  margin: 0 0 28px;
}
.feat-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.feat-showcase-media {
  position: relative;
  z-index: 1;
}
.dash-preview {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(122, 240, 255, 0.35);
  background: rgba(4, 10, 24, 0.85);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 30px 80px rgba(10, 40, 100, 0.55),
    0 0 60px rgba(59, 158, 255, 0.22);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.dash-preview:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0deg) translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(122, 240, 255, 0.2) inset,
    0 36px 90px rgba(20, 70, 160, 0.6),
    0 0 80px rgba(122, 240, 255, 0.25);
}
.dash-preview img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 960px) {
  .feat-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .feat-showcase-sub { margin-left: auto; margin-right: auto; }
  .feat-showcase-actions { justify-content: center; }
  .dash-preview {
    transform: none;
    max-width: 640px;
    margin: 0 auto;
  }
  .dash-preview:hover { transform: translateY(-4px); }
}

.page-hero {
  padding: 48px clamp(18px, 5vw, 64px) 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
  scroll-margin-top: 88px;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--blue2), var(--blue), transparent);
  box-shadow: 0 0 18px rgba(59, 158, 255, 0.5);
}
.page-hero h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  letter-spacing: 0.08em;
  color: var(--blue2);
  text-shadow: 0 0 20px rgba(59, 158, 255, 0.5);
}
.page-hero p {
  margin-top: 10px;
  max-width: 42rem;
  color: var(--muted);
}

.feat-wrap {
  padding: 28px clamp(18px, 4vw, 48px) 64px;
}
.feat-wrap h2 {
  margin: 36px 0 14px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.05em;
  color: var(--blue2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.feat-wrap h2 svg { width: 18px; height: 30px; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.feat-item {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 14px 12px;
  position: relative;
  overflow: hidden;
}
.feat-item h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}
.feat-item p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
}
.feat-item .status {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ok);
  border: 1px solid rgba(61, 255, 154, 0.35);
  padding: 3px 8px;
  border-radius: 999px;
}

/* Docs */
.docs-layout {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 28px;
  padding: 32px clamp(18px, 5vw, 64px) 72px;
}
.docs-nav {
  position: sticky;
  top: 88px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.docs-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}
.docs-nav a:hover,
.docs-nav a.is-active {
  color: var(--blue2);
  background: rgba(59, 158, 255, 0.1);
}
.docs-content {
  max-width: 720px;
}
.docs-content h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  color: var(--blue2);
  margin: 28px 0 12px;
  scroll-margin-top: 96px;
}
.docs-content h2:first-child { margin-top: 0; }
.docs-content p, .docs-content li {
  color: var(--muted);
  margin-bottom: 10px;
}
.docs-content ul { padding-left: 1.2rem; margin-bottom: 16px; }
.docs-content code, .docs-content pre {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.84rem;
}
.docs-content pre {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  overflow: auto;
  color: var(--blue2);
  margin: 12px 0 18px;
}
.docs-content code {
  background: rgba(59, 158, 255, 0.12);
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--blue2);
}

/* —— Pricing —— */
.pricing {
  position: relative;
  padding: clamp(64px, 10vw, 110px) clamp(18px, 5vw, 64px) clamp(48px, 8vw, 80px);
  scroll-margin-top: 88px;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(59, 158, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(122, 240, 255, 0.08), transparent 50%);
  pointer-events: none;
}
.pricing-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pricing-kicker {
  font-family: Orbitron, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7af0ff;
  margin: 0 0 14px;
  text-shadow: 0 0 16px rgba(122, 240, 255, 0.55);
}
.pricing-slogan {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 0 40px rgba(59, 158, 255, 0.35);
}
.pricing-slogan span {
  display: inline-block;
  margin-top: 0.08em;
  color: #7af0ff;
  text-shadow:
    0 0 12px rgba(122, 240, 255, 0.75),
    0 0 28px rgba(59, 158, 255, 0.45);
}
.pricing-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 auto 42px;
  max-width: 420px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 28px 24px 24px;
  border-radius: 18px;
  background:
    linear-gradient(165deg, rgba(18, 36, 72, 0.85), rgba(6, 12, 28, 0.92));
  border: 1px solid rgba(90, 160, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 20px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 240, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(122, 240, 255, 0.12) inset,
    0 28px 60px rgba(20, 60, 140, 0.45),
    0 0 40px rgba(59, 158, 255, 0.15);
}
.price-card h3 {
  font-family: Orbitron, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue2);
  margin: 0 0 12px;
}
.price-amount {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.2rem;
  line-height: 0.9;
  margin: 0;
  color: #fff;
  letter-spacing: 0.02em;
}
.price-amount span {
  font-size: 0.45em;
  vertical-align: super;
  color: #7af0ff;
  margin-right: 2px;
}
.price-period {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 8px 0 20px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.price-card li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid rgba(90, 160, 255, 0.1);
}
.price-card li:first-child { border-top: 0; }
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #7af0ff;
  clip-path: polygon(40% 0, 100% 50%, 40% 100%, 0 70%, 25% 50%, 0 30%);
  box-shadow: 0 0 8px rgba(122, 240, 255, 0.8);
}
.price-card .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.price-card--popular {
  border-color: rgba(122, 240, 255, 0.55);
  background:
    linear-gradient(165deg, rgba(28, 70, 140, 0.55), rgba(8, 18, 40, 0.95));
  box-shadow:
    0 0 0 1px rgba(122, 240, 255, 0.15) inset,
    0 24px 60px rgba(30, 90, 200, 0.4),
    0 0 50px rgba(59, 158, 255, 0.2);
  transform: scale(1.03);
  z-index: 1;
}
.price-card--popular:hover {
  transform: scale(1.03) translateY(-6px);
}
.price-badge {
  position: absolute;
  top: -11px;
  right: 18px;
  font-family: Orbitron, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b9eff, #7af0ff);
  color: #041018;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(122, 240, 255, 0.55);
}
/* —— Modern Mockup Pricing Layout —— */
.price-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  width: 100%;
}
.price-card-header h3 {
  margin: 0 !important;
  font-family: Orbitron, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue2);
}
.price-pill-save {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: Orbitron, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  user-select: none;
}
.price-pill-save--red {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.6);
  border: 1px solid rgba(255, 180, 180, 0.4);
}
.price-pill-save--orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  box-shadow: 0 0 14px rgba(249, 115, 22, 0.6);
  border: 1px solid rgba(255, 200, 160, 0.4);
}
.price-pill-save--yellow {
  background: linear-gradient(135deg, #eab308, #ca8a04);
  color: #1a0f00;
  box-shadow: 0 0 14px rgba(234, 179, 8, 0.6);
  border: 1px solid rgba(255, 240, 160, 0.6);
}

.price-badge-top {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 14px;
  border-radius: 999px;
  font-family: Orbitron, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #1d6bf3, #00b4d8);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(0, 180, 216, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 2;
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 6px 0 0;
}
.price-old {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 3.5px;
  display: inline-block;
  letter-spacing: 0.02em;
}
.price-amount {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.4rem;
  line-height: 0.9;
  margin: 0;
  color: #fff;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
}
.price-amount span {
  font-size: 0.45em;
  color: #7af0ff;
  margin-right: 2px;
}
.price-period {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 6px 0 14px;
}

/* Discount box (coupon/tag style) */
.discount-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border-radius: 10px;
  font-family: Orbitron, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.discount-box--red {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
}
.discount-box--green {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.38);
  color: #4ade80;
}
.discount-box--yellow {
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.38);
  color: #facc15;
}

/* Features List with Blue Circular Checkmarks */
.price-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  flex: 1;
}
.price-features li {
  position: relative !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0 !important;
  color: rgba(220, 235, 255, 0.88) !important;
  font-size: 0.92rem !important;
  border-top: 1px solid rgba(90, 160, 255, 0.08) !important;
}
.price-features li::before {
  display: none !important;
}
.price-features li:first-child {
  border-top: 0 !important;
}
.check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1e88e5;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(30, 136, 229, 0.6);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-arr {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.btn-arrow:hover .btn-arr {
  transform: translateX(4px);
}

.price-card--life .price-amount {
  background: linear-gradient(180deg, #fff 30%, #7af0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .price-card--popular {
    transform: none;
  }
  .price-card--popular:hover {
    transform: translateY(-6px);
  }
}

.footer {
  border-top: 1px solid rgba(56, 140, 255, 0.15);
  padding: 48px clamp(18px, 5vw, 64px) 28px;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(120px, 0.7fr));
  gap: 36px 28px;
  align-items: start;
}
.footer-about { max-width: 380px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #7af0ff;
}
.footer-logo strong {
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  text-shadow: 0 0 12px rgba(122, 240, 255, 0.45);
}
.footer-bolt {
  width: 12px;
  height: 22px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(122, 240, 255, 0.85));
}
.footer-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a8eae;
  margin-bottom: 10px;
}
.footer-desc {
  color: #9aafcc;
  line-height: 1.55;
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.footer-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.footer-ico {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(122, 180, 255, 0.28);
  background: rgba(8, 14, 28, 0.55);
  color: #d7e6ff;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-ico:hover {
  border-color: rgba(122, 240, 255, 0.55);
  color: #7af0ff;
  background: rgba(20, 40, 70, 0.55);
}
.footer-ico svg { width: 18px; height: 18px; fill: currentColor; }
.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(168, 190, 255, 0.55);
  background: rgba(12, 18, 36, 0.35);
  color: #c8d4ff;
  font-family: Orbitron, "IBM Plex Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn-discord svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
.btn-discord:hover {
  border-color: #b8c8ff;
  color: #e8ecff;
  background: rgba(40, 50, 90, 0.35);
  box-shadow: 0 0 18px rgba(140, 160, 255, 0.18);
}
.btn-discord--hero {
  height: auto;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}
.footer-col h4 {
  color: #7af0ff;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: #d7e6ff;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #7af0ff; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(56, 140, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.8rem;
}
.footer-bottom .footer-we {
  color: #7af0ff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 8px rgba(122, 240, 255, 0.85),
    0 0 18px rgba(59, 158, 255, 0.5);
}
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px clamp(18px, 4vw, 32px) 64px;
}
.legal-page h1 {
  font-family: Orbitron, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  color: #7af0ff;
}
.legal-page .legal-lead {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.legal-page h2 {
  font-size: 1.05rem;
  margin: 28px 0 10px;
  color: var(--text);
}
.legal-page p, .legal-page li {
  color: #a8bad4;
  line-height: 1.6;
  margin-bottom: 10px;
}
.legal-page ul {
  padding-left: 1.2rem;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(12, 22, 42, 0.95);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 12px;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease);
  max-width: min(90vw, 420px);
  text-align: center;
  font-size: 0.9rem;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .hero-mark { display: none; }
  .hero-bolt {
    width: min(72px, 16vw);
    opacity: 0.35;
  }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .nav-toggle { display: inline-flex; }
  .nav-links, .nav-actions {
    display: none;
    width: 100%;
  }
  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
  }
  .nav {
    flex-wrap: wrap;
  }
}


/* —— Floating 3D Animated Electric Z on Right Mountain (Shifted Left & Feathered) —— */
.hero-floating-z {
  position: absolute;
  right: clamp(14%, 20vw, 26%);
  top: 58%;
  transform: translateY(-50%);
  z-index: 4;
  pointer-events: none;
  user-select: none;
  width: clamp(120px, 14vw, 195px);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 96%);
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 96%);
  animation: zFloatRight 5.2s ease-in-out infinite alternate;
}
.hero-floating-z img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 18px rgba(56, 189, 248, 0.85)) drop-shadow(0 0 40px rgba(14, 165, 233, 0.45));
}
@keyframes zFloatRight {
  0% { transform: translateY(-50%) rotate(0deg) scale(0.97); }
  50% { transform: translateY(-54%) rotate(1.5deg) scale(1.03); }
  100% { transform: translateY(-47%) rotate(-1deg) scale(1); }
}
@media (max-width: 1100px) {
  .hero-floating-z {
    opacity: 0.45;
    right: 8%;
    top: 60%;
    width: clamp(100px, 12vw, 150px);
  }
}
@media (max-width: 860px) {
  .hero-floating-z {
    display: none;
  }
}
