:root {
  --ink: #10110f;
  --paper: #f3f0e8;
  --paper-deep: #e8e4d9;
  --white: #fffdf7;
  --muted: #6d6b63;
  --acid: #d9ff43;
  --orange: #f06432;
  --violet: #7759ea;
  --line: rgba(16,17,15,.16);
  --sans: "Manrope", system-ui, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --mono: "DM Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
code, pre { font-family: var(--mono); }
.skip-link { position: fixed; top: .7rem; left: .7rem; z-index: 100; padding: .75rem 1rem; background: var(--acid); color: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.site-header { width: min(1480px, calc(100% - 3rem)); min-height: 84px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 700; letter-spacing: -.035em; }
.brand-mark { width: 31px; height: 31px; display: flex; align-items: center; justify-content: center; gap: 3px; border-radius: 50%; background: var(--ink); }
.brand-mark i { display: block; width: 7px; height: 16px; border: 2px solid var(--paper); border-top: 0; border-bottom: 0; transform: skew(-12deg); }
.brand-mark i:last-child { transform: skew(12deg); }
.site-header nav { display: flex; align-items: center; gap: 2rem; font-size: .82rem; font-weight: 600; }
.site-header nav > a:not(.nav-cta) { color: var(--muted); }
.site-header nav > a:hover { color: var(--ink); }
.nav-cta { display: inline-flex; align-items: center; gap: 1.2rem; padding: .72rem 1rem; border: 1px solid var(--ink); border-radius: 2px; }
.nav-cta:hover { background: var(--ink); color: var(--paper) !important; }
.hero { width: min(1480px, calc(100% - 3rem)); min-height: calc(100vh - 84px); margin: 0 auto; padding: 7rem 0; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(490px, .92fr); align-items: center; gap: 6vw; }
.eyebrow, .section-label { margin: 0; font: 500 .67rem/1.4 var(--mono); text-transform: uppercase; letter-spacing: .13em; }
.eyebrow { color: var(--violet); display: flex; align-items: center; gap: .65rem; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(240,100,50,.15); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 1.5rem 0 2rem; font-size: clamp(4rem, 7.1vw, 7.7rem); line-height: .87; letter-spacing: -.065em; }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; color: var(--violet); }
.hero-lede { max-width: 650px; font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.65; color: var(--muted); }
.hero-actions { margin-top: 2.5rem; display: flex; align-items: center; gap: 2rem; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 1.3rem; padding: 1rem 1.25rem; border-radius: 2px; font-size: .83rem; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--paper); box-shadow: 7px 7px 0 var(--acid); }
.text-link { padding-bottom: .2rem; border-bottom: 1px solid var(--ink); font-size: .82rem; font-weight: 700; }
.hero-console { border: 1px solid var(--ink); background: var(--ink); color: #eae9e2; box-shadow: 14px 14px 0 var(--acid); }
.console-bar { height: 48px; display: flex; align-items: center; gap: 6px; padding: 0 1rem; border-bottom: 1px solid #363733; }
.console-bar span { width: 8px; height: 8px; border-radius: 50%; background: #50514d; }
.console-bar span:first-child { background: var(--orange); }
.console-bar b { margin-left: auto; color: #81827c; font: 400 .62rem var(--mono); }
.hero-console pre { min-height: 240px; margin: 0; padding: 2rem; font-size: clamp(.68rem, .9vw, .85rem); line-height: 1.85; overflow: auto; }
.prompt { color: var(--acid); }
.task-status { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border-top: 1px solid #363733; border-bottom: 1px solid #363733; }
.task-status div { position: relative; padding: 1.2rem; border-right: 1px solid #363733; display: flex; flex-direction: column; gap: .35rem; }
.task-status div:last-child { border: 0; }
.task-status small { color: #72736e; font: 400 .55rem var(--mono); letter-spacing: .1em; }
.task-status strong { font: 500 .74rem var(--mono); color: var(--acid); }
.pulse { position: absolute; right: 1rem; top: 1rem; width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(217,255,67,.08); }
.receipt { min-height: 56px; padding: 0 1.2rem; display: flex; align-items: center; gap: 1rem; font-size: .62rem; }
.receipt span { color: #72736e; }
.receipt code { color: #c6c5bd; overflow: hidden; text-overflow: ellipsis; }
.receipt b { margin-left: auto; color: var(--acid); }
.flow, .contract, .providers { width: min(1280px, calc(100% - 3rem)); margin: 0 auto; padding: 9rem 0; }
.flow { border-top: 1px solid var(--line); }
.section-label { color: var(--orange); }
.flow-track { margin: 3rem 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.flow-track div { min-width: 140px; display: flex; flex-direction: column; gap: .35rem; }
.flow-track span { color: var(--violet); font: 400 .65rem var(--mono); }
.flow-track strong { font-size: 1.1rem; }
.flow-track small { color: var(--muted); font-size: .7rem; }
.flow-track i { font-style: normal; color: var(--orange); }
.flow-note { max-width: 710px; margin: 4rem 0 0 auto; padding-left: 2rem; border-left: 1px solid var(--orange); color: var(--muted); line-height: 1.7; }
.contract { width: min(1480px, calc(100% - 3rem)); }
.section-heading { display: grid; grid-template-columns: 1.5fr .5fr; gap: 8vw; align-items: end; margin-bottom: 5rem; }
.section-heading h2, .provider-intro h2, .settlement h2, .closing h2 { margin: 1.5rem 0 0; font-size: clamp(3rem, 5vw, 5.6rem); line-height: .95; letter-spacing: -.055em; }
.section-heading > p { color: var(--muted); line-height: 1.75; margin: 0; }
.contract-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.contract-grid article { min-height: 300px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; transition: background .2s ease; }
.contract-grid article:hover { background: var(--white); }
.contract-grid span { color: var(--violet); font: 400 .7rem var(--mono); }
.contract-grid h3 { margin: auto 0 1rem; font-size: 1.35rem; }
.contract-grid p { margin: 0; color: var(--muted); line-height: 1.65; font-size: .9rem; }
.providers { width: min(1480px, calc(100% - 3rem)); padding-top: 11rem; }
.provider-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; margin: 2.5rem 0 5rem; }
.provider-intro h2 { margin: 0; }
.provider-intro > p { max-width: 510px; margin: 0; color: var(--muted); line-height: 1.75; }
.provider-list { border-top: 1px solid var(--ink); }
.provider { display: grid; grid-template-columns: 70px .7fr 1.15fr .6fr; gap: 2rem; align-items: center; padding: 2.4rem 0; border-bottom: 1px solid var(--line); }
.provider-index { width: 48px; height: 48px; border: 1px solid var(--ink); display: grid; place-items: center; font: 500 .8rem var(--mono); }
.provider:nth-child(2) .provider-index { background: var(--acid); }
.provider:nth-child(3) .provider-index { background: var(--violet); color: white; }
.provider-tag { margin-bottom: .5rem; color: var(--orange); font: 400 .61rem var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.provider h3 { margin: 0; font-size: 1.65rem; }
.provider > p { margin: 0; color: var(--muted); line-height: 1.65; }
.provider > span { color: var(--muted); font: 400 .62rem var(--mono); text-transform: uppercase; letter-spacing: .07em; }
.settlement { width: min(1480px, calc(100% - 1.5rem)); margin: 2rem auto 9rem; display: grid; grid-template-columns: 1.35fr .65fr; background: var(--ink); color: var(--paper); }
.settlement-card { padding: clamp(3rem, 7vw, 7rem); border-right: 1px solid #343531; }
.settlement-card h2 { max-width: 720px; }
.settlement-card > p:not(.section-label) { max-width: 710px; color: #a8a8a1; line-height: 1.75; }
.split { display: flex; height: 60px; margin-top: 3rem; }
.split span { flex: 1; padding: 0 1rem; display: flex; align-items: center; gap: .5rem; background: var(--orange); color: var(--ink); font: 500 .68rem var(--mono); text-transform: uppercase; }
.split span:first-child { flex: 5.67; background: var(--acid); }
.split b { font-size: 1rem; }
.settlement-aside { padding: 4rem; display: flex; flex-direction: column; justify-content: flex-end; }
.settlement-aside p { color: #a8a8a1; line-height: 1.75; }
.settlement-aside a { margin-top: 2rem; display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid #555650; color: var(--acid); font-size: .78rem; font-weight: 700; }
.closing { width: min(1480px, calc(100% - 3rem)); min-height: 650px; margin: 0 auto; padding: clamp(3rem, 7vw, 7rem); display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; background: var(--violet); color: white; overflow: hidden; }
.closing .section-label { color: var(--acid); }
.closing h2 em { color: var(--acid); }
.closing-copy > p:not(.section-label) { max-width: 600px; color: rgba(255,255,255,.7); line-height: 1.7; }
.button-light { margin-top: 1rem; background: var(--white); color: var(--violet); }
.closing-mark { position: relative; justify-self: center; width: min(390px, 34vw); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; gap: 1rem; box-shadow: 0 0 0 50px rgba(255,255,255,.035), 0 0 0 100px rgba(255,255,255,.025); }
.closing-mark span { width: 74px; height: 98px; border: 2px solid white; display: grid; place-items: center; font: 500 2rem var(--mono); }
.closing-mark span:last-child { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.closing-mark i { font-style: normal; color: var(--acid); font-size: 2rem; }
body > footer { width: min(1480px, calc(100% - 3rem)); min-height: 130px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 3rem; color: var(--muted); font-size: .72rem; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-console { max-width: 720px; }
  .flow-track { display: grid; grid-template-columns: 1fr; gap: 0; }
  .flow-track div { padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
  .flow-track i { display: none; }
  .section-heading, .provider-intro { grid-template-columns: 1fr; align-items: start; }
  .contract-grid { grid-template-columns: repeat(2, 1fr); }
  .provider { grid-template-columns: 60px 1fr 1.4fr; }
  .provider > span { display: none; }
  .settlement { grid-template-columns: 1fr; }
  .settlement-card { border-right: 0; border-bottom: 1px solid #343531; }
}
@media (max-width: 680px) {
  .site-header { width: calc(100% - 2rem); min-height: 72px; }
  .site-header nav > a:not(.nav-cta) { display: none; }
  .hero, .flow, .contract, .providers { width: calc(100% - 2rem); }
  .hero { padding: 5rem 0; grid-template-columns: minmax(0, 1fr); }
  h1 { font-size: clamp(3.5rem, 17vw, 5.5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-console { box-shadow: 7px 7px 0 var(--acid); }
  .hero-console pre { min-height: 210px; padding: 1.25rem; font-size: .61rem; }
  .task-status { grid-template-columns: 1fr; }
  .task-status div { border-right: 0; border-bottom: 1px solid #363733; }
  .task-status div:last-child { border-bottom: 0; }
  .flow, .contract, .providers { padding: 6rem 0; }
  .contract-grid { grid-template-columns: 1fr; }
  .contract-grid article { min-height: 250px; }
  .provider { grid-template-columns: 50px 1fr; align-items: start; }
  .provider > p { grid-column: 2; }
  .settlement { width: calc(100% - 1rem); }
  .settlement-aside { padding: 2.5rem 1.5rem; }
  .split { height: auto; flex-direction: column; }
  .split span, .split span:first-child { flex: auto; padding: 1rem; }
  .closing { width: calc(100% - 1rem); grid-template-columns: 1fr; min-height: 640px; }
  .closing-mark { width: 230px; margin: 5rem auto 2rem; }
  body > footer { width: calc(100% - 2rem); grid-template-columns: 1fr auto; }
  body > footer > p:first-of-type { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
