:root {
  --ink: #11120f;
  --ink-soft: #1a1c18;
  --paper: #f1eee6;
  --paper-deep: #e5e0d4;
  --acid: #b9f227;
  --acid-dark: #7aa400;
  --orange: #ff5c35;
  --muted: #777970;
  --line: rgba(17, 18, 15, 0.16);
  --mono: "IBM Plex Mono", monospace;
  --sans: "Space Grotesk", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
  --shell: min(1380px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.035;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
::selection { color: var(--ink); background: var(--acid); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 200; padding: 12px 18px; background: var(--acid); transition: top .25s var(--ease-out); }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.site-header {
  width: var(--shell);
  height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  position: relative;
  z-index: 10;
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; font-family: var(--mono); font-size: 12px; font-weight: 600; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; color: var(--ink); background: var(--acid); font-weight: 600; letter-spacing: -.1em; }
nav { display: flex; gap: 34px; }
nav a, .header-cta { position: relative; transition: color .35s var(--ease-out); }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--ink); transition: right .35s var(--ease-out); }
nav a:hover::after { right: 0; }
.header-cta { justify-self: end; border-bottom: 1px solid var(--ink); padding-bottom: 5px; }

.hero {
  width: var(--shell);
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr);
  gap: clamp(30px, 5vw, 90px);
  align-items: center;
  padding: 70px 0 82px;
}
.eyebrow, .section-index { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 34px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--acid-dark); box-shadow: 0 0 0 6px rgba(122,164,0,.12); animation: pulse 2.4s var(--ease-in-out) infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 11px rgba(122,164,0,0); } }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 0; font-size: clamp(68px, 8.15vw, 132px); line-height: .79; letter-spacing: -.078em; font-weight: 600; text-wrap: balance; }
.hero-line { display: block; transform: translateY(115%); opacity: 0; animation: hero-in .9s var(--ease-out) forwards; }
.hero-line:nth-child(2) { animation-delay: 90ms; }
.hero-line:nth-child(3) { animation-delay: 180ms; }
@keyframes hero-in { to { transform: translateY(0); opacity: 1; } }
.hero-line-accent { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.hero-bottom { display: grid; grid-template-columns: minmax(230px, 430px) 1fr; gap: 42px; align-items: end; margin-top: 46px; }
.hero-bottom p { margin: 0; color: #4e504a; font-size: 17px; line-height: 1.58; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 0 22px; border: 1px solid var(--ink); font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: transform .4s var(--ease-out), background-color .4s var(--ease-out), color .4s var(--ease-out); }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--paper); background: var(--ink); }
.button-primary:hover { color: var(--ink); background: var(--acid); }
.button-ghost { min-height: 38px; padding: 0; border: 0; border-bottom: 1px solid var(--ink); background: transparent; }

.terminal-wrap { position: relative; min-height: 560px; display: grid; place-items: center; perspective: 1200px; }
.terminal { width: min(100%, 520px); color: #e9ebdf; background: var(--ink); border: 1px solid rgba(185,242,39,.25); box-shadow: 0 35px 70px rgba(17,18,15,.18); transform: rotateY(-4deg) rotateX(2deg); transition: transform .8s var(--ease-out); position: relative; z-index: 2; }
.terminal-wrap:hover .terminal { transform: rotateY(0) rotateX(0) translateY(-5px); }
.terminal-bar { height: 48px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 16px; border-bottom: 1px solid rgba(255,255,255,.11); color: #8f928a; font-family: var(--mono); font-size: 9px; }
.terminal-bar > :last-child { justify-self: end; color: var(--acid); }
.terminal-dots { display: flex; gap: 6px; }
.terminal-dots i { width: 7px; height: 7px; border-radius: 50%; background: #55584f; }
.terminal-body { min-height: 440px; padding: 34px 32px; font-family: var(--mono); font-size: 12px; line-height: 1.75; }
.terminal-body p { margin: 0 0 20px; }
.prompt, .flag, .terminal-success, .file-tree b { color: var(--acid); }
.terminal-muted { color: #74786f; }
.terminal-progress { height: 3px; margin: 22px 0 14px; background: rgba(255,255,255,.08); overflow: hidden; }
.terminal-progress span { display: block; width: 42%; height: 100%; background: var(--acid); animation: load 2.8s var(--ease-in-out) infinite; }
@keyframes load { 0% { transform: translateX(-110%); } 60%, 100% { transform: translateX(245%); } }
.file-tree { display: flex; flex-direction: column; color: #a8aca2; padding-top: 8px; }
.file-tree span { display: block; }
.terminal-cursor { width: 8px; height: 17px; margin-top: 24px; background: var(--acid); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.terminal-note { position: absolute; z-index: 3; padding: 9px 12px; color: var(--ink); background: var(--acid); font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: .08em; box-shadow: 8px 8px 0 var(--ink); }
.note-top { top: 68px; right: -18px; transform: rotate(4deg); }
.note-bottom { left: -30px; bottom: 70px; transform: rotate(-3deg); }
.terminal-orbit { position: absolute; border: 1px solid rgba(17,18,15,.17); border-radius: 50%; }
.orbit-one { width: 510px; height: 510px; }
.orbit-two { width: 360px; height: 620px; transform: rotate(36deg); }

.ticker { color: var(--paper); background: var(--ink); border-top: 1px solid var(--acid); border-bottom: 1px solid var(--acid); overflow: hidden; }
.ticker-track { width: max-content; height: 58px; display: flex; align-items: center; gap: 34px; animation: ticker 24s linear infinite; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; }
.ticker-track i { width: 7px; height: 7px; background: var(--acid); transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-shell { width: var(--shell); margin: 0 auto; padding: 132px 0; }
.section-index { padding-bottom: 20px; border-bottom: 1px solid var(--line); color: var(--muted); }
.problem-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 90px; margin-top: 64px; }
.problem h2, .section-heading h2, .features-heading h2, .install h2, .faq h2 { font-size: clamp(52px, 6.3vw, 96px); line-height: .92; letter-spacing: -.058em; font-weight: 500; }
.problem h2 em { color: var(--orange); font-family: Georgia, serif; font-weight: 400; }
.problem-copy { max-width: 520px; padding-top: 8px; }
.problem-copy p { color: #55574f; font-size: 18px; line-height: 1.65; }
.problem-copy p + p { margin-top: 26px; }
.contrast-strip { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; margin-top: 92px; padding: 34px; border: 1px solid var(--line); }
.contrast-strip > div:not(.contrast-arrow) { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 5px 20px; }
.contrast-strip span { grid-row: 1 / 3; font-family: var(--mono); font-size: 10px; color: var(--muted); }
.contrast-strip strong { font-size: 22px; }
.contrast-strip small { color: var(--muted); }
.contrast-arrow { font-size: 30px; color: var(--orange); }

.workflow { padding-top: 70px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-top: 58px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { width: 300px; color: var(--muted); font-size: 16px; }
.steps { list-style: none; margin: 92px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps li { min-height: 470px; padding: 26px 30px 34px; border-right: 1px solid var(--line); position: relative; }
.steps li:last-child { border-right: 0; }
.step-number { font-family: var(--mono); font-size: 10px; color: var(--muted); }
.step-icon { height: 190px; margin: 48px 0 24px; border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; position: relative; }
.scan-lines { width: 65%; height: 62%; background: repeating-linear-gradient(to bottom, var(--ink) 0 2px, transparent 2px 12px); opacity: .55; }
.step-icon::after { content: ""; position: absolute; width: 100%; height: 2px; background: var(--orange); box-shadow: 0 0 14px var(--orange); animation: scan 3s var(--ease-in-out) infinite; }
@keyframes scan { 0%, 100% { transform: translateY(-90px); } 50% { transform: translateY(90px); } }
.step-transform { grid-template-columns: 1fr 1fr; font-family: var(--mono); }
.step-transform::before { content: "→"; position: absolute; z-index: 2; width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink); background: var(--acid); }
.step-transform i, .step-transform b { height: 100%; display: grid; place-items: center; font-style: normal; font-size: 17px; }
.step-transform i { color: var(--muted); background: var(--paper-deep); }
.step-transform b { color: var(--paper); background: var(--ink); }
.step-continue span { font-size: 82px; color: var(--acid-dark); transition: transform .5s var(--ease-out); }
.steps li:hover .step-continue span { transform: translateX(18px); }
.steps h3 { margin-bottom: 12px; font-size: 30px; letter-spacing: -.04em; }
.steps p { max-width: 310px; color: var(--muted); line-height: 1.55; }
code { font-family: var(--mono); font-size: .86em; }

.features { width: 100%; max-width: none; padding-left: max(32px, calc((100vw - 1380px) / 2)); padding-right: max(32px, calc((100vw - 1380px) / 2)); color: var(--paper); background: var(--ink); }
.section-index.light { color: #898d82; border-color: rgba(255,255,255,.13); }
.features-heading { margin: 62px 0 80px; }
.features-heading h2 span { color: var(--acid); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.feature { min-height: 420px; padding: 32px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); position: relative; overflow: hidden; }
.feature-wide { grid-column: span 1; }
.feature-code { font-family: var(--mono); font-size: 10px; color: #898d82; }
.feature h3 { margin: 220px 0 12px; font-size: 31px; letter-spacing: -.035em; }
.feature p { max-width: 520px; margin-bottom: 0; color: #a9aca3; line-height: 1.6; }
.redaction-demo { position: absolute; left: 32px; right: 32px; top: 110px; padding: 22px; border: 1px solid rgba(185,242,39,.28); font-family: var(--mono); font-size: 13px; }
.redaction-demo b { margin-left: 4px; color: var(--acid); letter-spacing: -.08em; }
.redaction-demo i { float: right; color: #898d82; font-size: 10px; font-style: normal; }
.filter-stack { position: absolute; top: 95px; right: 32px; left: 32px; display: flex; gap: 8px; flex-wrap: wrap; }
.filter-stack span, .format-pills span { padding: 12px 16px; color: var(--acid); border: 1px solid rgba(185,242,39,.35); font-family: var(--mono); font-size: 12px; }
.format-pills { position: absolute; top: 90px; display: flex; align-items: center; gap: 16px; }
.format-pills span { width: 88px; height: 88px; display: grid; place-items: center; border-radius: 50%; }
.format-pills span:last-child { color: var(--orange); border-color: rgba(255,92,53,.4); transform: translateX(-20px); }
.feature-accent { color: var(--ink); background: var(--acid); }
.feature-accent .feature-code, .feature-accent p { color: rgba(17,18,15,.62); }
.local-mark { position: absolute; right: -5px; top: 45px; font-size: clamp(58px, 7vw, 106px); line-height: .72; letter-spacing: -.08em; font-weight: 700; opacity: .14; }
.local-mark span { display: block; }

.use-case-list { margin-top: 54px; }
.use-case-list article { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 34px; align-items: center; padding: 36px 0; border-bottom: 1px solid var(--line); transition: padding .4s var(--ease-out); }
.use-case-list article:hover { padding-left: 16px; }
.use-case-list span { font-family: var(--mono); font-size: 11px; color: var(--orange); }
.use-case-list h3 { margin: 0; font-size: 31px; letter-spacing: -.04em; }
.use-case-list p { max-width: 500px; margin: 0; color: var(--muted); line-height: 1.55; }

.install { width: 100%; max-width: none; padding-left: max(32px, calc((100vw - 1380px) / 2)); padding-right: max(32px, calc((100vw - 1380px) / 2)); color: var(--paper); background: var(--ink); position: relative; overflow: hidden; }
.install-glow { position: absolute; right: -15vw; bottom: -42vw; width: 75vw; height: 75vw; border-radius: 50%; background: var(--acid); filter: blur(160px); opacity: .12; }
.install-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: end; margin-top: 64px; position: relative; }
.install h2 { margin-bottom: 22px; }
.install-grid p { color: #92968a; font-family: var(--mono); font-size: 11px; }
.command-card { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.025); position: relative; }
.command-tabs { height: 48px; display: flex; align-items: center; gap: 24px; padding: 0 20px; border-bottom: 1px solid rgba(255,255,255,.13); font-family: var(--mono); font-size: 9px; color: #7e8278; }
.command-tabs span:first-child { color: var(--acid); }
.command-card code { display: block; min-height: 160px; padding: 34px 74px 30px 28px; color: #d9ddd1; font-size: clamp(12px, 1.2vw, 16px); line-height: 1.8; }
.command-card code span { color: var(--acid); }
.command-card button { position: absolute; right: 16px; bottom: 16px; padding: 9px 12px; color: var(--ink); background: var(--acid); border: 0; font-family: var(--mono); font-size: 9px; text-transform: uppercase; cursor: pointer; }
.install-actions { display: flex; align-items: center; gap: 28px; margin-top: 58px; position: relative; }
.button-light { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button-light:hover { background: var(--acid); border-color: var(--acid); }
.text-link { border-bottom: 1px solid #777b71; padding-bottom: 5px; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; margin-top: 64px; }
.faq h2 { margin-bottom: 0; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; padding: 26px 0; display: flex; justify-content: space-between; gap: 30px; cursor: pointer; font-size: 19px; font-weight: 500; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-family: var(--mono); transition: transform .4s var(--ease-out); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 620px; padding: 0 42px 28px 0; color: var(--muted); line-height: 1.6; }

footer { width: var(--shell); min-height: 150px; margin: 0 auto; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; font-family: var(--mono); font-size: 10px; color: var(--muted); }
footer p { margin: 0; text-align: center; }
footer > div { display: flex; justify-content: flex-end; gap: 24px; }
footer a:last-child { color: var(--ink); }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --shell: calc(100vw - 40px); }
  nav { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; padding-top: 78px; }
  .hero-copy { max-width: 900px; }
  .terminal-wrap { min-height: 620px; }
  .problem-grid, .install-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .problem-copy { margin-left: 25%; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: auto; display: grid; grid-template-columns: 54px 220px 1fr; gap: 22px; align-items: center; border-right: 0; border-bottom: 1px solid var(--line); }
  .step-icon { margin: 0; height: 160px; }
  .steps p { grid-column: 3; }
  .use-case-list article { grid-template-columns: 60px 1fr; }
  .use-case-list p { grid-column: 2; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100vw - 28px); }
  .site-header { height: 72px; }
  .brand > span:last-child { display: none; }
  .hero { min-height: auto; padding: 58px 0 70px; }
  h1 { font-size: clamp(58px, 18vw, 92px); line-height: .82; }
  .hero-bottom { grid-template-columns: 1fr; gap: 28px; }
  .terminal-wrap { min-height: 500px; }
  .terminal { transform: none; }
  .terminal-body { min-height: 380px; padding: 24px 20px; font-size: 10px; }
  .terminal-note, .terminal-orbit { display: none; }
  .section-shell { padding: 88px 0; }
  .problem h2, .section-heading h2, .features-heading h2, .install h2, .faq h2 { font-size: 50px; }
  .problem-copy { margin-left: 0; }
  .contrast-strip { grid-template-columns: 1fr; }
  .contrast-arrow { transform: rotate(90deg); }
  .section-heading { display: block; }
  .section-heading p { width: auto; margin-top: 24px; }
  .steps { margin-top: 52px; }
  .steps li { display: block; padding: 28px 0 38px; }
  .step-icon { height: 170px; margin: 24px 0; }
  .steps p { max-width: none; }
  .features, .install { padding-left: 14px; padding-right: 14px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: 390px; }
  .use-case-list article { grid-template-columns: 38px 1fr; gap: 18px; }
  .use-case-list h3 { font-size: 25px; }
  .install-grid { gap: 30px; }
  .command-card code { font-size: 11px; }
  .faq-grid { gap: 30px; }
  footer { grid-template-columns: 1fr 1fr; padding: 32px 0; }
  footer p { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .hero-line, [data-reveal] { opacity: 1; transform: none; }
}
