:root {
  --bg: #070707;
  --fg: #f4f4f0;
  --muted: #969696;
  --line: rgba(255,255,255,.12);
  --panel: rgba(255,255,255,.035);
  --accent: #d6ff35;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--fg);
  background: var(--bg);
  font-family: "Space Grotesk", system-ui, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(214,255,53,.08), transparent 68%);
  left: 50%;
  top: 45%;
}

.topbar,
.footer,
.hero {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.topbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: baseline; gap: 12px; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--fg);
  font-weight: 700;
  font-family: "Syne", sans-serif;
}
.brand-dot { color: var(--accent); }
.brand-name {
  font: 700 14px/1 "Syne", sans-serif;
  letter-spacing: .18em;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .14em;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(214,255,53,.6);
  animation: pulse 2s infinite;
}

.hero {
  min-height: calc(100vh - 180px);
  padding: 10vh 0 7vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: var(--accent);
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: .24em;
  margin-bottom: 30px;
}

.headline {
  margin: 0;
  font: 800 clamp(64px, 11vw, 180px)/.78 "Syne", sans-serif;
  letter-spacing: -.065em;
  text-transform: uppercase;
  max-width: 1300px;
}
.headline span { display: block; }
.headline .outline {
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(244,244,240,.72);
}

.hero-grid {
  margin-top: clamp(44px, 6vw, 86px);
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr);
  gap: clamp(40px, 8vw, 140px);
  align-items: end;
}

.lead {
  margin: 0;
  max-width: 760px;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -.03em;
}
#rotating-word {
  color: var(--accent);
  display: inline-block;
  transition: opacity .22s ease, transform .22s ease;
}
#rotating-word.swap { opacity: 0; transform: translateY(8px); }

.meta-card {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 12px;
}
.meta-label { letter-spacing: .16em; }
.meta-value {
  margin: 10px 0 16px;
  color: var(--fg);
  font: 600 19px/1.2 "Syne", sans-serif;
}
.progress {
  position: relative;
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,.09);
  overflow: hidden;
}
.progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 36%;
  background: var(--accent);
  animation: loading 3.4s ease-in-out infinite alternate;
}
.meta-foot { margin-top: 12px; }

.capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 48px;
}
.capabilities span {
  border: 1px solid var(--line);
  padding: 9px 12px;
  border-radius: 999px;
  color: #bdbdbd;
  font-size: 10px;
  letter-spacing: .14em;
  transition: .2s ease;
}
.capabilities span:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer {
  min-height: 88px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
}
.footer-links { display: flex; gap: 24px; }
.footer a { transition: color .2s ease; }
.footer a:hover { color: var(--accent); }

.reveal { opacity: 0; transform: translateY(18px); animation: reveal .8s cubic-bezier(.2,.8,.2,1) forwards; }
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .18s; }
.delay-3 { animation-delay: .3s; }

@keyframes reveal { to { opacity: 1; transform: none; } }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(214,255,53,0); } 100% { box-shadow: 0 0 0 0 rgba(214,255,53,0); } }
@keyframes loading { from { width: 22%; } to { width: 64%; } }

/* Privacy */
.privacy-page .topbar { position: sticky; top: 0; z-index: 20; background: rgba(7,7,7,.82); backdrop-filter: blur(18px); }
.privacy-wrap {
  width: min(calc(100% - 48px), 1050px);
  margin-inline: auto;
  padding: 10vh 0 12vh;
}
.privacy-kicker { color: var(--accent); letter-spacing: .18em; font-size: 11px; }
.privacy-title {
  margin: 18px 0 24px;
  font: 800 clamp(48px, 8vw, 110px)/.9 "Syne", sans-serif;
  letter-spacing: -.055em;
}
.privacy-intro { max-width: 760px; color: #c7c7c7; font-size: 19px; line-height: 1.55; }
.legal-warning {
  margin: 36px 0 58px;
  padding: 18px 20px;
  border: 1px solid rgba(214,255,53,.3);
  background: rgba(214,255,53,.04);
  color: #d9e6a2;
  line-height: 1.55;
  font-size: 13px;
}
.privacy-section { padding: 30px 0; border-top: 1px solid var(--line); }
.privacy-section h2 { margin: 0 0 14px; font: 650 24px/1.15 "Syne", sans-serif; }
.privacy-section p, .privacy-section li { color: #aaa; line-height: 1.75; }
.privacy-section ul { padding-left: 19px; }
.placeholder { color: var(--accent); font-weight: 600; }
.back-link { display: inline-flex; gap: 10px; align-items: center; color: var(--muted); font-size: 12px; letter-spacing: .1em; }
.back-link:hover { color: var(--accent); }

@media (max-width: 760px) {
  .topbar,.footer,.hero { width: min(calc(100% - 28px), var(--max)); }
  .topbar { min-height: 74px; }
  .hero { padding-top: 9vh; }
  .headline { font-size: clamp(54px, 17vw, 92px); }
  .hero-grid { grid-template-columns: 1fr; }
  .footer { padding: 22px 0; align-items: flex-start; flex-direction: column; }
  .footer-links { flex-direction: column; gap: 12px; }
  .status { font-size: 9px; }
  .privacy-wrap { width: min(calc(100% - 28px), 1050px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
