:root {
  --ink: #101310;
  --ink-soft: #252a26;
  --paper: #f1eee6;
  --paper-bright: #faf8f2;
  --line: rgba(16, 19, 16, 0.16);
  --line-dark: rgba(255, 255, 255, 0.14);
  --orange: #ff6a2a;
  --orange-light: #ff8a57;
  --green: #b9ff67;
  --muted: #737971;
  --radius: 3px;
  --page: min(1500px, calc(100vw - 48px));
  --font-sans: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
.confirmation-page { min-height: 100vh; display: grid; grid-template-rows: auto 1fr auto; overflow: hidden; color: #fff; background: #0d0f0e; }
.confirmation-header, .confirmation-footer { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; width: min(1180px, calc(100vw - 48px)); margin: 0 auto; }
.confirmation-header { height: 78px; }
.confirmation-footer { min-height: 80px; border-top: 1px solid var(--line-dark); color: #747a75; font: 500 9px/1.4 var(--font-mono); letter-spacing: .05em; text-transform: uppercase; }
.confirmation-main { position: relative; z-index: 1; display: flex; min-height: 650px; flex-direction: column; align-items: flex-start; justify-content: center; width: min(1180px, calc(100vw - 48px)); margin: 0 auto; padding: 80px 0 120px; }
.confirmation-grid { position: fixed; z-index: -1; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(circle at 28% 45%, black, transparent 60%); }
.confirmation-main::after { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; left: -180px; top: 50%; border-radius: 50%; background: rgba(255,106,42,.14); filter: blur(110px); transform: translateY(-50%); }
.confirmation-mark { position: relative; width: 46px; height: 46px; margin-bottom: 34px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.confirmation-mark::before, .confirmation-mark::after { content: ""; position: absolute; height: 2px; background: var(--orange); transform-origin: left center; }
.confirmation-mark::before { width: 13px; left: 12px; top: 24px; transform: rotate(45deg); }
.confirmation-mark::after { width: 22px; left: 21px; top: 29px; transform: rotate(-48deg); }
.confirmation-main h1 { max-width: 850px; margin: 0; font-size: clamp(64px, 9vw, 128px); font-weight: 560; letter-spacing: -.072em; line-height: .9; }
.confirmation-copy { max-width: 650px; margin: 38px 0; color: #aeb3ae; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--orange); color: white; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: white;
  padding: 12px 16px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1500px) / 2));
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, height .25s ease;
}
.site-header.scrolled {
  height: 64px;
  background: rgba(13, 15, 14, .92);
  border-color: rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}
.wordmark { display: inline-flex; align-items: center; gap: 11px; width: fit-content; font-size: 20px; font-weight: 680; letter-spacing: -.04em; }
.wordmark-mark { position: relative; width: 23px; height: 23px; display: inline-block; }
.wordmark-mark i { position: absolute; display: block; width: 12px; height: 3px; background: var(--orange); transform-origin: left center; }
.wordmark-mark i:nth-child(1) { top: 3px; left: 2px; transform: rotate(30deg); }
.wordmark-mark i:nth-child(2) { top: 10px; left: 8px; transform: rotate(90deg); width: 11px; }
.wordmark-mark i:nth-child(3) { bottom: 3px; left: 2px; transform: rotate(-30deg); }
.site-nav { display: flex; gap: 34px; font-size: 13px; font-weight: 600; letter-spacing: .025em; }
.site-nav a, .site-footer a { transition: color .2s ease; }
.site-nav a:hover, .site-footer a:hover { color: var(--orange-light); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.language-toggle { border: 0; background: none; color: inherit; padding: 10px; font: 600 11px/1 var(--font-mono); cursor: pointer; }
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; padding: 12px; }
.nav-toggle span { display: block; height: 1px; background: white; margin: 6px 0; transition: transform .2s; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--orange-light); }
.button-small { min-height: 38px; padding: 0 17px; font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 16px; color: white; font-size: 13px; font-weight: 650; }
.text-link span:last-child { color: var(--orange); font-size: 18px; transition: transform .2s; }
.text-link:hover span:last-child { transform: translate(3px, 3px); }

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, .78fr) minmax(620px, 1.22fr);
  gap: 48px;
  align-items: center;
  padding: 150px max(24px, calc((100vw - 1500px) / 2)) 100px;
  color: white;
  background: #0d0f0e;
}
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 72% 48%, rgba(255,106,42,.11), transparent 34%); }
.hero-grid, .early-access-grid {
  position: absolute; inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 62%);
}
.hero-copy { position: relative; z-index: 2; padding-left: clamp(0px, 3vw, 56px); }
.eyebrow { margin: 0 0 25px; font: 650 11px/1.2 var(--font-mono); letter-spacing: .15em; text-transform: uppercase; color: var(--orange); }
.hero h1 { margin: 0; max-width: 670px; font-size: clamp(62px, 6.1vw, 106px); font-weight: 560; letter-spacing: -.072em; line-height: .91; }
.hero h1 span { display: block; }
.accent-line { color: var(--orange); }
.hero-intro { max-width: 610px; margin: 35px 0 0; color: #b7bbb6; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.55; letter-spacing: -.02em; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 26px; padding: 0; margin: 54px 0 0; list-style: none; }
.hero-facts li { display: flex; align-items: center; gap: 8px; color: #858a84; font: 500 10px/1 var(--font-mono); letter-spacing: .05em; text-transform: uppercase; }
.hero-facts li span { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(185,255,103,.5); }

.product-stage { position: relative; z-index: 2; min-width: 0; perspective: 1600px; padding: 40px 20px 40px 0; }
.stage-glow { position: absolute; width: 70%; height: 70%; top: 18%; left: 20%; background: rgba(255,106,42,.18); filter: blur(100px); border-radius: 50%; }
.app-window {
  position: relative;
  width: min(900px, 100%);
  margin-left: auto;
  overflow: hidden;
  border-radius: 12px;
  background: #171a19;
  box-shadow: 0 50px 120px rgba(0,0,0,.58), 0 0 0 1px rgba(255,255,255,.16);
  transform: rotateY(-7deg) rotateX(2deg);
  transform-origin: right center;
}
.app-screenshot { display: block; width: 100%; height: auto; }
.stage-note { position: absolute; display: flex; align-items: center; gap: 8px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.15); background: rgba(14,16,15,.88); color: #9ba09c; font: 500 8px/1 var(--font-mono); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.stage-note span { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.stage-note-top { top: 18px; right: 5%; } .stage-note-bottom { bottom: 14px; left: 15%; }

.reveal { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
.reveal-delay-1 { animation-delay: .08s; } .reveal-delay-2 { animation-delay: .18s; } .reveal-delay-3 { animation-delay: .3s; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.capability-strip { display: grid; grid-template-columns: repeat(4, 1fr); width: var(--page); margin: 0 auto; border-bottom: 1px solid var(--line); }
.capability-strip div { display: flex; align-items: center; gap: 18px; min-height: 88px; padding: 0 26px; border-right: 1px solid var(--line); }
.capability-strip div:first-child { border-left: 1px solid var(--line); }
.capability-strip span { color: var(--orange); font: 600 9px/1 var(--font-mono); }
.capability-strip b { font-size: 12px; letter-spacing: .02em; }

.section { width: var(--page); margin: 0 auto; padding: 150px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 2.1fr 1fr; gap: 50px; align-items: start; margin-bottom: 80px; }
.section-heading h2, .principles h2, .early-access h2, .contact h2 { margin: 0; font-size: clamp(42px, 5vw, 76px); font-weight: 570; letter-spacing: -.055em; line-height: .98; }
.section-heading > p:last-child { margin: 8px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.feature-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 18px; }
.feature-card { position: relative; min-height: 510px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; border: 1px solid var(--line); background: var(--paper-bright); }
.feature-card-large { grid-row: span 2; min-height: 1038px; }
.feature-number { position: absolute; top: 24px; left: 28px; color: var(--orange); font: 600 10px/1 var(--font-mono); }
.feature-card h3 { position: relative; margin: 0 0 13px; font-size: clamp(25px, 2.1vw, 34px); font-weight: 600; letter-spacing: -.04em; }
.feature-card p { position: relative; max-width: 570px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.feature-visual { position: absolute; inset: 70px 35px 185px; }
.geometry-visual { inset: 110px 60px 220px; border: 1px solid var(--line); background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 32px 32px; }
.geometry-ring { position: absolute; width: 38%; aspect-ratio: 1; left: 31%; top: 29%; border: 2px solid var(--orange); border-radius: 50%; box-shadow: 0 0 0 18px rgba(255,106,42,.08); }
.geometry-path { position: absolute; left: 13%; right: 13%; top: 18%; bottom: 18%; border: 1px dashed #838880; }
.geometry-path i { position: absolute; width: 7px; height: 7px; margin: -4px; border: 2px solid var(--paper-bright); background: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.geometry-path i:nth-child(1) { left: 0; top: 0; } .geometry-path i:nth-child(2) { right: 0; top: 0; } .geometry-path i:nth-child(3) { right: 0; bottom: 0; } .geometry-path i:nth-child(4) { left: 0; bottom: 0; }
.measure { position: absolute; color: var(--orange); background: var(--paper-bright); padding: 4px 7px; font: 600 9px/1 var(--font-mono); }
.measure-x { top: -9px; left: 45%; } .measure-y { right: -25px; top: 50%; transform: rotate(90deg); }
.workflow-visual { display: flex; justify-content: center; align-items: center; gap: 12px; }
.workflow-visual span { padding: 12px 14px; border: 1px solid var(--line); font: 600 9px/1 var(--font-mono); }
.workflow-visual i { color: var(--orange); font-style: normal; }
.dark-card { color: #fff; background: var(--ink); }
.dark-card p { color: #90958f; }
.code-visual { inset: 72px 36px 190px; display: flex; flex-direction: column; justify-content: center; gap: 13px; }
.code-visual code { color: #626862; font: 500 clamp(8px, .85vw, 12px)/1.4 var(--font-mono); }
.code-visual em { color: #3f443f; font-style: normal; margin-right: 10px; }
.code-visual .code-active { margin-left: -14px; padding: 10px 14px; color: #e5e8e5; border-left: 2px solid var(--orange); background: #202420; }
.code-active em { color: var(--orange); }

.workflow { width: 100%; max-width: none; padding: 150px max(24px, calc((100vw - 1500px) / 2)); color: #fff; background: var(--ink); }
.section-heading-light { grid-template-columns: 1fr 3.1fr; }
.workflow-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.workflow-list li { display: grid; grid-template-columns: 100px 1fr auto; gap: 40px; align-items: center; min-height: 190px; border-bottom: 1px solid var(--line-dark); transition: background .2s; }
.workflow-list li:hover { background: rgba(255,255,255,.025); }
.step-number { align-self: stretch; display: grid; place-items: center; border-right: 1px solid var(--line-dark); color: var(--orange); font: 600 10px/1 var(--font-mono); }
.workflow-list h3 { margin: 0 0 10px; font-size: clamp(26px, 2.5vw, 38px); font-weight: 560; letter-spacing: -.04em; }
.workflow-list p { max-width: 660px; margin: 0; color: #8f948f; font-size: 15px; line-height: 1.55; }
.step-token { padding-right: 32px; color: #5e635f; font: 550 9px/1 var(--font-mono); letter-spacing: .08em; }

.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 11vw; }
.principles-copy > p:not(.eyebrow) { max-width: 590px; margin: 32px 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.dark-link { color: var(--ink); }
.principle-list { border-top: 1px solid var(--line); }
.principle-list article { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.principle-list article > span { color: var(--orange); font: 600 9px/1 var(--font-mono); padding-top: 6px; }
.principle-list h3 { margin: 0 0 10px; font-size: 25px; letter-spacing: -.035em; }
.principle-list p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

.early-access { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 12vw; padding: 120px max(24px, calc((100vw - 1500px) / 2)); color: #fff; background: var(--orange); }
.early-access-grid { opacity: .22; mask-image: linear-gradient(to left, black, transparent); }
.early-access-copy, .signup-form { position: relative; z-index: 2; }
.early-access .eyebrow { color: #56200c; }
.early-access-copy p:last-child { max-width: 600px; margin: 28px 0 0; color: #64230c; font-size: 17px; line-height: 1.55; }
.signup-form { align-self: end; }
.signup-form label { display: block; margin-bottom: 10px; font: 600 10px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.signup-details { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; margin-bottom: 24px; }
.signup-system { grid-column: 1 / -1; }
.signup-details input { display: block; width: 100%; margin-top: 8px; padding: 10px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.55); border-radius: 0; outline: 0; color: #fff; background: transparent; font: 500 16px/1.4 var(--font-sans); text-transform: none; }
.signup-details input:focus { border-color: #fff; }
.signup-details input::placeholder { color: rgba(255,255,255,.5); }
.input-row { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid rgba(255,255,255,.8); }
.input-row input { min-width: 0; border: 0; outline: 0; padding: 16px 0; color: white; background: transparent; font-size: 20px; }
.input-row input::placeholder { color: rgba(255,255,255,.55); }
.light-button { align-self: center; min-height: 42px; border-color: #fff; background: #fff; color: var(--ink); }
.light-button:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.form-note { color: #702a11; font-size: 11px; }
.form-status { min-height: 18px; margin: 12px 0 0; font: 600 11px/1.5 var(--font-mono); }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; }
.contact-heading > p:not(.eyebrow) { max-width: 520px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.contact-meta { display: flex; flex-direction: column; gap: 7px; margin-top: 50px; color: var(--muted); font: 500 9px/1.4 var(--font-mono); text-transform: uppercase; letter-spacing: .07em; }
.contact-action { align-self: center; display: flex; align-items: center; gap: 24px; padding-top: 13px; }
.contact-email { color: var(--muted); font: 600 11px/1.4 var(--font-mono); }

.site-footer { min-height: 130px; display: grid; grid-template-columns: 1fr 2fr 1fr auto; gap: 40px; align-items: center; padding: 0 max(24px, calc((100vw - 1500px) / 2)); color: #888e88; background: var(--ink); font-size: 11px; }
.footer-wordmark { color: #fff; }
.site-footer p { margin: 0; }
.site-footer nav { display: flex; gap: 24px; color: #c3c7c3; }

@media (max-width: 1180px) {
  .hero { min-height: 1080px; grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 800px; }
  .hero h1 { font-size: clamp(64px, 9vw, 98px); }
  .product-stage { width: min(950px, 100%); margin-left: auto; }
  .section-heading { grid-template-columns: .7fr 2fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-block: 35px; }
}

@media (max-width: 820px) {
  :root { --page: calc(100vw - 30px); }
  .site-header { height: 66px; grid-template-columns: minmax(0, 1fr) auto auto; column-gap: 4px; padding-inline: 18px; }
  .nav-toggle { display: block; position: relative; z-index: 3; grid-column: 3; grid-row: 1; }
  .header-actions { position: relative; z-index: 3; grid-column: 2; grid-row: 1; margin: 0; }
  .language-toggle { min-width: 42px; min-height: 42px; padding: 10px 8px; }
  .header-actions .button { display: none; }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px; visibility: hidden; opacity: 0; background: #0d0f0e; font-size: 26px; transition: opacity .2s, visibility .2s; }
  .menu-open .site-nav { visibility: visible; opacity: 1; }
  .menu-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: auto; padding: 120px 18px 75px; gap: 55px; }
  .hero-copy { padding: 0; }
  .hero h1 { font-size: clamp(53px, 16vw, 76px); }
  .hero-intro { font-size: 17px; }
  .hero-facts { margin-top: 40px; gap: 15px 24px; }
  .product-stage { padding: 0; }
  .app-window { transform: none; }
  .stage-note-top { top: -25px; } .stage-note-bottom { bottom: -30px; }
  .capability-strip { grid-template-columns: 1fr 1fr; }
  .capability-strip div:nth-child(odd) { border-left: 1px solid var(--line); }
  .capability-strip div { min-height: 72px; }
  .section { padding: 95px 0; }
  .section-heading, .section-heading-light { grid-template-columns: 1fr; gap: 10px; margin-bottom: 45px; }
  .section-heading > p:last-child { grid-column: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card-large { min-height: 540px; grid-row: auto; }
  .geometry-visual { inset: 80px 35px 190px; }
  .workflow { padding: 95px 18px; }
  .workflow-list li { grid-template-columns: 55px 1fr; gap: 22px; min-height: 180px; }
  .step-token { display: none; }
  .principles, .contact, .early-access { grid-template-columns: 1fr; gap: 65px; }
  .principles { padding-inline: 0; }
  .early-access { padding: 95px 18px; }
  .input-row { grid-template-columns: 1fr; gap: 15px; padding-bottom: 15px; }
  .signup-details { grid-template-columns: 1fr; }
  .signup-system { grid-column: auto; }
  .light-button { width: fit-content; }
  .contact { padding-inline: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 18px; }
  .confirmation-header, .confirmation-main, .confirmation-footer { width: calc(100vw - 36px); }
  .confirmation-main { min-height: 560px; padding-block: 70px; }
  .confirmation-footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
}

@media (max-width: 520px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-facts { flex-direction: column; }
  .app-window { width: 680px; }
  .product-stage { overflow: hidden; margin-right: -18px; padding: 25px 0; }
  .stage-note { display: none; }
  .capability-strip { width: 100%; }
  .capability-strip div { padding-inline: 16px; }
  .feature-card { min-height: 480px; padding: 28px; }
  .feature-visual { inset-inline: 28px; }
  .workflow-list li { grid-template-columns: 38px 1fr; gap: 16px; }
  .contact-action { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
