@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&family=Orbitron:wght@600;700;800&display=swap");

:root {
  --bg: #030712;
  --bg-2: #070b1a;
  --panel: rgba(10, 18, 40, 0.72);
  --line: rgba(100, 220, 255, 0.16);
  --text: #e8f4ff;
  --muted: #7f95b5;
  --cyan: #4deaff;
  --blue: #2f6bff;
  --magenta: #d94bff;
  --lime: #5dffb0;
  --ok: #5dffb0;
  --radius: 0;
  --wrap: 1160px;
  --font: "Exo 2", system-ui, sans-serif;
  --display: "Orbitron", sans-serif;
  --beam: linear-gradient(90deg, transparent, #4deaff, #2f6bff, #d94bff, #4deaff, transparent);
  --holo: linear-gradient(135deg, rgba(77, 234, 255, 0.18), rgba(47, 107, 255, 0.08) 40%, rgba(217, 75, 255, 0.16));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 3px,
    rgba(77, 234, 255, 0.4) 3px,
    rgba(77, 234, 255, 0.4) 4px
  );
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
}
p { margin: 0; color: var(--muted); }
.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }

/* Futuristic beam */
.rgb-bar {
  height: 2px;
  background: var(--beam);
  background-size: 200% 100%;
  animation: beamSlide 5s linear infinite;
  box-shadow: 0 0 16px rgba(77, 234, 255, 0.55);
}
@keyframes beamSlide {
  to { background-position: 200% 0; }
}

