:root {
    color-scheme: dark;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --bg: #08090c;
    --panel: #111217;
    --text: #f5f5f7;
    --muted: #999ba5;
    --line: #25262c;
    --violet: #8658ff;
    --lime: #c9ff36;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.5; }
a { color: inherit; }
.container { width: min(72rem, calc(100% - 2.5rem)); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(8,9,12,.82); backdrop-filter: blur(16px); }
.site-header nav { min-height: 4.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-size: .95rem; font-weight: 800; letter-spacing: -.01em; text-decoration: none; }
.brand img { display: block; object-fit: contain; border-radius: 0; }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.nav-actions > a { color: var(--muted); font-size: .86rem; font-weight: 650; text-decoration: none; }
.nav-actions > a:hover { color: var(--text); }
.language { display: flex; padding: .18rem; border: 1px solid var(--line); background: #0d0e12; }
.language button { min-width: 2.15rem; padding: .34rem .4rem; border: 0; color: var(--muted); background: transparent; cursor: pointer; font: 700 .68rem/1 inherit; }
.language button.active { color: #0a0c05; background: var(--lime); }

.hero { min-height: 42rem; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 5rem; padding-block: 6rem; }
.release { display: inline-block; margin-bottom: 1.5rem; color: var(--lime); font: 750 .72rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .06em; text-transform: uppercase; }
h1 { max-width: 44rem; margin: 0; font-size: clamp(3.4rem, 7vw, 6.5rem); line-height: .93; letter-spacing: -.075em; }
.intro { max-width: 39rem; margin: 1.6rem 0 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.16rem); }
.actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.button { display: inline-flex; min-height: 3rem; align-items: center; justify-content: center; padding: 0 1.2rem; border: 1px solid var(--line); background: #101116; font-size: .88rem; font-weight: 750; text-decoration: none; transition: border-color .18s ease, transform .18s ease; }
.button:hover { border-color: #555762; transform: translateY(-1px); }
.button.primary { border-color: var(--text); background: var(--text); color: #0b0c0f; }
.hero-mark { display: grid; place-items: center; }
.logo-stage { position: relative; width: min(100%, 30rem); aspect-ratio: 1; display: grid; place-items: center; }
.logo-stage::before { content: ""; position: absolute; inset: 10%; background: radial-gradient(circle, rgba(134,88,255,.19), transparent 64%); filter: blur(28px); }
.logo-stage img { position: relative; width: 88%; height: auto; object-fit: contain; border-radius: 0; filter: drop-shadow(0 2rem 3rem rgba(0,0,0,.4)); }

.proof { border-block: 1px solid var(--line); background: #0b0c10; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof article { display: flex; flex-direction: column; gap: .3rem; padding: 1.8rem 2rem; border-right: 1px solid var(--line); }
.proof article:first-child { border-left: 1px solid var(--line); }
.proof strong { font-size: .9rem; }
.proof span { color: var(--muted); font-size: .78rem; }

.start { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 6rem; padding-block: 8rem; }
.section-label { color: var(--violet); font: 750 .7rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; text-transform: uppercase; }
.start h2 { max-width: 32rem; margin: 1rem 0; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1; letter-spacing: -.06em; }
.start > div > p { max-width: 32rem; color: var(--muted); }
.terminal { overflow: hidden; border: 1px solid var(--line); background: #050609; box-shadow: 0 2rem 5rem rgba(0,0,0,.3); }
.terminal-title { display: flex; align-items: center; gap: .38rem; padding: .78rem 1rem; border-bottom: 1px solid var(--line); background: var(--panel); }
.terminal-title span { width: .5rem; height: .5rem; border-radius: 50%; background: #474952; }
.terminal-title small { margin-left: .45rem; color: #777984; font-size: .67rem; }
.terminal pre { margin: 0; padding: 1.6rem; overflow-x: auto; font: .85rem/1.75 ui-monospace, SFMono-Regular, Menlo, monospace; }
.terminal i { color: var(--violet); font-style: normal; }
.terminal b { color: var(--lime); }
.terminal em { color: #777984; font-style: normal; }

.site-footer { padding: 2rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.site-footer .container { display: flex; justify-content: space-between; gap: 2rem; }
.site-footer p { margin: 0; }
.site-footer strong { color: var(--text); }

@media (max-width: 52rem) {
    .hero { min-height: auto; grid-template-columns: 1fr; gap: 2rem; padding-block: 5rem 3rem; }
    .hero-mark { order: -1; }
    .logo-stage { width: min(70vw, 22rem); }
    .proof-grid { grid-template-columns: 1fr; }
    .proof article, .proof article:first-child { border: 0; border-bottom: 1px solid var(--line); }
    .proof article:last-child { border-bottom: 0; }
    .start { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 5rem; }
}
@media (max-width: 34rem) {
    .container { width: min(100% - 1.4rem, 72rem); }
    .nav-actions { gap: .7rem; }
    .nav-actions > a { display: none; }
    .hero { padding-top: 3rem; }
    h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
    .actions { flex-direction: column; }
    .button { width: 100%; }
    .site-footer .container { flex-direction: column; gap: .5rem; }
}
