@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #07090c;
  --panel: #0d1015;
  --panel-2: #11151b;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.18);
  --text: #f6f7f8;
  --muted: #989fa9;
  --orange: #ff6a00;
  --orange-2: #ff8a1f;
  --orange-soft: rgba(255,106,0,.14);
  --green: #6be585;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 10%, rgba(255,106,0,.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--orange); color: #080808; }

.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .025; z-index: 50;
  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='.9'/%3E%3C/svg%3E");
}

.site-header {
  width: min(calc(100% - 48px), var(--max));
  height: 82px;
  margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 20;
}
.brand { display:flex; align-items:center; gap:12px; font-weight:900; letter-spacing:.08em; font-size:1.18rem; }
.brand img { filter: drop-shadow(0 0 14px rgba(255,106,0,.2)); }
.nav { display:flex; gap:30px; color:#b7bdc6; font-size:.9rem; }
.nav a:hover { color:#fff; }
.github-link {
  border:1px solid var(--line-strong); padding:10px 14px; border-radius:9px;
  font-size:.86rem; color:#d8dbe0; transition:.2s ease;
}
.github-link:hover { border-color:var(--orange); color:#fff; transform:translateY(-1px); }

.hero {
  width:min(calc(100% - 48px), var(--max));
  min-height: 690px; margin:auto; display:grid; grid-template-columns: 1.02fr .98fr;
  align-items:center; position:relative;
}
.hero-copy { position:relative; z-index:4; padding:80px 0; }
.eyebrow, .section-kicker {
  color:var(--orange-2); font-size:.74rem; font-weight:800; letter-spacing:.17em; text-transform:uppercase;
}
.eyebrow { display:flex; align-items:center; gap:9px; margin-bottom:24px; }
.status-dot { width:7px; height:7px; background:var(--orange); border-radius:50%; box-shadow:0 0 16px var(--orange); }
h1 {
  font-size:clamp(4.2rem, 8vw, 7.8rem); line-height:.83; letter-spacing:-.075em;
  margin:0; font-weight:900;
}
h1 span, .final-cta h2 span { color:var(--orange); }
.hero-lede { max-width:610px; color:#b7bdc6; font-size:1.08rem; line-height:1.75; margin:32px 0 28px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.button {
  display:inline-flex; align-items:center; justify-content:center; gap:12px; min-height:50px;
  padding:0 20px; border-radius:10px; font-weight:800; font-size:.91rem; transition:.2s ease;
}
.button.primary { background:linear-gradient(135deg,var(--orange),var(--orange-2)); color:#0a0a0a; box-shadow:0 12px 36px rgba(255,106,0,.18); }
.button.primary:hover { transform:translateY(-2px); box-shadow:0 16px 42px rgba(255,106,0,.27); }
.button.secondary { border:1px solid var(--line-strong); background:rgba(255,255,255,.025); }
.button.secondary:hover { border-color:#5d626a; transform:translateY(-2px); }
.hero-facts { display:flex; gap:22px; flex-wrap:wrap; margin-top:30px; color:#747c87; font-size:.78rem; }
.hero-facts b { color:#c9cdd3; font-weight:600; }

.hero-art { min-height:600px; position:relative; display:flex; align-items:center; justify-content:center; }
.hero-mark-wrap {
  width:min(35vw,440px); aspect-ratio:1; display:grid; place-items:center; position:relative;
  filter: drop-shadow(0 0 80px rgba(255,106,0,.18));
}
.hero-mark-wrap::before {
  content:""; position:absolute; inset:10%; border-radius:50%;
  background:radial-gradient(circle,rgba(255,106,0,.22),transparent 67%); filter:blur(20px);
}
.hero-mark { width:82%; position:relative; z-index:2; }
.orbit { position:absolute; border:1px solid rgba(255,255,255,.06); border-radius:50%; }
.orbit-one { width:510px; height:510px; }
.orbit-two { width:390px; height:390px; border-color:rgba(255,106,0,.10); }
.terminal-float {
  position:absolute; right:-20px; bottom:50px; width:340px; background:rgba(8,10,13,.90);
  border:1px solid var(--line-strong); border-radius:14px; box-shadow:0 30px 80px rgba(0,0,0,.45);
  backdrop-filter:blur(16px); overflow:hidden; transform:rotate(-2deg);
}
.terminal-bar { height:38px; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:6px; padding:0 12px; }
.terminal-bar span { width:7px; height:7px; border-radius:50%; background:#3b4047; }
.terminal-bar em { margin-left:auto; font-style:normal; font:500 .68rem "DM Mono"; color:#737b85; }
.terminal-float pre { margin:0; padding:18px; font:400 .72rem/1.8 "DM Mono"; color:#aeb5bf; }
.terminal-float i { color:var(--orange); font-style:normal; }
.terminal-float pre span { color:var(--green); }

.hero-glow { position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; }
.hero-glow-one { width:340px; height:340px; right:8%; top:18%; background:rgba(255,106,0,.08); }
.hero-glow-two { width:250px; height:250px; right:25%; bottom:10%; background:rgba(255,150,40,.05); }

.statement {
  width:min(calc(100% - 48px), 900px); text-align:center; margin:80px auto 150px;
}
.statement h2, .code-copy h2, .section-heading h2, .roadmap h2, .final-cta h2 {
  font-size:clamp(2.4rem,5vw,4.4rem); letter-spacing:-.055em; line-height:1; margin:14px 0 24px;
}
.statement > p:last-child { color:var(--muted); font-size:1.1rem; line-height:1.8; max-width:720px; margin:auto; }

.code-stage {
  width:min(calc(100% - 48px),var(--max)); margin:0 auto 150px; display:grid;
  grid-template-columns:.72fr 1.28fr; gap:70px; align-items:center;
}
.code-copy p:not(.section-kicker) { color:var(--muted); line-height:1.8; }
.mini-points { margin-top:34px; display:grid; gap:0; border-top:1px solid var(--line); }
.mini-points div { display:flex; gap:18px; padding:14px 0; border-bottom:1px solid var(--line); align-items:center; }
.mini-points strong { color:var(--orange); font:500 .72rem "DM Mono"; }
.mini-points span { color:#d9dde2; font-size:.88rem; }

.code-window {
  background:#0a0d11; border:1px solid var(--line-strong); border-radius:16px; overflow:hidden;
  box-shadow:0 35px 90px rgba(0,0,0,.38), 0 0 80px rgba(255,106,0,.04);
}
.window-head { height:48px; border-bottom:1px solid var(--line); display:flex; align-items:center; padding:0 16px; color:#7e8792; font-size:.76rem; }
.dots { display:flex; gap:6px; margin-right:14px; }
.dots span { width:8px; height:8px; border-radius:50%; background:#333940; }
.copy-button { margin-left:auto; color:#8f98a3; background:transparent; border:1px solid var(--line); border-radius:6px; padding:5px 9px; cursor:pointer; }
.copy-button:hover { color:#fff; border-color:#555c65; }
.code-window pre { overflow:auto; margin:0; padding:30px; font:400 .82rem/1.85 "DM Mono"; color:#d7dbe0; }
.kw { color:#ff7b21; } .fn { color:#e8c170; } .str { color:#9ad67f; } .op { color:#d486ff; }

.features { width:min(calc(100% - 48px),var(--max)); margin:0 auto 150px; }
.section-heading { display:flex; align-items:end; justify-content:space-between; gap:40px; margin-bottom:42px; }
.section-heading h2 { margin-bottom:0; }
.section-heading > p { color:var(--muted); max-width:430px; line-height:1.75; margin:0; }
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.feature {
  min-height:300px; position:relative; overflow:hidden; padding:28px; border-radius:16px;
  border:1px solid var(--line); background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012));
  transition:.25s ease;
}
.feature:hover { transform:translateY(-3px); border-color:rgba(255,106,0,.30); background:linear-gradient(145deg,rgba(255,106,0,.055),rgba(255,255,255,.012)); }
.feature-wide { grid-column:span 2; }
.feature-number { position:absolute; right:22px; top:22px; color:#444b54; font:500 .68rem "DM Mono"; }
.feature-icon { width:46px; height:46px; display:grid; place-items:center; border:1px solid rgba(255,106,0,.24); background:var(--orange-soft); border-radius:10px; color:var(--orange); font-weight:900; font-size:1.1rem; }
.feature h3 { font-size:1.25rem; margin:45px 0 10px; letter-spacing:-.02em; }
.feature p { color:var(--muted); line-height:1.7; font-size:.9rem; max-width:540px; }
.chip-row { display:flex; gap:7px; flex-wrap:wrap; margin-top:24px; }
.chip-row span { border:1px solid var(--line); color:#8e97a2; border-radius:999px; padding:6px 9px; font:400 .65rem "DM Mono"; }
.dark-feature { min-height:360px; }
.fake-app { position:absolute; width:48%; right:25px; bottom:-18px; height:185px; border:1px solid var(--line-strong); border-radius:10px 10px 0 0; background:#090b0e; display:flex; overflow:hidden; box-shadow:0 20px 50px rgba(0,0,0,.5); }
.fake-sidebar { width:28%; background:#11151a; border-right:1px solid var(--line); }
.fake-content { flex:1; padding:20px; }
.fake-content span { display:block; height:8px; width:70%; margin-bottom:12px; border-radius:3px; background:#222831; }
.fake-content span:nth-child(2) { width:48%; }
.fake-content span:nth-child(3) { width:82%; }
.fake-content b { display:block; width:100%; height:70px; margin-top:20px; border-radius:7px; background:linear-gradient(135deg,rgba(255,106,0,.15),rgba(255,255,255,.025)); border:1px solid rgba(255,106,0,.15); }

.philosophy {
  width:min(calc(100% - 48px),var(--max)); margin:0 auto 150px; min-height:360px; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  display:grid; grid-template-columns:240px 1fr; align-items:center;
}
.philosophy-mark { width:170px; height:170px; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; background:radial-gradient(circle,rgba(255,106,0,.10),transparent 70%); }
.philosophy-mark img { width:90px; }
blockquote { margin:0; font-size:clamp(1.7rem,3vw,3rem); line-height:1.35; letter-spacing:-.04em; font-weight:700; }
blockquote span { color:#7f8791; }

.roadmap {
  width:min(calc(100% - 48px),var(--max)); margin:0 auto 150px; display:grid; grid-template-columns:.8fr 1.2fr; gap:80px;
}
.roadmap-list { border-top:1px solid var(--line); }
.roadmap-list div { display:grid; grid-template-columns:90px 1fr 1fr; gap:20px; align-items:center; padding:24px 0; border-bottom:1px solid var(--line); }
.roadmap-list span { color:var(--orange); font:500 .68rem "DM Mono"; text-transform:uppercase; }
.roadmap-list strong { font-size:.98rem; }
.roadmap-list em { color:#7f8791; font-style:normal; font-size:.84rem; }

.final-cta {
  width:min(calc(100% - 48px),var(--max)); margin:0 auto 80px; padding:85px 30px; text-align:center;
  border:1px solid var(--line); border-radius:20px; position:relative; overflow:hidden; background:#0a0d11;
}
.final-cta > * { position:relative; z-index:2; }
.final-cta img { margin-bottom:16px; }
.final-cta h2 { margin-top:12px; }
.final-cta > p:not(.section-kicker) { color:var(--muted); margin:-8px 0 30px; }
.cta-glow { position:absolute; width:600px; height:300px; background:rgba(255,106,0,.10); filter:blur(100px); left:50%; top:0; transform:translateX(-50%); }

footer {
  width:min(calc(100% - 48px),var(--max)); min-height:120px; margin:auto; border-top:1px solid var(--line);
  display:flex; align-items:center; gap:24px; color:#707883; font-size:.78rem;
}
.footer-brand { display:flex; align-items:center; gap:10px; color:#fff; letter-spacing:.08em; }
footer > p:nth-child(2) { color:#9ba2ab; }
.copyright { margin-left:auto; }

@media (max-width: 900px) {
  .nav { display:none; }
  .hero { grid-template-columns:1fr; }
  .hero-copy { padding-bottom:20px; }
  .hero-art { min-height:500px; }
  .hero-mark-wrap { width:390px; max-width:85vw; }
  .terminal-float { right:4%; bottom:20px; max-width:82vw; }
  .code-stage, .roadmap { grid-template-columns:1fr; gap:45px; }
  .section-heading { display:block; }
  .section-heading > p { margin-top:20px; }
  .feature-grid { grid-template-columns:1fr 1fr; }
  .feature-wide { grid-column:span 2; }
  .philosophy { grid-template-columns:1fr; padding:60px 0; gap:40px; }
}

@media (max-width: 620px) {
  .site-header, .hero, .statement, .code-stage, .features, .philosophy, .roadmap, .final-cta, footer { width:min(calc(100% - 28px),var(--max)); }
  .github-link { font-size:0; padding:9px 12px; }
  .github-link span { font-size:1rem; }
  h1 { font-size:clamp(4rem,20vw,6rem); }
  .hero { min-height:auto; }
  .hero-art { min-height:430px; }
  .orbit-one { width:390px; height:390px; }
  .orbit-two { width:300px; height:300px; }
  .terminal-float { width:310px; }
  .feature-grid { grid-template-columns:1fr; }
  .feature-wide { grid-column:auto; }
  .fake-app { width:58%; }
  .roadmap-list div { grid-template-columns:65px 1fr; }
  .roadmap-list em { grid-column:2; }
  footer { flex-wrap:wrap; padding:30px 0; }
  .copyright { width:100%; margin-left:0; }
}

.reveal { opacity:0; transform:translateY(18px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .reveal { opacity:1; transform:none; transition:none; }
  * { animation:none !important; transition:none !important; }
}
