@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;700;900&display=swap');

:root {
  --paper: #f5f0e8;
  --paper-bright: #fffdf7;
  --ink: #061c35;
  --ink-soft: #18314a;
  --red: #ff1738;
  --cyan: #00d9ee;
  --line: rgba(6, 28, 53, 0.2);
  --display: "Noto Sans SC", system-ui, sans-serif;
  --tech: "Chakra Petch", "Noto Sans SC", monospace;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  line-height: 1.6;
}
body::selection { color: white; background: var(--red); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed; z-index: 999; top: 12px; left: 12px;
  padding: 10px 16px; color: white; background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.noise {
  position: fixed; z-index: 100; inset: 0; pointer-events: none; opacity: .055;
  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='.5'/%3E%3C/svg%3E");
}
.cursor-aura {
  position: fixed; z-index: 0; width: 420px; height: 420px; border-radius: 50%;
  left: var(--mouse-x, 50vw); top: var(--mouse-y, 30vh); pointer-events: none;
  background: radial-gradient(circle, rgba(0,217,238,.12), transparent 68%);
  transform: translate(-50%, -50%); transition: opacity .3s; mix-blend-mode: multiply;
}

.site-header {
  position: absolute; z-index: 20; top: 0; left: 50%; width: min(100% - 64px, var(--max));
  height: 90px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line); transform: translateX(-50%);
  font-family: var(--tech); font-weight: 600; font-size: 13px; letter-spacing: .08em;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; width: 38px; height: 38px; place-items: center;
  color: white; background: var(--ink); box-shadow: 5px 0 0 var(--red), -2px 3px 0 var(--cyan);
}
.nav { display: flex; gap: 38px; }
.nav a, .header-cta { position: relative; }
.nav a::after {
  content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .25s;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta { padding: 11px 15px; border: 1px solid var(--ink); background: rgba(245,240,232,.7); }

.hero {
  position: relative; min-height: 800px; height: 100svh; padding: 150px max(32px, calc((100vw - var(--max)) / 2));
  display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 48px; isolation: isolate;
}
.hero-grid {
  position: absolute; z-index: -3; inset: 0; opacity: .32;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0, transparent 85%);
}
.hero::before {
  content: ""; position: absolute; z-index: -2; width: 55vw; height: 55vw; min-width: 600px; min-height: 600px;
  right: -10vw; top: 4vh; border-radius: 50%; border: 90px solid rgba(255,23,56,.05);
  box-shadow: 0 0 0 2px rgba(6,28,53,.08), inset 0 0 0 2px rgba(6,28,53,.08);
}
.hero::after {
  content: ""; position: absolute; z-index: -1; width: 180px; height: 9px; right: 7vw; top: 18%;
  background: var(--red); box-shadow: -40px 17px 0 var(--ink), 34px 34px 0 var(--cyan);
}
.hero-copy { position: relative; z-index: 2; max-width: 650px; }
.eyebrow, .section-index {
  margin: 0 0 24px; font: 600 12px/1 var(--tech); letter-spacing: .18em; text-transform: uppercase;
}
.signal-dot { display: inline-block; width: 7px; height: 7px; margin-right: 9px; background: var(--red); box-shadow: 5px 0 0 rgba(255,23,56,.28); animation: signal 1.4s steps(2) infinite; }
.hero h1, .section h2, .workflow h2, .launch h2 {
  margin: 0; font-weight: 900; line-height: .98; letter-spacing: -.06em;
}
.hero h1 { font-size: clamp(56px, 6.2vw, 108px); white-space: nowrap; }
.accent { position: relative; color: var(--red); }
.slash::after {
  content: ""; position: absolute; width: 106%; height: 10%; left: -2%; top: 48%; background: var(--cyan); mix-blend-mode: multiply; transform: rotate(-2deg);
}
.outline { color: transparent; -webkit-text-stroke: 2px var(--ink); text-shadow: 7px 7px 0 rgba(0,217,238,.22); }
.hero-summary { max-width: 580px; margin: 34px 0; font-size: clamp(16px, 1.35vw, 20px); color: var(--ink-soft); }
.api-terminal {
  max-width: 590px; margin: 30px 0 18px; border: 1px solid var(--ink); background: rgba(255,253,247,.72);
  box-shadow: 7px 7px 0 rgba(0,217,238,.55); font-family: var(--tech);
}
.api-terminal-label { padding: 8px 12px; display: flex; justify-content: space-between; color: white; background: var(--ink); font-size: 9px; letter-spacing: .16em; }
.api-status { color: var(--cyan); }
.api-terminal-row { min-width: 0; display: flex; align-items: stretch; }
.api-terminal code { min-width: 0; padding: 15px 16px; flex: 1; overflow: hidden; color: var(--ink); font: 600 clamp(13px, 1.2vw, 17px)/1.2 var(--tech); text-overflow: ellipsis; white-space: nowrap; }
.copy-button { padding: 0 15px; display: flex; align-items: center; gap: 9px; border: 0; border-left: 1px solid var(--ink); color: white; background: var(--red); font: 600 11px/1 var(--tech); cursor: pointer; }
.copy-button:hover, .copy-button:focus-visible { color: var(--ink); background: var(--cyan); }
.copy-feedback { min-height: 0; margin: 0; padding: 0 12px; color: var(--ink); font: 600 10px/1 var(--tech); }
.copy-feedback:not(:empty) { min-height: 29px; padding-block: 8px; border-top: 1px dashed var(--line); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 26px;
  border: 1px solid var(--ink); font: 600 13px/1 var(--tech); letter-spacing: .08em; transition: transform .2s, box-shadow .2s, color .2s, background .2s;
}
.button-primary { color: white; background: var(--ink); box-shadow: 7px 7px 0 var(--red); }
.button-primary:hover { transform: translate(3px, 3px); box-shadow: 4px 4px 0 var(--cyan); }
.button-ghost { background: rgba(255,255,255,.25); }
.button-ghost:hover { color: white; background: var(--red); border-color: var(--red); }