.topbar {
  background: rgba(3, 7, 18, 0.95);
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
}
.topbar .mono {
  color: var(--cyan);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(77, 234, 255, 0.4);
}
.topbar a {
  color: var(--lime);
  text-shadow: 0 0 10px rgba(93, 255, 176, 0.35);
}
.topbar a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 7, 18, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}
.logo {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
.logo span {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(77, 234, 255, 0.65);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a { color: var(--muted); position: relative; }
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(77, 234, 255, 0.45);
}
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.4rem;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
.nav-cta {
  padding: 0.55rem 1rem !important;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  background: linear-gradient(90deg, rgba(47, 107, 255, 0.35), rgba(77, 234, 255, 0.2)) !important;
  border: 1px solid rgba(77, 234, 255, 0.55) !important;
  color: #fff !important;
  text-shadow: none !important;
  box-shadow: 0 0 22px rgba(47, 107, 255, 0.3);
}
.nav-cta:hover {
  background: linear-gradient(90deg, #2f6bff, #4deaff) !important;
  color: #030712 !important;
}
.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--cyan);
  background: rgba(77, 234, 255, 0.06);
  padding: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 18px; height: 2px;
  margin: 4px auto;
  background: var(--cyan);
  transition: 0.2s;
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.5rem;
  font: 700 0.85rem/1 var(--font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s, background 0.2s;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #030712;
  background: linear-gradient(90deg, #4deaff, #2f6bff 50%, #d94bff);
  box-shadow: 0 0 28px rgba(77, 234, 255, 0.35), 0 0 48px rgba(47, 107, 255, 0.2);
}
.btn-primary:hover { filter: brightness(1.12); }
.btn-outline {
  color: var(--cyan);
  border-color: rgba(77, 234, 255, 0.55);
  background: rgba(77, 234, 255, 0.05);
  box-shadow: inset 0 0 20px rgba(77, 234, 255, 0.06), 0 0 18px rgba(77, 234, 255, 0.12);
}
.btn-outline:hover {
  color: #fff;
  border-color: var(--magenta);
  box-shadow: 0 0 24px rgba(217, 75, 255, 0.28);
}
.btn-ghost {
  color: var(--muted);
  background: transparent;
  border-color: transparent;
  clip-path: none;
  padding-inline: 0.5rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.btn-ghost:hover { color: var(--lime); }

/* Hero — deep-space HUD */
.hero {
  position: relative;
  min-height: min(94vh, 880px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 60% 50% at 78% 18%, rgba(47, 107, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 45% 40% at 12% 75%, rgba(77, 234, 255, 0.18), transparent 50%),
    radial-gradient(ellipse 35% 30% at 55% 55%, rgba(217, 75, 255, 0.14), transparent 55%),
    linear-gradient(180deg, #06102a 0%, var(--bg) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(77, 234, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(600px) rotateX(52deg) scale(1.6);
  transform-origin: center 120%;
  mask-image: linear-gradient(180deg, transparent, #000 35%, transparent 90%);
  animation: gridPulse 10s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.hero-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-fx .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
  animation: orbFloat 9s ease-in-out infinite;
}
.hero-fx .orb-a {
  width: 320px; height: 320px;
  top: 8%; right: 4%;
  background: rgba(47, 107, 255, 0.55);
}
.hero-fx .orb-b {
  width: 240px; height: 240px;
  bottom: 18%; left: 4%;
  background: rgba(77, 234, 255, 0.4);
  animation-delay: -3s;
}
.hero-fx .orb-c {
  width: 180px; height: 180px;
  top: 42%; left: 42%;
  background: rgba(217, 75, 255, 0.35);
  animation-delay: -5.5s;
}
.hero-fx .ring {
  position: absolute;
  top: 12%;
  right: 8%;
  width: min(42vw, 380px);
  aspect-ratio: 1;
  border: 1px solid rgba(77, 234, 255, 0.25);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(47, 107, 255, 0.12), 0 0 30px rgba(77, 234, 255, 0.1);
  animation: spinSlow 40s linear infinite;
}
.hero-fx .ring::before,
.hero-fx .ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(217, 75, 255, 0.3);
}
.hero-fx .ring::after {
  inset: 24%;
  border-style: solid;
  border-color: rgba(77, 234, 255, 0.18);
  animation: spinSlow 24s linear infinite reverse;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(16px, -20px) scale(1.06); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0 4.5rem;
  max-width: 740px;
}
.hud-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1.35rem;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  border: 1px solid rgba(77, 234, 255, 0.35);
  background: rgba(7, 14, 32, 0.7);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  box-shadow: 0 0 24px rgba(77, 234, 255, 0.12);
  animation: brandIn 0.7s ease-out both;
}
.hud-chip i {
  width: 7px; height: 7px;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
  50% { opacity: 0.3; }
}
.hero .brand {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 8.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  text-shadow:
    0 0 24px rgba(77, 234, 255, 0.45),
    0 0 60px rgba(47, 107, 255, 0.3);
  animation: brandIn 0.8s ease-out both;
}
.hero .brand span {
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(77, 234, 255, 0.8);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  max-width: 34ch;
  margin-bottom: 0.9rem;
  color: var(--lime);
  text-shadow: 0 0 18px rgba(93, 255, 176, 0.35);
  animation: brandIn 0.8s 0.1s ease-out both;
}
.hero p {
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 1.85rem;
  animation: brandIn 0.8s 0.18s ease-out both;
}
.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: brandIn 0.8s 0.26s ease-out both;
}
@keyframes brandIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.scoreboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: linear-gradient(90deg, #4deaff, #2f6bff, #d94bff);
  border-top: 1px solid rgba(77, 234, 255, 0.3);
}
.scoreboard div {
  background: rgba(7, 11, 26, 0.95);
  padding: 1.25rem 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.scoreboard strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(77, 234, 255, 0.45);
}
.scoreboard span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.section { padding: 5.25rem 0; }
.section-head { max-width: 40rem; margin-bottom: 2.6rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  text-shadow: 0 0 14px rgba(217, 75, 255, 0.4);
  margin-bottom: 0.7rem;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.5vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.page-hero {
  padding: 4.75rem 0 2.6rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(47, 107, 255, 0.28), transparent 55%),
    radial-gradient(ellipse 35% 55% at 0% 100%, rgba(77, 234, 255, 0.12), transparent 50%),
    var(--bg-2);
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.page-hero p { max-width: 48ch; font-size: 1.05rem; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.pillar {
  position: relative;
  padding: 1.5rem 1.35rem;
  background: var(--holo);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 18px; height: 18px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  box-shadow: 0 0 10px rgba(77, 234, 255, 0.4);
}
.pillar h3 {
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0.9rem 0 0.45rem;
}
.pillar .icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--cyan);
  border: 1px solid rgba(77, 234, 255, 0.4);
  background: rgba(77, 234, 255, 0.08);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  box-shadow: 0 0 18px rgba(77, 234, 255, 0.2);
}

.grid-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.plan {
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(8, 14, 32, 0.85);
  border: 1px solid var(--line);
  padding: 1.45rem 1.25rem 1.25rem;
  backdrop-filter: blur(12px);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}
.plan:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 234, 255, 0.55);
  box-shadow: 0 0 32px rgba(47, 107, 255, 0.2);
}
.plan.featured {
  border-color: rgba(77, 234, 255, 0.65);
  background:
    linear-gradient(180deg, rgba(47, 107, 255, 0.18), transparent 42%),
    rgba(8, 14, 32, 0.92);
  box-shadow: 0 0 40px rgba(77, 234, 255, 0.18), 0 20px 50px rgba(0, 0, 0, 0.4);
}
.plan.featured::after {
  content: "OPTIMAL";
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #030712;
  background: var(--lime);
  padding: 0.22rem 0.45rem;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  box-shadow: 0 0 14px rgba(93, 255, 176, 0.5);
}
.plan .kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}
.plan h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.plan .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0.4rem 0 0.5rem;
  text-shadow: 0 0 16px rgba(77, 234, 255, 0.25);
}
.plan .price span { font-size: 0.82rem; font-weight: 500; color: var(--muted); }
.plan .desc { font-size: 0.9rem; margin-bottom: 1rem; min-height: 2.6em; }
.plan .specs { flex: 1; margin-bottom: 1.15rem; }
.plan .specs li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.48rem 0;
  border-bottom: 1px solid rgba(77, 234, 255, 0.08);
  font-size: 0.88rem;
  color: var(--muted);
}
.plan .specs strong { color: var(--text); font-weight: 600; }
.plan .specs .feat {
  color: var(--lime);
  border-bottom: 0;
  justify-content: flex-start;
  padding-top: 0.8rem;
  text-shadow: 0 0 10px rgba(93, 255, 176, 0.3);
}
.plan .btn { width: 100%; margin-top: auto; }
.note { margin-top: 1.5rem; font-size: 0.88rem; }
.note a { color: var(--cyan); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1rem 0 0 1.1rem;
  border-left: 1px solid rgba(77, 234, 255, 0.35);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(77, 234, 255, 0.45);
  margin-bottom: 0.4rem;
}
.step h3 {
  font-family: var(--display);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.band {
  position: relative;
  background: rgba(7, 11, 26, 0.9);
  border-block: 1px solid var(--line);
  padding: 3.1rem 0;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, #4deaff, #2f6bff, #d94bff);
  box-shadow: 0 0 16px rgba(77, 234, 255, 0.5);
}
.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.band h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--cyan);
}

