:root {
  --bg: #09090b;
  --surface: #111114;
  --surface-2: #17171b;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --line: rgba(255,255,255,.1);
  --accent: #8b5cf6;
  --accent-2: #5eead4;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(120px);
  opacity: .14;
  pointer-events: none;
  z-index: -1;
}
.ambient-one { width: 420px; height: 420px; background: var(--accent); top: -180px; right: -80px; }
.ambient-two { width: 320px; height: 320px; background: var(--accent-2); top: 52%; left: -180px; opacity: .08; }

.site-header, footer, .section {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.logo { font-weight: 700; letter-spacing: -.04em; font-size: 22px; }
.logo span { color: var(--accent-2); }
nav { display: flex; align-items: center; gap: 30px; color: var(--muted); font-size: 14px; }
nav a:hover { color: var(--text); }
.nav-cta { border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; }

.section { padding: 120px 0; }
.hero { min-height: 720px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow, .kicker { color: var(--muted); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 600; }
.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); margin-right: 10px; box-shadow: 0 0 20px var(--accent-2); }
h1 { margin: 28px 0 24px; font-size: clamp(58px, 9vw, 126px); line-height: .92; letter-spacing: -.07em; max-width: 1100px; }
h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.55); }
.hero-copy { max-width: 650px; color: var(--muted); font-size: clamp(18px, 2vw, 23px); }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 22px; font-weight: 600; font-size: 14px; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #09090b; background: var(--text); }
.button-primary:hover { background: white; }
.button-secondary { border: 1px solid var(--line); color: var(--muted); }
.button-secondary:hover { border-color: rgba(255,255,255,.28); color: var(--text); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 720px; margin-top: 90px; border-top: 1px solid var(--line); }
.hero-proof div { padding: 22px 20px 0 0; display: flex; flex-direction: column; }
.hero-proof strong { font-size: 14px; }
.hero-proof span { color: var(--muted); font-size: 13px; margin-top: 5px; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); padding: 18px 0; }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; animation: ticker 30s linear infinite; }
.ticker i { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; margin-bottom: 70px; }
.section-heading h2 { margin: 0; font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -.055em; }
.section-heading > p:last-child { color: var(--muted); max-width: 380px; align-self: end; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.card { min-height: 310px; padding: 34px; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; display: flex; flex-direction: column; transition: border-color .25s ease, transform .25s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.2); }
.card-featured { background: linear-gradient(145deg, rgba(139,92,246,.16), rgba(17,17,20,.85)); }
.card-index { color: var(--muted); font-size: 12px; }
.card h3 { margin: auto 0 12px; font-size: 30px; letter-spacing: -.04em; }
.card p { color: var(--muted); max-width: 500px; margin: 0; }
.mini-flow { display: flex; gap: 10px; align-items: center; margin-top: 25px; flex-wrap: wrap; color: var(--muted); font-size: 12px; }
.mini-flow span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.025); }
.mini-flow b { color: var(--accent-2); }

.approach { border-top: 1px solid var(--line); }
.principles { border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.principle > span { color: var(--accent-2); font-size: 13px; }
.principle h3 { margin: 0 0 8px; font-size: 24px; letter-spacing: -.03em; }
.principle p { margin: 0; color: var(--muted); max-width: 680px; }

.manifesto { padding-top: 70px; padding-bottom: 140px; }
.manifesto > p { color: var(--accent-2); text-transform: uppercase; letter-spacing: .15em; font-size: 12px; }
blockquote { margin: 22px 0 0; max-width: 980px; font-size: clamp(42px, 6vw, 84px); line-height: 1.05; letter-spacing: -.055em; }

.contact { border-top: 1px solid var(--line); padding-bottom: 80px; }
.contact h2 { font-size: clamp(42px, 6vw, 78px); line-height: 1; letter-spacing: -.055em; }
.button-large { padding: 18px 24px; font-size: 16px; gap: 30px; }
.contact-note { color: var(--muted); font-size: 13px; margin-top: 28px; }

footer { min-height: 120px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; color: var(--muted); font-size: 13px; }
footer .logo { color: var(--text); }
footer p:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

@media (max-width: 760px) {
  .site-header { height: 70px; }
  nav a:not(.nav-cta) { display: none; }
  .section { padding: 80px 0; }
  .hero { min-height: 650px; }
  h1 { font-size: clamp(54px, 17vw, 84px); }
  .hero-proof { grid-template-columns: 1fr; margin-top: 60px; }
  .hero-proof div { border-bottom: 1px solid var(--line); padding: 16px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 260px; padding: 26px; }
  .principle { grid-template-columns: 48px 1fr; }
  footer { grid-template-columns: 1fr; padding: 32px 0; gap: 8px; }
  footer p { margin: 0; }
  footer p:last-child { text-align: left; }
}