.hero-visual { position: relative; z-index: 1; min-width: 0; }
.logo-stage {
  position: relative; width: min(100%, 850px); margin-left: auto; padding: 72px 28px 55px;
  background: rgba(255,253,247,.42); border: 1px solid rgba(6,28,53,.13); transform-style: preserve-3d;
  box-shadow: 20px 24px 0 rgba(6,28,53,.04);
}
.logo-stage::before, .logo-stage::after { content: ""; position: absolute; z-index: -1; }
.logo-stage::before { inset: 28px -24px -22px 38%; border: 4px solid var(--red); }
.logo-stage::after { width: 35%; height: 46%; left: -30px; top: -25px; background: var(--ink); opacity: .06; }
.hero-logo { position: relative; z-index: 2; width: 100%; filter: drop-shadow(8px 9px 0 rgba(0,217,238,.18)); animation: logoPulse 5s steps(1) infinite; }
.hero-logo::selection { background: transparent; }
.scan-beam { position: absolute; z-index: 3; left: 4%; right: 4%; top: 20%; height: 3px; opacity: .55; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); animation: scan 4.5s linear infinite; }
.logo-caption { position: absolute; right: 24px; bottom: 16px; left: 24px; margin: 0; display: flex; justify-content: space-between; font: 500 10px/1 var(--tech); letter-spacing: .14em; }
.corner { position: absolute; z-index: 4; width: 22px; height: 22px; border-color: var(--ink); }
.corner-tl { top: 12px; left: 12px; border-top: 3px solid; border-left: 3px solid; }
.corner-tr { top: 12px; right: 12px; border-top: 3px solid; border-right: 3px solid; }
.corner-bl { bottom: 12px; left: 12px; border-bottom: 3px solid; border-left: 3px solid; }
.corner-br { right: 12px; bottom: 12px; border-right: 3px solid; border-bottom: 3px solid; }
.hero-kana { position: absolute; z-index: -1; font-size: clamp(80px, 10vw, 180px); font-weight: 900; line-height: 1; writing-mode: vertical-rl; color: rgba(6,28,53,.035); }
.hero-kana-a { left: 1%; bottom: 4%; }
.hero-kana-b { right: 0; top: 22%; color: rgba(255,23,56,.045); }
.scroll-cue { position: absolute; bottom: 32px; left: max(32px, calc((100vw - var(--max)) / 2)); display: flex; align-items: center; gap: 10px; font: 500 10px/1 var(--tech); letter-spacing: .16em; }
.scroll-cue span { width: 44px; height: 1px; background: var(--ink); animation: scrollCue 1.7s ease-in-out infinite; transform-origin: left; }

