
:root {
  --bg: #020305;
  --panel: #0a0d12;
  --panel-2: #111722;
  --text: #f6f7f9;
  --muted: #a8b1c1;
  --line: rgba(220,230,245,.16);
  --blue: #0077ff;
  --blue-2: #00a7ff;
  --blue-3: #003a7a;
  --silver: #d8dde5;
  --steel: #8d96a3;
  --max: 1180px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,119,255,.18), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(0,167,255,.10), transparent 28%),
    linear-gradient(180deg, #05070a 0%, #020305 55%, #000 100%);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: .28;
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2,3,5,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-logo img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(0,119,255,.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text span:first-child {
  color: var(--silver);
  text-shadow: 0 1px 0 #fff, 0 0 18px rgba(255,255,255,.15);
}

.brand-text span:last-child {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: .20em;
  margin-top: 5px;
}

.menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
  color: var(--muted);
}

.menu a {
  transition: color .2s ease, text-shadow .2s ease;
}

.menu a:hover {
  color: var(--blue-2);
  text-shadow: 0 0 16px rgba(0,167,255,.55);
}

.hero {
  padding: 82px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero-branded {
  border-bottom: 1px solid var(--line);
}

.hero-bg-mark {
  position: absolute;
  right: -120px;
  top: 30px;
  width: 500px;
  height: 500px;
  background: url("apex-icon.png") center/cover no-repeat;
  opacity: .07;
  filter: blur(.2px);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
}

.hero-brand-panel {
  border: 1px solid rgba(216,221,229,.20);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(0,119,255,.05)),
    #05070a;
  box-shadow:
    0 28px 70px rgba(0,0,0,.55),
    0 0 55px rgba(0,119,255,.16),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.hero-banner {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow: 0 0 18px rgba(0,119,255,.45);
}

h1 {
  font-size: clamp(44px, 6.8vw, 80px);
  line-height: .94;
  margin: 0 0 22px;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: var(--silver);
  text-shadow:
    0 1px 0 #fff,
    0 18px 40px rgba(0,0,0,.65),
    0 0 32px rgba(255,255,255,.12);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.035em;
  color: var(--silver);
}

h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--text);
}

.lead {
  color: var(--silver);
  font-size: clamp(18px, 2vw, 23px);
  max-width: 760px;
  margin-bottom: 30px;
}

.buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 13px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue-3), var(--blue), var(--blue-2));
  color: white;
  border: 1px solid rgba(0,167,255,.75);
  box-shadow: 0 0 28px rgba(0,119,255,.35);
}

.btn.secondary {
  background: rgba(255,255,255,.045);
  color: var(--silver);
  border: 1px solid rgba(216,221,229,.20);
}

.section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid.two { grid-template-columns: repeat(2, 1fr); }

.card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    linear-gradient(145deg, rgba(0,119,255,.07), transparent 50%);
  border: 1px solid rgba(216,221,229,.16);
  border-radius: 22px;
  padding: 26px;
  min-height: 190px;
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}

.card p, .section p, li { color: var(--muted); }
.card strong { color: var(--text); }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.panel {
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(0,119,255,.07)),
    var(--panel);
  border: 1px solid rgba(216,221,229,.18);
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

.method-panel {
  position: relative;
  overflow: hidden;
}

.panel-icon {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 0 28px rgba(0,119,255,.25);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.stat {
  padding: 20px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    rgba(0,0,0,.24);
  border: 1px solid rgba(216,221,229,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.stat b {
  font-size: 26px;
  display: block;
  color: var(--blue);
  text-shadow: 0 0 18px rgba(0,119,255,.55);
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.list {
  padding-left: 20px;
  margin-top: 18px;
}

.cta {
  background:
    linear-gradient(135deg, rgba(0,119,255,.20), rgba(255,255,255,.055)),
    #05070a;
  border: 1px solid rgba(216,221,229,.18);
  border-radius: 30px;
  padding: 42px;
  text-align: center;
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
}

.footer {
  padding: 34px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
  background: #000;
}

.disclaimer {
  font-size: 13px;
  color: #9099aa;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-inner, .split { display: block; }
  .menu { justify-content: flex-start; margin-top: 16px; }
  .grid, .grid.two, .stat-row { grid-template-columns: 1fr; }
  .hero { padding: 58px 0 48px; }
  .brand-logo img { width: 48px; height: 48px; }
  .hero-bg-mark { width: 340px; height: 340px; right: -160px; }
}