.prose { max-width: 42rem; }
.prose h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
  color: var(--cyan);
}
.prose p + p { margin-top: 0.9rem; }
.prose a { color: var(--magenta); text-decoration: underline; text-underline-offset: 3px; }
.feature-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.feature-list article {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.feature-list h3 { margin-bottom: 0.35rem; color: var(--lime); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
}
.panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.6rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 40px rgba(47, 107, 255, 0.08);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.panel h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.contact-lines { display: grid; gap: 1rem; }
.contact-lines strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.25rem;
}
.contact-lines a { color: var(--cyan); }
.contact-lines a:hover { color: var(--lime); }
form label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
form input,
form select,
form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(3, 7, 18, 0.85);
  color: var(--text);
  font: 500 0.95rem/1.4 var(--font);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
form textarea { min-height: 110px; resize: vertical; clip-path: none; }
form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(77, 234, 255, 0.2);
}
.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 400 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--muted);
}
.consent input { width: auto; margin-top: 0.2rem; clip-path: none; }
.consent a { color: var(--cyan); }

.cta {
  text-align: center;
  background:
    radial-gradient(ellipse 48% 70% at 50% 100%, rgba(47, 107, 255, 0.28), transparent 60%),
    radial-gradient(ellipse 35% 45% at 15% 0%, rgba(77, 234, 255, 0.1), transparent 50%),
    var(--bg);
}
.cta h2 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.5vw, 2.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.cta p { margin-bottom: 1.5rem; }
.cta .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.site-footer {
  position: relative;
  border-top: 1px solid var(--line);
  background: #02050e;
  padding: 3rem 0 1.5rem;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--beam);
  background-size: 200% auto;
  animation: beamSlide 5s linear infinite;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer .logo { font-size: 1.05rem; }
