/* ================= ZION by Malphes, malphes.ai ================= */
:root {
  --bg: #05060a; --ink: #f4f6fb; --dim: #9aa3b2; --line: rgba(255,255,255,0.08);
  --blue: #6ea8ff; --violet: #9d7bff; --teal: #45e0c0;
  --font: "Inter", system-ui, sans-serif;
  --display: "Space Grotesk", sans-serif;
  --serif: "Fraunces", Georgia, serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font: 16px/1.65 var(--font); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: rgba(110,168,255,0.35); }
a { color: inherit; }

.orb {
  width: 20px; height: 20px; border-radius: 50%; display: inline-block; flex: none;
  background: radial-gradient(circle at 35% 35%, #cfe0ff, #6ea8ff 45%, #0a0e18 75%);
  box-shadow: 0 0 14px rgba(110,168,255,0.7), inset 0 0 5px rgba(255,255,255,0.6);
}

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid transparent; transition: background 0.35s, border-color 0.35s;
}
.nav.scrolled { background: rgba(5,6,10,0.78); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-color: var(--line); }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; letter-spacing: 0.3em; font-size: 15px; text-decoration: none; }
.brand small { font-family: var(--font); font-weight: 500; letter-spacing: 0.02em; font-size: 11.5px; color: var(--dim); margin-left: 2px; }
.links { display: flex; gap: clamp(14px, 3vw, 32px); }
.links a { color: var(--dim); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.25s; }
.links a:hover { color: var(--ink); }
.cta {
  background: var(--ink); color: #0a0c10; text-decoration: none; font-weight: 600; font-size: 13px;
  padding: 10px 18px; border-radius: 999px; white-space: nowrap;
  transition: box-shadow 0.25s;
}
.cta:hover { box-shadow: 0 8px 32px rgba(150,180,255,0.4); }
@media (max-width: 760px) { .links { display: none; } }
@media (max-width: 560px) {
  .nav { flex-wrap: wrap; row-gap: 10px; padding-top: 12px; padding-bottom: 12px; }
  .cta { margin-left: auto; font-size: 12px; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 140px 24px 60px; overflow: hidden; }
.halo { position: absolute; width: 130vmin; height: 130vmin; border-radius: 50%; top: -30vmin; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(110,168,255,0.22), rgba(157,123,255,0.12) 40%, transparent 65%); filter: blur(50px); pointer-events: none;
  animation: haloPulse 9s ease-in-out infinite alternate; }
@keyframes haloPulse { to { transform: translateX(-50%) scale(1.12); opacity: 0.8; } }
.overline { font-size: 12px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim); }
.hero h1 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(88px, 18vw, 200px); line-height: 0.95; margin: 18px 0 26px;
  font-variation-settings: "opsz" 144, "WONK" 0;
  background: linear-gradient(170deg, #ffffff 30%, #b9c8e8 60%, #7d95c9); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .sub { max-width: 560px; color: var(--dim); font-size: clamp(16px, 2vw, 19px); }
.pilot-chip {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 28px;
  border: 1px solid rgba(255,190,70,0.35); background: rgba(255,190,70,0.08); color: #ffd98a;
  border-radius: 999px; padding: 9px 18px; font: 600 12px/1 var(--font); letter-spacing: 0.08em; text-transform: uppercase;
}
.pilot-chip i { width: 7px; height: 7px; border-radius: 50%; background: #ffbe46; animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity: 0.25; } }
.ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.btn { display: inline-flex; align-items: center; padding: 14px 28px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 15px; transition: box-shadow 0.25s, border-color 0.25s; }
.btn.primary { background: var(--ink); color: #0a0c10; }
.btn.primary:hover { box-shadow: 0 10px 40px rgba(150,180,255,0.4); }
.btn.ghost { color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,0.03); }
.btn.ghost:hover { border-color: rgba(255,255,255,0.28); }

/* ---------- metrics band ---------- */
.band {
  max-width: 1100px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
}
.metric { background: #090b12; padding: 26px 24px; }
.metric b { display: block; font-family: var(--display); font-size: 34px; font-weight: 700; }
.metric span { color: var(--dim); font-size: 13px; }

/* ---------- sections ---------- */
.section { max-width: 1100px; margin: 0 auto; padding: clamp(80px, 11vh, 130px) clamp(20px, 5vw, 56px) 0; }
.section h2 {
  font-family: var(--serif); font-weight: 550; font-size: clamp(34px, 5vw, 56px); line-height: 1.08; margin: 8px 0 14px;
  font-variation-settings: "opsz" 100, "WONK" 0;
}
.lede { color: var(--dim); font-size: clamp(16px, 2vw, 18.5px); max-width: 620px; }

.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 44px; }
.vid { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: #0a0d15; }
.vid video { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.vid figcaption { padding: 16px 18px 18px; }
.vid figcaption b { font-family: var(--display); font-size: 15.5px; display: block; margin-bottom: 3px; }
.vid figcaption span { color: var(--dim); font-size: 13.5px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin-top: 44px; }
.card {
  border: 1px solid var(--line); border-radius: 20px; padding: 30px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.032), rgba(255,255,255,0.01));
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(150,180,255,0.35); }
.card .tag { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); }
.card h3 { font-family: var(--display); font-size: 20px; margin: 10px 0 10px; }
.card p { color: var(--dim); font-size: 14.5px; }

.pilot-panel {
  text-align: center; border: 1px solid var(--line); border-radius: 26px; padding: clamp(46px, 7vw, 80px) 28px;
  background: radial-gradient(80% 120% at 50% 0%, rgba(110,168,255,0.13), transparent 60%), #090b12;
}
.pilot-panel .lede { margin: 0 auto 30px; }

/* ---------- footer ---------- */
.footer { max-width: 1100px; margin: 90px auto 0; padding: 46px clamp(20px, 5vw, 56px) 40px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 26px; flex-wrap: wrap; align-items: flex-start; }
.fbrand { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; letter-spacing: 0.3em; font-size: 14px; }
.ftag { color: var(--dim); font-size: 13px; margin-top: 8px; }
.flinks { display: flex; gap: 22px; flex-wrap: wrap; }
.flinks a { color: var(--dim); text-decoration: none; font-size: 14px; }
.flinks a:hover { color: var(--ink); }
.legal { width: 100%; color: #5b6472; font-size: 12.5px; margin-top: 10px; }
@media (prefers-reduced-motion: reduce) { .halo, .pilot-chip i { animation: none !important; } }
