:root{
    --bg:#0a0a0a;
    --surface:#141414;
    --border:#2a2a2a;
    --text:#e8e6e0;
    --muted:#7d7d7d;
    --accent:#c9a84c;
    --accent-hover:#d4b870;
    --radius-sm:4px;
    --radius-md:8px
}
*{
    box-sizing:border-box
}
html{
    scroll-behavior:smooth
}
body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:Inter,sans-serif;
    line-height:1.6
}
h1,h2,h3,.wordmark{
    font-family:"Instrument Serif",serif;
    font-weight:400;
    line-height:1.05
}
a{
    color:inherit
}
.wrap{
    width:min(1120px,calc(100% - 40px));
    margin:auto
}
.nav{
    position:sticky;
    top:0;
    z-index:20;
    border-bottom:1px solid var(--border);
    background:#0a0a0add;
    backdrop-filter:blur(14px)
}
.nav .wrap{
    height:70px;
    display:flex;
    align-items:center;
    justify-content:space-between
}
.wordmark{
    font-size:27px;
    text-decoration:none
}
.links{
    display:flex;
    gap:28px
}
.links a{
    text-decoration:none;
    color:var(--muted)
}
.button{
    display:inline-block;
    padding:11px 18px;
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    text-decoration:none;
    cursor:pointer;
    background:transparent;
    color:var(--text);
    font:inherit
}
.button.primary{
    background:var(--accent);
    border-color:var(--accent);
    color:#111;
    font-weight:700
}
.hero{
    padding:100px 0 70px;
    text-align:center
}
.eyebrow{
    color:var(--accent);
    font:600 12px "JetBrains Mono";
    letter-spacing:.18em;
    text-transform:uppercase
}
.hero h1{
    font-size:clamp(54px,8vw,96px);
    max-width:1000px;
    margin:20px auto
}
.lead{
    max-width:720px;
    margin:auto;
    color:#aaa;
    font-size:19px
}
.actions{
    display:flex;
    justify-content:center;
    gap:12px;
    margin:32px 0 16px
}
.trust,.muted{
    color:var(--muted)
}
.terminal,.card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius-md);
    padding:26px
}
.terminal{
    margin:60px auto 0;
    max-width:820px;
    text-align:left;
    min-height:250px
}
.query,.mono{
    font-family:"JetBrains Mono"
}
.query{
    color:var(--accent)
}
.answer{
    margin-top:24px
}
.chips{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin:22px 0
}
.chip{
    border:1px solid var(--border);
    border-radius:99px;
    padding:5px 10px;
    color:var(--muted);
    font-size:12px
}
.section{
    padding:85px 0
}
.section h2{
    font-size:clamp(42px,6vw,68px);
    margin:0 0 36px
}
.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px
}
.card h3{
    font-size:28px;
    margin:0 0 12px
}
.card p{
    color:var(--muted)
}
.manifesto,.footer{
    border-top:1px solid var(--border)
}
.columns,.pricing{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px
}
.mono{
    white-space:pre-wrap;
    background:#0d0d0d;
    border:1px solid var(--border);
    padding:20px;
    margin-top:25px
}
.price{
    font:52px "Instrument Serif"
}
.popular{
    border-color:var(--accent)
}
.badge,.notice{
    background:var(--accent);
    color:#111
}
.badge{
    padding:3px 8px;
    border-radius:99px;
    font-size:11px
}
.footer{
    padding:45px 0;
    color:var(--muted)
}
.footer-grid{
    display:grid;
    grid-template-columns:2fr repeat(4,1fr);
    gap:20px
}
.footer a{
    display:block;
    text-decoration:none;
    margin:7px 0
}
.notice{
    padding:12px;
    text-align:center
}
.tabs{
    display:flex;
    gap:8px;
    margin-bottom:30px
}
.active{
    border-color:var(--accent);
    color:var(--accent)
}
.step{
    display:grid;
    grid-template-columns:48px 1fr;
    gap:18px;
    margin:24px 0
}
.step-num{
    height:40px;
    width:40px;
    border:1px solid var(--accent);
    color:var(--accent);
    display:grid;
    place-items:center;
    border-radius:50%
}
.skeleton{
    height:150px;
    background:var(--surface);
    animation:pulse 1.2s infinite;
    margin:15px 0
}
@keyframes pulse{
    50%{
        opacity:.45
    }
}
@media(max-width:760px){
    .links{
        display:none
    }
    .grid,.columns,.pricing,.footer-grid{
        grid-template-columns:1fr
    }
    .actions{
        flex-direction:column
    }
}
 