.signal-strip { overflow: hidden; color: white; background: var(--red); border-block: 3px solid var(--ink); transform: rotate(-.45deg) scale(1.01); }
.marquee-track { width: max-content; padding: 13px 0; display: flex; align-items: center; gap: 30px; font: 700 15px/1 var(--tech); letter-spacing: .15em; animation: marquee 24s linear infinite; }
.marquee-track i { color: var(--ink); font-style: normal; }

.section { width: min(100% - 64px, var(--max)); margin-inline: auto; padding-block: 150px; }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; column-gap: 60px; align-items: end; margin-bottom: 70px; }
.section-heading .section-index { grid-column: 1 / -1; }
.section-heading h2, .manifesto h2 { font-size: clamp(46px, 5vw, 82px); }
.section-heading > p:last-child { max-width: 400px; margin: 0 0 8px auto; color: var(--ink-soft); font-size: 17px; }
.access { padding-bottom: 70px; }
.access-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 2px solid var(--ink); }
.access-card { position: relative; min-height: 360px; padding: 68px 24px 28px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: rgba(255,253,247,.36); }
.access-card:first-child { border-left: 1px solid var(--ink); }
.access-card::before { content: ""; position: absolute; top: -7px; left: 24px; width: 13px; height: 13px; background: var(--red); box-shadow: 5px 4px 0 var(--cyan); }
.access-number { position: absolute; right: 18px; top: 16px; color: rgba(6,28,53,.08); font: 700 62px/1 var(--tech); }
.access-card small { color: var(--red); font: 600 10px/1 var(--tech); letter-spacing: .16em; }
.access-card h3 { margin: 40px 0 14px; font-size: 25px; line-height: 1.2; }
.access-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.access-card a, .safe-note { position: absolute; right: 24px; bottom: 28px; left: 24px; font: 600 11px/1.3 var(--tech); letter-spacing: .04em; }
.access-card a { color: var(--red); }
.access-card a:hover { color: var(--ink); }
.safe-note { padding-left: 14px; color: var(--ink-soft); border-left: 3px solid var(--cyan); }
.red-block { display: inline-block; margin: 0 .08em; padding: 0 .14em .08em; color: white; background: var(--red); transform: rotate(-2deg); }
.ability-grid { display: grid; grid-template-columns: 1.16fr .92fr .92fr; gap: 18px; }
.ability-card {
  position: relative; min-height: 500px; padding: 32px; overflow: hidden; border: 1px solid var(--ink); background: rgba(255,253,247,.46);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.ability-card:hover { transform: translateY(-8px); box-shadow: 9px 10px 0 var(--cyan); background: var(--paper-bright); }
.ability-card-feature { color: white; background: var(--ink); }
.ability-card-feature:hover { background: var(--ink); box-shadow: 9px 10px 0 var(--red); }
.card-code { margin: 0; font: 500 11px/1 var(--tech); letter-spacing: .15em; opacity: .72; }
.card-icon { position: relative; width: 100px; height: 100px; margin: 62px 0 38px; }
.icon-burst { background: var(--red); clip-path: polygon(45% 0,58% 31%,83% 8%,73% 39%,100% 38%,75% 55%,95% 78%,63% 68%,57% 100%,43% 69%,17% 92%,27% 59%,0 51%,30% 40%,10% 17%,40% 30%); }
.icon-burst span { position: absolute; inset: 34px; background: var(--cyan); }
.icon-eye { width: 112px; height: 70px; margin-block: 75px 55px; border: 8px solid var(--ink); border-radius: 70% 8%; transform: rotate(45deg); }
.icon-eye span { position: absolute; inset: 17px; border-radius: 50%; background: var(--red); box-shadow: 6px -5px 0 var(--cyan); }
.icon-crop { border: 8px solid var(--ink); border-top-color: transparent; border-right-color: transparent; }
.icon-crop::before { content: ""; position: absolute; inset: 22px -18px -18px 22px; border: 8px solid var(--red); border-bottom-color: transparent; border-left-color: transparent; }
.ability-card h3 { margin: 0 0 18px; font-size: 31px; line-height: 1.2; }
.ability-card > p:not(.card-code) { max-width: 430px; margin: 0; color: inherit; opacity: .78; }
.tag-list { position: absolute; right: 30px; bottom: 27px; left: 30px; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.tag-list li { padding: 7px 10px; border: 1px solid currentColor; font: 500 10px/1 var(--tech); letter-spacing: .09em; opacity: .8; }
.card-jp { position: absolute; right: -12px; top: 70px; font-size: 82px; font-weight: 900; writing-mode: vertical-rl; opacity: .035; }
.ability-card-feature .card-jp { opacity: .065; }

.workflow {
  position: relative; padding: 150px max(32px, calc((100vw - var(--max)) / 2)); overflow: hidden; color: white; background: var(--ink); isolation: isolate;
}
.workflow::before { content: ""; position: absolute; z-index: -2; inset: 0; background: repeating-linear-gradient(115deg, transparent 0 58px, rgba(255,255,255,.025) 59px 60px); }
.workflow::after { content: "PROCESS"; position: absolute; z-index: -1; right: -2vw; top: 0; color: rgba(255,255,255,.025); font: 700 clamp(120px, 20vw, 360px)/1 var(--tech); }
.light { color: rgba(255,255,255,.72); }
.workflow-intro { display: grid; grid-template-columns: 1fr .55fr; column-gap: 80px; align-items: end; }
.workflow-intro .section-index { grid-column: 1 / -1; }
.workflow h2 { font-size: clamp(52px, 6vw, 100px); }
.workflow h2 span { color: var(--red); }
.workflow-intro > p:last-child { max-width: 450px; margin: 0 0 8px auto; color: rgba(255,255,255,.67); font-size: 17px; }
.workflow-steps { margin: 100px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.26); }
.workflow-step { position: relative; min-height: 300px; padding: 72px 28px 30px 0; border-right: 1px solid rgba(255,255,255,.15); }
.workflow-step:not(:first-child) { padding-left: 28px; }
.workflow-step::before { content: ""; position: absolute; width: 11px; height: 11px; top: -6px; left: 0; background: var(--cyan); box-shadow: 0 0 0 5px var(--ink); }
.workflow-step:not(:first-child)::before { left: 28px; }
.step-number { position: absolute; right: 18px; top: 17px; color: rgba(255,255,255,.08); font: 700 64px/1 var(--tech); }
.workflow-step small { color: var(--cyan); font: 600 10px/1 var(--tech); letter-spacing: .18em; }
.workflow-step h3 { margin: 18px 0 13px; font-size: 25px; }
.workflow-step p { max-width: 245px; margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }

.autoinstall { display: grid; grid-template-columns: .82fr 1.18fr; gap: 7vw; align-items: center; }
.autoinstall h2 { margin: 0; font-size: clamp(48px, 5.2vw, 86px); font-weight: 900; line-height: 1; letter-spacing: -.06em; }
.autoinstall-copy > p:not(.section-index) { max-width: 650px; margin: 34px 0; color: var(--ink-soft); font-size: 17px; }
.client-list { display: flex; flex-wrap: wrap; gap: 8px; }
.client-list span { padding: 9px 11px; border: 1px solid var(--ink); font: 600 10px/1 var(--tech); letter-spacing: .08em; box-shadow: 3px 3px 0 var(--cyan); }
.security-callout { margin-top: 42px; padding: 20px 22px; border-left: 5px solid var(--red); background: rgba(255,255,255,.46); }
.security-callout strong { font-size: 16px; }
.security-callout p { margin: 6px 0 0; color: var(--ink-soft); font-size: 13px; }
.agent-console { color: white; background: var(--ink); border: 1px solid var(--ink); box-shadow: 14px 14px 0 var(--red), 20px 20px 0 var(--cyan); font-family: var(--tech); }
.agent-console-bar { height: 46px; padding: 0 17px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.18); font-size: 11px; letter-spacing: .1em; }
.agent-console-bar span { margin-right: auto; }
.agent-console-bar i { width: 8px; height: 8px; margin-left: 8px; background: var(--red); }
.agent-console-bar i:nth-child(3) { background: var(--cyan); }
.agent-console-bar i:nth-child(4) { background: white; }
.agent-console ol { margin: 0; padding: 14px 24px; list-style: none; }
.agent-console li { min-height: 91px; display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.12); }
.agent-console li > b { color: rgba(255,255,255,.16); font-size: 25px; }
.agent-console li div { display: flex; flex-direction: column; }
.agent-console li small { color: var(--cyan); font-size: 8px; letter-spacing: .16em; }
.agent-console li strong { margin: 3px 0; font-family: var(--display); font-size: 15px; }
.agent-console li div span { color: rgba(255,255,255,.47); font-size: 10px; }
.agent-console li em { padding: 5px 7px; color: var(--cyan); border: 1px solid currentColor; font-size: 8px; font-style: normal; }
.agent-console li:nth-child(4) em { color: var(--red); }
.console-prompt { margin: 0; padding: 18px 24px; color: rgba(255,255,255,.6); background: rgba(0,0,0,.2); font-size: 10px; letter-spacing: .08em; }
.console-prompt > span:first-child { margin-right: 10px; color: var(--red); }
.console-cursor { color: var(--cyan); animation: signal 1s steps(2) infinite; }
.manifesto { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: center; }
.manifesto-art { position: relative; min-height: 580px; display: grid; place-items: center; overflow: hidden; color: white; background: var(--red); border: 1px solid var(--ink); box-shadow: 18px 18px 0 var(--ink); }
.massive-zero { color: transparent; font: 900 460px/.8 var(--tech); -webkit-text-stroke: 20px var(--ink); transform: scaleX(.8); }
.crosshair { position: absolute; color: var(--cyan); font: 300 170px/1 var(--tech); text-shadow: 9px 9px 0 var(--ink); }
.manifesto-art p { position: absolute; left: 25px; bottom: 17px; margin: 0; color: var(--ink); font: 700 12px/1.2 var(--tech); letter-spacing: .2em; }
.speed-lines { position: absolute; inset: 0; opacity: .28; background: repeating-radial-gradient(circle at 50% 50%, transparent 0 15px, var(--ink) 16px 17px); transform: scale(1.8); }
.manifesto-copy > p:not(.section-index) { max-width: 660px; margin: 34px 0; color: var(--ink-soft); font-size: 18px; }
.quote-block { position: relative; margin-top: 52px; padding: 24px 0 4px 30px; border-left: 5px solid var(--cyan); }
.quote-block > span { position: absolute; left: 18px; top: -22px; color: var(--red); font-size: 90px; font-weight: 900; }
.quote-block blockquote { position: relative; margin: 0 0 12px; font-size: 28px; font-weight: 800; }
.quote-block small { font: 500 10px/1 var(--tech); letter-spacing: .12em; }

