:root {
  --bg: #070709;
  --bg-soft: #0d0d12;
  --panel: rgba(255,255,255,0.055);
  --panel-strong: rgba(255,255,255,0.09);
  --text: #f2f2f5;
  --muted: #a9a9b8;
  --line: rgba(255,255,255,0.16);
  --accent: #8b8cff;
  --accent-2: #bda8ff;
  --warm: #d8c690;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 70% 10%, rgba(139,140,255,0.17), transparent 28%),
              radial-gradient(circle at 15% 0%, rgba(189,168,255,0.12), transparent 24%),
              var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.12;
  z-index: 100;
  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='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(22px, 5vw, 64px);
  background: rgba(7,7,9,0.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 18px;
}
.brand span { color: var(--accent); }
.nav { display: flex; gap: 24px; color: var(--muted); font-size: 14px; }
.nav a:hover { color: var(--text); }

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 0;
}
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
}
.hero-orb {
  position: absolute;
  right: -14vw;
  top: 14vh;
  width: min(58vw, 660px);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(139,140,255,0.35), transparent 12%),
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.12), transparent 6%),
    repeating-conic-gradient(from 20deg, rgba(255,255,255,0.07) 0deg 3deg, transparent 3deg 14deg);
  filter: blur(0.2px);
  opacity: 0.75;
}
.kicker {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
h1, h2, h3 { font-family: "Space Grotesk", Inter, sans-serif; margin: 0; letter-spacing: -0.04em; }
h1 {
  font-size: clamp(72px, 15vw, 180px);
  line-height: 0.82;
  max-width: 900px;
}
h2 {
  font-size: clamp(36px, 5.5vw, 74px);
  line-height: 0.95;
}
h3 { font-size: 24px; line-height: 1.05; }
.claim {
  margin: 30px 0 12px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(28px, 4.6vw, 62px);
  line-height: 1;
  color: var(--text);
}
.hero-copy {
  max-width: 620px;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--muted);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--line);
}
.button.primary { background: var(--text); color: #070709; border-color: var(--text); }
.button.ghost { color: var(--text); background: rgba(255,255,255,0.04); }
.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 70px;
  color: var(--muted);
}
.status-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.035);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}
.copy-block {
  font-size: clamp(18px, 2.1vw, 24px);
  color: var(--muted);
}
.copy-block p { margin-top: 0; }
.copy-block strong { color: var(--text); }

.hook-panel {
  width: min(1240px, calc(100% - 44px));
  border: 1px solid rgba(139,140,255,0.28);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(139,140,255,0.16), rgba(255,255,255,0.035));
  padding: clamp(42px, 8vw, 96px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.4);
}
.panel-label {
  color: var(--warm);
  margin-bottom: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}
.hook-panel p, .relevance p, .ecosystem p, .status p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 26px);
}

.section-heading { max-width: 900px; margin-bottom: 38px; }
.cards {
  display: grid;
  gap: 16px;
}
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}
.card-number {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 44px;
}
.card p { color: var(--muted); }

.relevance {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tag-grid, .ecosystem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.tag-grid span, .ecosystem-grid span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.timeline article {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 260px;
}
.timeline article:first-child { border-left: 1px solid var(--line); }
.timeline span {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}
.timeline h3 { margin: 18px 0; }
.timeline p { color: var(--muted); }

.ecosystem {
  background: radial-gradient(circle at 25% 20%, rgba(139,140,255,0.11), transparent 28%);
}
.status {
  padding-top: 40px;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 42px;
  align-items: start;
}
.contact-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
}
.contact-card p { color: var(--muted); font-size: 18px; }
.contact-card .button { margin: 18px 0; }
.fineprint { font-size: 12px !important; opacity: 0.7; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-orb { opacity: 0.45; right: -42vw; }
  .split, .contact { grid-template-columns: 1fr; }
  .cards.four, .timeline { grid-template-columns: 1fr; }
  .timeline article, .timeline article:first-child { border-left: 1px solid var(--line); }
}

.lang-link {
  color: var(--text) !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
