:root {
  --bg: #000000;
  --bg-elev: #07090e;
  --bg-card: linear-gradient(160deg, #12151c 0%, #0a0c11 55%, #050608 100%);
  --line: rgba(180, 200, 220, 0.14);
  --line-hot: rgba(56, 160, 255, 0.55);
  --text: #e8edf4;
  --muted: #8b95a5;
  --metal: #c5ccd6;
  --metal-bright: #eef2f7;
  --accent: #1e90ff;
  --accent-2: #4eb3ff;
  --accent-hot: #7ad0ff;
  --good: #4eb3ff;
  --danger: #ff6b7a;
  --max: 1080px;
  --radius: 18px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --glow: 0 0 24px rgba(30, 144, 255, 0.35), 0 0 60px rgba(30, 144, 255, 0.18);
  --metal-face: linear-gradient(180deg, #d8dee8 0%, #9aa3b0 42%, #6f7886 100%);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(900px 520px at 85% 12%, rgba(30,144,255,0.14), transparent 55%),
    radial-gradient(800px 480px at 10% 80%, rgba(30,144,255,0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--accent-hot); text-decoration: none; }
.wrap { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; }

.mesh { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.mesh span {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18;
  animation: meshDrift 18s ease-in-out infinite alternate;
}
.mesh span:nth-child(1) { width: 48vmax; height: 48vmax; background: #1e90ff; top: -18%; right: -12%; }
.mesh span:nth-child(2) { width: 36vmax; height: 36vmax; background: #4eb3ff; bottom: -20%; left: -10%; opacity: 0.12; animation-duration: 24s; }
.mesh span:nth-child(3) { width: 22vmax; height: 22vmax; background: #7ad0ff; top: 42%; left: 40%; opacity: 0.08; animation-duration: 20s; animation-delay: -6s; }
@keyframes meshDrift {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(3%, -4%, 0) scale(1.06); }
}

.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(0,0,0,0.72);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(30,144,255,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.95rem 0; gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--metal-bright); text-decoration: none; font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.brand:hover { text-decoration: none; color: #fff; }
.mark {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--glow), inset 0 0 0 1px rgba(122,208,255,0.35);
}
.mark.mark-img { padding: 0; overflow: hidden; background: #000; }
.mark.mark-img {
  width: 34px; height: 34px; flex: 0 0 34px;
  aspect-ratio: 1 / 1;
}
.mark.mark-img img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  border-radius: 50%; aspect-ratio: 1 / 1;
}
.nav-links { display: flex; gap: 1.1rem; flex-wrap: wrap; align-items: center; }
.nav-links a { color: var(--muted); font-size: 0.95rem; letter-spacing: 0.02em; }
.nav-links a:hover { color: var(--metal-bright); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.72rem 1.2rem; border-radius: 999px; font-weight: 700;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  font: inherit; color: inherit; background: none;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}
.btn:hover { text-decoration: none; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-primary {
  color: #f4f7fb;
  background: linear-gradient(180deg, #5a6578 0%, #2c3442 48%, #171c26 100%);
  border: 1px solid rgba(180,210,240,0.55);
  box-shadow:
    0 0 0 1px rgba(30,144,255,0.35),
    0 8px 28px rgba(30,144,255,0.32),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -2px 8px rgba(0,0,0,0.45);
  text-shadow: 0 1px 2px rgba(0,0,0,0.65);
}
.btn-primary:hover {
  transform: translateY(-1px);
  color: #ffffff;
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(74,179,255,0.7),
    0 12px 36px rgba(30,144,255,0.48),
    inset 0 1px 0 rgba(255,255,255,0.28);
}
.btn-ghost {
  color: var(--metal);
  background: rgba(255,255,255,0.02);
  border-color: rgba(30,144,255,0.35);
  box-shadow: inset 0 0 20px rgba(30,144,255,0.05);
}
.btn-ghost:hover {
  color: #fff;
  border-color: var(--accent-hot);
  box-shadow: 0 0 24px rgba(30,144,255,0.2);
}

.hero { padding: 5.5rem 0 3.2rem; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
  gap: 2rem 2.5rem;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-visual {
  display: flex; flex-direction: column; gap: 0.85rem;
  justify-content: center; align-items: center; position: relative;
}
.logo-orb {
  width: min(100%, 400px); aspect-ratio: 1; position: relative;
  filter: drop-shadow(0 0 28px rgba(30,144,255,0.45)) drop-shadow(0 18px 40px rgba(0,0,0,0.65));
  transform-style: preserve-3d; transition: transform 0.15s ease-out;
}
.logo-orb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; border-radius: 50%;
  aspect-ratio: 1 / 1;
}
.logo-caption {
  margin: 0;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(197,204,214,0.75);
  text-align: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .logo-orb { width: min(72vw, 280px); }
  .hero { padding-top: 3.5rem; }
}

.eyebrow {
  display: inline-flex; gap: 0.45rem; align-items: center;
  color: var(--accent-2); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.pill-live {
  display: inline-flex; align-items: center; gap: 0.45rem;
  border: 1px solid rgba(30,144,255,0.45);
  background: linear-gradient(180deg, rgba(30,144,255,0.16), rgba(30,144,255,0.04));
  color: var(--accent-hot);
  padding: 0.28rem 0.7rem; border-radius: 999px; font-size: 0.78rem; font-weight: 650;
  box-shadow: 0 0 18px rgba(30,144,255,0.15);
}
.pill-live i {
  width: 7px; height: 7px; border-radius: 50%; background: #4eb3ff;
  box-shadow: 0 0 0 0 rgba(30,144,255,0.7);
  animation: live 1.6s ease-out infinite;
}
@keyframes live {
  0% { box-shadow: 0 0 0 0 rgba(30,144,255,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(30,144,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,144,255,0); }
}
.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  line-height: 1.08; margin: 0.85rem 0 1rem; max-width: 12ch;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffffff 10%, #c5ccd6 70%, #8b95a5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 24px rgba(30,144,255,0.15));
}
.lead {
  color: var(--muted); font-size: 1.15rem; max-width: 28ch; margin: 0 0 1.75rem;
}
.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-copy > * { animation: riseIn 0.7s ease both; }
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.2s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.28s; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}


.grid-3 {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  padding: 1rem 0 3.5rem;
}
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem 1.4rem;
  position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(180px 120px at 90% 0%, rgba(30,144,255,0.18), transparent 70%);
  opacity: 0.55; pointer-events: none;
}
.card::after {
  content: ""; position: absolute; inset: auto -30% -50% auto; width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(74,179,255,0.28), transparent 70%);
  opacity: 0; transition: opacity 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-hot);
  box-shadow: var(--glow), 0 18px 40px rgba(0,0,0,0.45);
}
.card:hover::after { opacity: 1; }
.card h3 {
  margin: 0.35rem 0 0.55rem; font-size: 1.15rem;
  color: var(--metal-bright);
  position: relative;
}
.card p { margin: 0; color: var(--muted); font-size: 0.98rem; position: relative; }
.icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; position: relative;
  background: linear-gradient(160deg, rgba(30,144,255,0.22), rgba(255,255,255,0.04));
  color: var(--accent-hot); font-size: 1.1rem;
  border: 1px solid rgba(30,144,255,0.35);
  box-shadow: 0 0 16px rgba(30,144,255,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover .icon {
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 0 0 22px rgba(30,144,255,0.35);
}

.section { padding: 1.5rem 0 3.5rem; }
.section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em; margin: 0 0 0.6rem;
  color: var(--metal-bright);
}
.section .sub { color: var(--muted); max-width: 55ch; margin: 0 0 1.5rem; }
.manifesto {
  margin: 0.5rem auto 0;
  max-width: 18ch;
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 650;
  background: linear-gradient(180deg, #fff, #9aa3b0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 30px rgba(30,144,255,0.2));
}

.panel {
  background: linear-gradient(165deg, #10131a 0%, #07090e 100%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 0 40px rgba(30,144,255,0.06);
  position: relative;
}
.panel::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(30,144,255,0.45), transparent 40%, rgba(122,208,255,0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; opacity: 0.7;
}

.form { display: grid; gap: 0.9rem; margin-top: 1rem; max-width: 520px; position: relative; }
.form label { display: grid; gap: 0.35rem; font-size: 0.92rem; color: var(--muted); }
.form input, .form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #05070b;
  color: var(--text);
  padding: 0.75rem 0.9rem;
  font: inherit;
  box-shadow: inset 0 0 0 1px rgba(30,144,255,0.05);
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: rgba(74,179,255,0.65);
  box-shadow: 0 0 0 3px rgba(30,144,255,0.18), var(--glow);
}
.form textarea { min-height: 120px; resize: vertical; }
.hp {
  position: absolute !important; left: -10000px !important;
  width: 1px !important; height: 1px !important; overflow: hidden !important;
  opacity: 0 !important; pointer-events: none !important;
}
.form-status { min-height: 1.4em; font-size: 0.92rem; color: var(--muted); }
.form-status.ok { color: var(--accent-hot); }
.form-status.err { color: var(--danger); }
.turnstile-slot { min-height: 0; }

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem; color: var(--muted); font-size: 0.92rem;
  background: linear-gradient(180deg, transparent, rgba(30,144,255,0.04));
}
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--accent-hot); }

.legal { padding: 3.5rem 0 4rem; }
.legal h1 { margin: 0 0 0.5rem; font-size: 2rem; letter-spacing: -0.02em; color: var(--metal-bright); }
.legal .meta { color: var(--muted); margin-bottom: 1.75rem; }
.legal h2 { margin: 1.8rem 0 0.5rem; font-size: 1.15rem; color: var(--metal); }
.legal p, .legal li { color: var(--muted); }

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

@media (prefers-reduced-motion: reduce) {
  .mesh span, .pill-live i, .hero-copy > * { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .card:hover, .btn-primary:hover { transform: none; }
}