.site-footer p { margin-top: 0.75rem; font-size: 0.9rem; }
.site-footer h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.85rem;
}
.site-footer li { margin-bottom: 0.4rem; font-size: 0.92rem; color: var(--muted); }
.site-footer a:hover { color: var(--cyan); }
.foot-bot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.foot-bot a { color: var(--muted); }
.foot-bot a:hover { color: var(--lime); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* Use cases */
.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.use-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: rgba(8, 14, 32, 0.75);
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.use-card:hover {
  border-color: rgba(77, 234, 255, 0.5);
  box-shadow: 0 0 28px rgba(47, 107, 255, 0.15);
}
.use-card h3 {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--cyan);
}

/* Spec table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(8, 14, 32, 0.85);
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.table-wrap th,
.table-wrap td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(77, 234, 255, 0.08);
  font-size: 0.92rem;
}
.table-wrap th {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(47, 107, 255, 0.1);
}
.table-wrap td { color: var(--muted); }
.table-wrap td strong { color: var(--text); }
.table-wrap tr:last-child td { border-bottom: 0; }
.table-wrap tr:hover td { background: rgba(77, 234, 255, 0.04); }

/* FAQ */
.faq { display: grid; gap: 0.65rem; max-width: 760px; }
.faq details {
  border: 1px solid var(--line);
  background: rgba(8, 14, 32, 0.8);
  padding: 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  position: relative;
  padding-right: 2.5rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  font-size: 1.2rem;
}
.faq details[open] summary::after { content: "–"; }
.faq details[open] { border-color: rgba(77, 234, 255, 0.4); box-shadow: 0 0 24px rgba(47, 107, 255, 0.12); }
.faq details p {
  padding: 0 1.15rem 1.1rem;
  margin: 0;
  font-size: 0.95rem;
}

/* Network matrix */
.matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.matrix div {
  background: var(--bg-2);
  padding: 1.25rem 1.2rem;
}
.matrix strong {
  display: block;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.35rem;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

.form-status {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}
.form-status.ok {
  border-color: rgba(93, 255, 176, 0.45);
  color: var(--lime);
  background: rgba(93, 255, 176, 0.08);
}
.form-status.err {
  border-color: rgba(255, 80, 100, 0.45);
  color: #ff8a9a;
  background: rgba(255, 80, 100, 0.08);
}

/* 404 */
.err-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}
.err-wrap .code {
  font-family: var(--display);
  font-size: clamp(4rem, 18vw, 8rem);
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-shadow: 0 0 40px rgba(77, 234, 255, 0.45);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 980px) {
  .grid-plans { grid-template-columns: repeat(2, 1fr); }
  .scoreboard { grid-template-columns: repeat(2, 1fr); }
  .pillars, .steps, .band-grid, .foot-grid, .contact-grid, .use-grid, .matrix { grid-template-columns: 1fr 1fr; }
  .hero-fx .ring { opacity: 0.45; }
}
@media (max-width: 720px) {
  .burger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(3, 7, 18, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: 0.5rem; clip-path: none; }
  .grid-plans, .scoreboard, .pillars, .steps, .band-grid, .foot-grid, .contact-grid, .use-grid, .matrix { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 5rem; }
  .btn, .plan, .panel, .pillar, .use-card { clip-path: none; }
}