.launch { position: relative; min-height: 650px; padding: 120px max(32px, calc((100vw - var(--max)) / 2)); overflow: hidden; display: flex; align-items: center; color: white; background: var(--red); isolation: isolate; }
.launch::after { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .15; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 42px 42px; }
.launch-content { position: relative; z-index: 4; width: 62%; }
.launch h2 { font-size: clamp(70px, 9vw, 150px); text-shadow: 8px 8px 0 var(--ink); }
.launch-content > p:not(.eyebrow) { margin: 28px 0; font-size: 18px; }
.button-white { color: var(--ink); background: white; border-color: white; box-shadow: 7px 7px 0 var(--ink); }
.button-white:hover { transform: translate(3px, 3px); box-shadow: 4px 4px 0 var(--cyan); }
.launch-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.launch-link { color: white; border-bottom: 1px solid white; font: 600 12px/1.7 var(--tech); letter-spacing: .08em; }
.launch-logo { position: absolute; z-index: 2; width: 48%; right: -4%; bottom: 4%; filter: brightness(0) invert(1); opacity: .23; transform: rotate(-7deg); }
.launch-glitch { position: absolute; right: -10px; top: -30px; color: transparent; font: 900 18vw/1 var(--tech); -webkit-text-stroke: 2px rgba(6,28,53,.2); transform: rotate(5deg); }

