@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/montserrat-latin-wght-normal.woff2") format("woff2-variations");
}

:root {
  color-scheme: dark;
  --black: #000;
  --white: #fff;
  --ink: #fff;
  --muted: #9b9b9b;
  --quiet: #666;
  --background: #000;
  --surface: #090909;
  --surface-raised: #111;
  --line: #292929;
  --line-strong: #fff;
  --accent: #fff;
  --accent-ink: #000;
  --warning: #d0d0d0;
  --sans: "Montserrat", Arial, sans-serif;
  --mono: "Montserrat", Arial, sans-serif;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--ink); font-family: var(--sans); line-height: 1.5; text-rendering: optimizeLegibility; }
body::before { background: linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.045) 50%, transparent 50.1%); content: ""; inset: 0; pointer-events: none; position: fixed; z-index: -1; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--white); outline-offset: 4px; }

.site-header { align-items: center; border-bottom: 1px solid var(--line); display: flex; height: 88px; justify-content: space-between; margin: 0 auto; max-width: var(--max); padding: 0 32px; }
.brand { align-items: center; display: inline-flex; font-size: 17px; font-weight: 750; gap: 12px; letter-spacing: -.045em; text-transform: lowercase; }
.brand-mark { border: 1px solid var(--white); display: inline-block; font-size: 0; height: 34px; overflow: hidden; position: relative; width: 34px; }
.brand-mark::before { background: url("/logo-transparent.png") 50% 26% / 72px 72px no-repeat; content: ""; filter: invert(1); inset: 0; position: absolute; }
nav { display: flex; gap: 38px; }
nav a, footer a { color: var(--muted); font-size: 11px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; transition: color .2s ease; }
nav a:hover, footer a:hover { color: var(--white); }
.header-action { border: 1px solid var(--white); font-size: 10px; font-weight: 700; letter-spacing: .1em; padding: 11px 16px; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.header-action:hover { background: var(--white); color: var(--black); }

main { overflow: hidden; }
.hero { align-items: stretch; display: grid; grid-template-columns: 1.08fr .92fr; margin: 0 auto; max-width: var(--max); min-height: 760px; }
.hero-copy { align-items: flex-start; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; padding: 96px 64px 96px 32px; }
.eyebrow, .kicker { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { align-items: center; display: flex; gap: 11px; }
.eyebrow span { background: var(--white); border-radius: 50%; height: 6px; width: 6px; }
h1 { font-size: clamp(58px, 7.35vw, 106px); font-weight: 760; letter-spacing: -.075em; line-height: .86; margin: 34px 0 38px; max-width: 820px; }
h1 em { color: var(--muted); font-style: normal; font-weight: 360; }
.hero-lede { color: #b5b5b5; font-size: 16px; line-height: 1.75; max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.button { align-items: center; border: 1px solid transparent; display: inline-flex; font-size: 10px; font-weight: 750; justify-content: center; letter-spacing: .08em; min-height: 48px; padding: 14px 20px; text-transform: uppercase; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.button-primary { background: var(--white); color: var(--black); }
.button-primary:hover { background: #bdbdbd; }
.button-secondary { background: transparent; border-color: var(--line); color: var(--white); }
.button-secondary:hover { border-color: var(--white); }
.microcopy { color: var(--quiet); font-size: 9px; letter-spacing: .08em; margin-top: 18px; text-transform: uppercase; }

.hero-visual { display: grid; grid-template-rows: 1fr auto; min-width: 0; }
.logo-plate { align-items: center; background: var(--white); display: flex; justify-content: center; min-height: 410px; overflow: hidden; position: relative; }
.logo-plate::after { border: 1px solid rgba(0,0,0,.25); content: ""; inset: 22px; pointer-events: none; position: absolute; }
.logo-plate img { height: min(52vw, 430px); object-fit: contain; width: min(52vw, 430px); }
.logo-plate-label { bottom: 38px; color: var(--black); font-size: 9px; font-weight: 700; left: 42px; letter-spacing: .15em; position: absolute; text-transform: uppercase; }
.terminal { background: var(--black); border-top: 1px solid var(--line); min-width: 0; }
.terminal-bar, .terminal-status { align-items: center; display: flex; justify-content: space-between; }
.terminal-bar { border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 650; height: 42px; letter-spacing: .1em; padding: 0 18px; text-transform: uppercase; }
.terminal-dots { display: flex; gap: 6px; }
.terminal-dots i { border: 1px solid #777; border-radius: 50%; height: 7px; width: 7px; }
.copy-code { background: none; border: 0; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.copy-code:hover { color: var(--white); }
pre { font-family: var(--mono); font-size: 10px; font-weight: 500; line-height: 1.9; margin: 0; overflow-x: auto; padding: 25px 22px; }
.code-muted { color: #777; }.code-string { color: var(--white); }
.terminal-status { border-top: 1px solid var(--line); color: #777; font-size: 8px; font-weight: 650; letter-spacing: .08em; padding: 11px 18px; text-transform: uppercase; }
.terminal-status span:first-child { align-items: center; display: flex; gap: 7px; }
.terminal-status i { background: var(--white); border-radius: 50%; height: 5px; width: 5px; }

.trust-strip { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 auto; max-width: var(--max); }
.trust-strip div { display: flex; flex-direction: column; gap: 8px; padding: 31px 32px; }
.trust-strip div + div { border-left: 1px solid var(--line); }
.trust-strip strong { font-size: 24px; font-weight: 650; letter-spacing: -.05em; }
.trust-strip span { color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.section { display: grid; gap: 96px; grid-template-columns: .82fr 1.18fr; margin: 0 auto; max-width: var(--max); padding: 140px 32px; }
.section + .section { border-top: 1px solid var(--line); }
.section h2, .dialog-shell h2 { font-size: clamp(40px, 4.8vw, 66px); font-weight: 680; letter-spacing: -.065em; line-height: .95; margin: 20px 0 28px; }
.section-heading > p:last-child { color: var(--muted); font-size: 14px; line-height: 1.75; max-width: 540px; }
.model-section { align-items: start; grid-template-columns: .66fr 1.34fr; }
.model-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.model-grid-single { grid-template-columns: minmax(0, 1fr); }
.model-grid-single .model-card { min-height: 430px; }
.model-card { border: 1px solid var(--line); min-width: 0; padding: 30px; }
.model-card + .model-card { border-left: 0; }
.model-card-primary { background: var(--white); border-color: var(--white); color: var(--black); }
.model-card-topline { color: var(--muted); display: flex; font-size: 8px; font-weight: 700; justify-content: space-between; letter-spacing: .12em; text-transform: uppercase; }
.model-card-primary .model-card-topline, .model-card-primary p, .model-card-primary .model-specs dt { color: #555; }
.model-card h3 { font-size: clamp(31px, 3vw, 48px); font-weight: 680; letter-spacing: -.06em; line-height: .95; margin: 54px 0 24px; }
.model-card > p { color: var(--muted); font-size: 11px; line-height: 1.75; min-height: 78px; }
.model-card .model-specs { border-top-color: currentColor; margin-top: 36px; }
.model-card-primary .model-specs div { border-bottom-color: #d4d4d4; }
.model-card .model-specs dd { font-size: 9px; overflow-wrap: anywhere; }
.model-specs { border-top: 1px solid var(--white); margin: 0; }
.model-specs div { align-items: center; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding: 24px 0; }
.model-specs dt { color: var(--muted); font-size: 10px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.model-specs dd { font-size: 11px; font-weight: 600; margin: 0; text-align: right; }

.roadmap-section { background: var(--surface); display: block; }
.roadmap-section .section-heading { display: grid; gap: 30px 72px; grid-template-columns: .85fr 1.15fr; }
.roadmap-section .section-heading .kicker { grid-column: 1 / -1; margin: 0; }
.roadmap-section .section-heading h2 { margin: 0; }
.roadmap-section .section-heading > p:last-child { margin: 7px 0 0; }
.roadmap-grid { border-left: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; margin: 80px 0 0; padding: 0; }
.roadmap-stage { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); border-top: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; min-height: 390px; padding: 26px; }
.roadmap-stage-current { background: var(--white); color: var(--black); }
.roadmap-index { color: var(--quiet); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.roadmap-stage-current .roadmap-index, .roadmap-stage-current .roadmap-state, .roadmap-stage-current div > p:last-child { color: #555; }
.roadmap-state { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .14em; margin: 0 0 12px; text-transform: uppercase; }
.roadmap-stage h3 { font-size: clamp(22px, 2.2vw, 34px); font-weight: 680; letter-spacing: -.055em; line-height: 1; margin: 0 0 22px; }
.roadmap-stage div > p:last-child { color: var(--muted); font-size: 10px; line-height: 1.75; margin: 0; }
.roadmap-commitment { border-bottom: 1px solid var(--white); border-top: 1px solid var(--white); font-size: clamp(18px, 2.6vw, 34px); font-weight: 500; letter-spacing: -.04em; margin: 62px 0 0; padding: 30px 0; }

.pricing-section { display: block; }
.pricing-section .section-heading { max-width: 820px; }
.pricing-grid { border-left: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 62px; }
.price-card { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); border-top: 1px solid var(--line); padding: 36px 30px; position: relative; }
.price-card.featured { background: var(--white); color: var(--black); }
.price-card.featured::before { content: ""; }
.pack-name { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.featured .pack-name, .featured .tokens { color: #555; }
.price { font-size: 64px; font-weight: 650; letter-spacing: -.07em; line-height: 1; margin: 34px 0 10px; }
.price span { color: var(--muted); font-size: 17px; vertical-align: top; }
.tokens { color: var(--muted); font-size: 11px; line-height: 1.7; min-height: 40px; }
.price-card button { background: transparent; border: 1px solid currentColor; color: inherit; font-size: 9px; font-weight: 750; letter-spacing: .1em; margin-top: 26px; padding: 13px; text-transform: uppercase; width: 100%; }
.price-card button:hover { background: var(--white); color: var(--black); }
.price-card.featured button:hover { background: var(--black); color: var(--white); }

.account-section { align-items: center; background: var(--white); color: var(--black); max-width: none; padding-left: max(32px, calc((100vw - var(--max)) / 2 + 32px)); padding-right: max(32px, calc((100vw - var(--max)) / 2 + 32px)); }
.account-section .kicker, .account-section .account-state { color: #555; }
.account-section .button-primary { background: var(--black); color: var(--white); }
.account-panel { border-left: 1px solid var(--black); padding: 18px 0 18px 32px; }
.account-state { font-size: 13px; line-height: 1.7; }

footer { align-items: center; border-top: 1px solid var(--line); display: grid; gap: 24px; grid-template-columns: 1fr 1fr 1fr; margin: 0 auto; max-width: var(--max); padding: 48px 32px; }
footer p { color: var(--muted); font-size: 9px; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
footer > div { display: flex; gap: 20px; justify-content: flex-end; }

.account-dialog { background: transparent; border: 0; color: var(--black); max-width: 650px; padding: 0; width: calc(100% - 32px); }
.account-dialog::backdrop { backdrop-filter: blur(12px); background: rgba(0,0,0,.82); }
.dialog-shell { background: var(--white); border: 1px solid var(--white); padding: 44px; position: relative; }
.dialog-shell .kicker, .dialog-intro { color: #555; }
.dialog-close { background: none; border: 0; color: #555; font-size: 28px; position: absolute; right: 18px; top: 10px; }
.dialog-intro { font-size: 13px; line-height: 1.7; }
.dialog-shell label:not(.confirmation) { color: #555; display: block; font-size: 9px; font-weight: 700; letter-spacing: .1em; margin-top: 22px; text-transform: uppercase; }
.dialog-shell input[readonly], .dialog-shell textarea { background: #f4f4f4; border: 1px solid #c7c7c7; color: var(--black); display: block; font-size: 11px; margin-top: 9px; padding: 14px; resize: none; width: 100%; }
.dialog-actions { display: flex; gap: 10px; margin-top: 24px; }
.dialog-actions .button-primary { background: var(--black); color: var(--white); }
.dialog-actions .button-secondary { border-color: #aaa; color: var(--black); }
.confirmation { align-items: center; color: #555; display: flex; font-size: 11px; gap: 8px; margin: 26px 0 16px; }
.continue-button { background: var(--black); border: 0; color: var(--white); font-size: 10px; font-weight: 750; letter-spacing: .08em; padding: 14px; text-transform: uppercase; width: 100%; }
.continue-button:disabled { cursor: not-allowed; opacity: .22; }
.toast { background: var(--white); border: 1px solid var(--black); bottom: 22px; color: var(--black); font-size: 10px; font-weight: 650; opacity: 0; padding: 12px 16px; pointer-events: none; position: fixed; right: 22px; transform: translateY(8px); transition: .2s ease; z-index: 10; }
.toast.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { border-bottom: 1px solid var(--line); border-right: 0; min-height: 620px; padding: 90px 32px; }
  .hero-visual { grid-template-columns: 1fr; }
  .logo-plate { min-height: 480px; }
  .logo-plate img { height: 410px; width: 410px; }
  .section { gap: 60px; grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; }
  .model-card + .model-card { border-left: 1px solid var(--line); border-top: 0; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-strip div:nth-child(4) { border-top: 1px solid var(--line); }
  .pricing-grid { grid-template-columns: 1fr; }
  .roadmap-section .section-heading { grid-template-columns: 1fr; }
  .roadmap-section .section-heading .kicker { grid-column: auto; }
  .roadmap-grid { grid-template-columns: 1fr 1fr; }
  .roadmap-stage { min-height: 320px; }
  .price-card { border-left: 0; }
  footer { grid-template-columns: 1fr; }
  footer p { text-align: left; }
  footer > div { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .site-header { height: 74px; padding: 0 20px; }
  .header-action { display: none; }
  h1 { font-size: clamp(49px, 15vw, 72px); }
  .hero-copy { min-height: 560px; padding: 72px 20px; }
  .hero-lede { font-size: 14px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .button { width: 100%; }
  .logo-plate { min-height: 370px; }
  .logo-plate img { height: 330px; width: 330px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div + div { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 100px 20px; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .roadmap-stage { min-height: 290px; }
  .account-section { padding-left: 20px; padding-right: 20px; }
  .dialog-shell { padding: 34px 20px; }
  .dialog-actions { flex-direction: column; }
}