.site-footer { min-height: 95px; padding: 0 max(32px, calc((100vw - var(--max)) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 24px; color: white; background: var(--ink); font: 500 10px/1 var(--tech); letter-spacing: .14em; }
.site-footer a { color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes signal { 50% { opacity: .25; } }
@keyframes scan { from { top: 16%; } to { top: 80%; } }
@keyframes logoPulse { 0%, 88%, 100% { transform: none; filter: drop-shadow(8px 9px 0 rgba(0,217,238,.18)); } 89% { transform: translateX(-5px); filter: drop-shadow(12px 0 0 var(--red)); } 91% { transform: translateX(5px); filter: drop-shadow(-12px 0 0 var(--cyan)); } 93% { transform: none; } }
@keyframes scrollCue { 0%, 100% { transform: scaleX(.35); opacity: .4; } 50% { transform: scaleX(1); opacity: 1; } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1060px) {
  .hero { height: auto; min-height: 950px; grid-template-columns: 1fr; padding-top: 160px; }
  .hero h1 { white-space: normal; }
  .hero-copy { max-width: 800px; }
  .hero-visual { width: 88%; margin-left: auto; }
  .section-heading, .workflow-intro { grid-template-columns: 1fr; }
  .section-heading > p:last-child, .workflow-intro > p:last-child { max-width: 600px; margin: 28px 0 0; }
  .access-grid { grid-template-columns: 1fr 1fr; }
  .access-card:nth-child(3) { border-left: 1px solid var(--ink); }
  .ability-grid { grid-template-columns: 1fr 1fr; }
  .ability-card-feature { grid-column: 1 / -1; }
  .workflow-steps { grid-template-columns: 1fr 1fr; }
  .autoinstall, .manifesto { grid-template-columns: 1fr; }
  .agent-console { width: min(100%, 760px); }
  .manifesto-art { min-height: 480px; width: min(100%, 680px); }
  .launch-content { width: 80%; }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 36px); height: 72px; }
  .nav { display: none; }
  .header-cta { padding: 9px 10px; font-size: 10px; }
  .brand { font-size: 10px; gap: 9px; }
  .brand-mark { width: 32px; height: 32px; }
  .hero { min-height: 830px; padding: 120px 20px 90px; gap: 70px; }
  .hero h1 { font-size: clamp(48px, 16vw, 78px); }
  .outline { -webkit-text-stroke-width: 1.5px; }
  .hero-summary { font-size: 16px; }
  .hero-visual { width: 100%; }
  .logo-stage { padding: 48px 16px 43px; }
  .logo-stage::before { right: -10px; bottom: -12px; }
  .scroll-cue { display: none; }
  .section { width: calc(100% - 40px); padding-block: 100px; }
  .section-heading { margin-bottom: 45px; }
  .section-heading h2, .manifesto h2, .autoinstall h2 { font-size: 43px; }
  .api-terminal-row { flex-direction: column; }
  .api-terminal code { width: 100%; padding-block: 14px; }
  .copy-button { min-height: 42px; justify-content: center; border-top: 1px solid var(--ink); border-left: 0; }
  .access-grid { grid-template-columns: 1fr; }
  .access-card, .access-card:nth-child(3) { min-height: 310px; border-left: 1px solid var(--ink); }
  .ability-grid { grid-template-columns: 1fr; }
  .ability-card-feature { grid-column: auto; }
  .ability-card { min-height: 460px; padding: 26px; }
  .workflow { padding: 100px 20px; }
  .workflow h2 { font-size: 52px; }
  .workflow-steps { grid-template-columns: 1fr; margin-top: 70px; }
  .workflow-step { min-height: 230px; padding-left: 0 !important; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .workflow-step::before { left: 0 !important; }
  .autoinstall, .manifesto { gap: 80px; }
  .agent-console { box-shadow: 8px 8px 0 var(--red), 13px 13px 0 var(--cyan); }
  .agent-console ol { padding-inline: 16px; }
  .agent-console li { grid-template-columns: 34px 1fr; }
  .agent-console li em { display: none; }
  .manifesto-art { min-height: 390px; box-shadow: 10px 10px 0 var(--ink); }
  .massive-zero { font-size: 320px; }
  .launch { min-height: 610px; padding: 90px 20px; }
  .launch-content { width: 100%; }
  .launch h2 { font-size: clamp(64px, 23vw, 100px); }
  .launch-logo { width: 85%; right: -25%; bottom: 2%; }
  .site-footer { padding: 30px 20px; flex-direction: column; align-items: flex-start; }
  .site-footer p:nth-child(2) { display: none; }
}

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