:root{
  --ink:#050505;
  --panel:#0b0b09;
  --panel-2:#12120f;
  --paper:#fff4d0;
  --muted:rgba(255,244,208,.7);
  --soft:rgba(255,244,208,.52);
  --line:rgba(255,244,208,.14);
  --line-strong:rgba(255,244,208,.24);
  --acid:#ecff59;
  --cyan:#7fd7ff;
  --orange:#ff6d4d;
  --green:#77ffb8;
  --display:'Instrument Serif', Georgia, serif;
  --sans:'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  color-scheme:dark;
  font-synthesis-weight:none;
  text-rendering:optimizeLegibility;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  min-width:320px;
  scroll-behavior:smooth;
  scroll-padding-top:96px;
  background:var(--ink);
}

body{
  min-width:320px;
  margin:0;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(255,109,77,.16), transparent 31vw),
    radial-gradient(circle at 86% 20%, rgba(127,215,255,.12), transparent 32vw),
    linear-gradient(180deg, #050505 0%, #090907 38%, #050505 100%);
  color:var(--paper);
  font-family:var(--sans);
  letter-spacing:0;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,244,208,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,244,208,.018) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.7), transparent 72%);
}

a{
  color:inherit;
}

section[id]{
  scroll-margin-top:96px;
}

img{
  max-width:100%;
  display:block;
}

button,
input,
textarea,
select{
  font:inherit;
}

button{
  color:inherit;
}

.wrap{
  width:min(1180px, calc(100% - 44px));
  margin:0 auto;
}

.skip{
  position:absolute;
  left:12px;
  top:12px;
  z-index:200;
  padding:10px 12px;
  border-radius:8px;
  background:var(--paper);
  color:#050505;
  transform:translateY(-140%);
}

.skip:focus{
  transform:translateY(0);
}

.topbar{
  position:sticky;
  top:0;
  z-index:80;
  border-bottom:1px solid rgba(255,244,208,.08);
  background:rgba(5,5,5,.72);
  backdrop-filter:blur(18px);
}

.nav{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}

.brand img{
  width:clamp(142px, 13vw, 190px);
  height:auto;
}

.navlinks{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  min-width:0;
}

.navlinks a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 12px;
  border:1px solid transparent;
  border-radius:8px;
  color:rgba(255,244,208,.7);
  font-family:var(--mono);
  font-size:11px;
  font-weight:700;
  letter-spacing:.02em;
  text-decoration:none;
  text-transform:uppercase;
  transition:background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.navlinks a:hover{
  border-color:rgba(255,244,208,.14);
  background:rgba(255,244,208,.04);
  color:var(--paper);
}

.navlinks .nav-cta{
  border-color:rgba(236,255,89,.42);
  background:rgba(236,255,89,.1);
  color:var(--paper);
}

.nav-cta .short-label{
  display:none;
}

.hero{
  min-height:auto;
  padding:clamp(34px, 4.7vw, 58px) 0 clamp(24px, 3vw, 36px);
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,.96fr) minmax(430px,1.04fr);
  align-items:center;
  gap:clamp(28px, 5vw, 72px);
}

.hero-copy{
  max-width:780px;
}

.eyebrow,
.kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:rgba(236,255,89,.84);
  font-family:var(--mono);
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  line-height:1.3;
  text-transform:uppercase;
}

.signal{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--acid);
  box-shadow:0 0 20px rgba(236,255,89,.7);
}

h1,
h2,
h3,
p{
  margin:0;
}

h1{
  max-width:860px;
  margin-top:20px;
  color:var(--paper);
  font-family:var(--display);
  font-size:clamp(60px, 6.8vw, 96px);
  font-weight:400;
  letter-spacing:0;
  line-height:.86;
  text-wrap:balance;
}

h1 span{
  display:block;
}

h1 span:nth-child(3){
  color:var(--acid);
  text-shadow:0 0 42px rgba(236,255,89,.18);
}

.lead{
  max-width:620px;
  margin:24px 0 28px;
  color:var(--muted);
  font-size:clamp(17px, 1.35vw, 21px);
  line-height:1.5;
}

.hero-actions,
.cta-stack{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.btn,
.card-link,
.project-links a{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border:1px solid rgba(255,244,208,.16);
  border-radius:8px;
  background:rgba(255,244,208,.04);
  color:var(--paper);
  font-family:var(--mono);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1.1;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  transition:transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.btn.primary,
.card-link{
  border-color:rgba(236,255,89,.62);
  background:linear-gradient(135deg, rgba(236,255,89,.9), rgba(127,215,255,.7));
  color:#050505;
  box-shadow:0 18px 44px rgba(236,255,89,.16);
}

.btn.secondary{
  border-color:rgba(255,244,208,.22);
}

.btn.tertiary{
  border-color:rgba(127,215,255,.36);
  color:rgba(200,235,255,.92);
}

.btn:hover,
.card-link:hover,
.project-links a:hover{
  transform:translateY(-1px);
}

.btn:active,
.card-link:active,
.project-links a:active{
  transform:translateY(0);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.card-link:focus-visible{
  outline:2px solid var(--acid);
  outline-offset:4px;
}

[aria-disabled="true"],
.is-disabled{
  cursor:not-allowed;
  opacity:.48;
  pointer-events:none;
}

.is-loading{
  cursor:progress;
}

.is-success{
  border-color:rgba(119,255,184,.62);
  box-shadow:0 0 0 1px rgba(119,255,184,.26);
}

.is-error{
  border-color:rgba(255,109,77,.72);
  box-shadow:0 0 0 1px rgba(255,109,77,.24);
}

.cta-next-step{
  margin-top:17px;
  color:rgba(255,244,208,.56);
  font-family:var(--mono);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1.35;
  text-transform:uppercase;
}

.hero-os-column{
  position:relative;
  height:clamp(360px, 32vw, 456px);
  min-height:360px;
  perspective:1200px;
}

.workflow-theater{
  position:relative;
  height:100%;
  overflow:hidden;
  border:1px solid rgba(255,244,208,.14);
  border-radius:14px;
  background:
    linear-gradient(135deg, rgba(255,244,208,.08), rgba(255,244,208,.025) 38%, rgba(127,215,255,.05)),
    rgba(8,8,7,.88);
  box-shadow:0 48px 120px rgba(0,0,0,.54), inset 0 1px 0 rgba(255,255,255,.08);
  transform:rotateX(calc(var(--hero-y, 0) * -1.8deg)) rotateY(calc(var(--hero-x, 0) * 2.1deg));
  transition:transform .18s ease;
}

.workflow-theater::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.05), transparent 22%, transparent 78%, rgba(255,255,255,.04));
}

.theater-hud{
  position:absolute;
  top:16px;
  left:18px;
  right:18px;
  z-index:3;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,244,208,.62);
  font-family:var(--mono);
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.theater-hud b{
  color:var(--acid);
}

.theater-stage{
  position:absolute;
  inset:64px 24px 32px;
}

.theater-routes{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:.88;
}

.theater-routes .route{
  fill:none;
  stroke:url(#theaterRoute);
  stroke-width:3;
  stroke-linecap:round;
  filter:url(#theaterGlow);
  opacity:.8;
}

.theater-routes .route-secondary{
  opacity:.45;
}

.theater-routes .route-quiet{
  opacity:.24;
}

.theater-card,
.theater-output{
  position:absolute;
  z-index:4;
  width:184px;
  min-height:66px;
  padding:13px;
  border:1px solid rgba(255,244,208,.15);
  border-radius:10px;
  background:rgba(5,5,5,.76);
  box-shadow:0 18px 50px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.055);
}

.theater-card span,
.theater-output span{
  display:block;
  color:rgba(236,255,89,.82);
  font-family:var(--mono);
  font-size:9px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.theater-card b,
.theater-output b{
  display:block;
  margin-top:8px;
  color:var(--paper);
  font-family:var(--display);
  font-size:18px;
  font-weight:400;
  line-height:1.03;
  letter-spacing:0;
}

.theater-card small,
.theater-output small{
  display:none;
  margin-top:7px;
  color:rgba(255,244,208,.52);
  font-size:11px;
  line-height:1.35;
}

.theater-card.is-active,
.theater-output.is-active{
  border-color:rgba(236,255,89,.52);
  box-shadow:0 0 0 1px rgba(236,255,89,.18), 0 20px 60px rgba(236,255,89,.1);
}

.theater-card-manual{
  left:4%;
  top:55%;
}

.theater-card-map{
  left:5%;
  top:19%;
}

.theater-card-review{
  right:5%;
  top:19%;
}

.theater-card-run{
  right:5%;
  top:55%;
}

.theater-output{
  left:24px;
  right:24px;
  bottom:10px;
  width:auto;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.theater-core{
  position:absolute;
  left:50%;
  top:50%;
  z-index:5;
  width:146px;
  height:146px;
  display:grid;
  place-items:center;
  align-content:center;
  padding:18px;
  border:1px solid rgba(236,255,89,.34);
  border-radius:50%;
  background:radial-gradient(circle, rgba(236,255,89,.16), rgba(5,5,5,.92) 68%);
  box-shadow:0 0 70px rgba(236,255,89,.14), inset 0 0 30px rgba(236,255,89,.08);
  transform:translate(-50%,-50%);
  text-align:center;
}

.theater-core span{
  color:var(--acid);
  font-family:var(--mono);
  font-size:11px;
  font-weight:900;
}

.theater-core b{
  color:var(--paper);
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.12em;
}

.theater-core small{
  margin-top:5px;
  color:rgba(255,244,208,.56);
  font-family:var(--mono);
  font-size:8px;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.theater-footer{
  position:absolute;
  left:18px;
  right:18px;
  bottom:14px;
  display:none;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:8px;
  color:rgba(255,244,208,.55);
  font-family:var(--mono);
  font-size:9px;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.theater-footer span{
  min-width:0;
  padding:8px;
  border:1px solid rgba(255,244,208,.1);
  border-radius:7px;
  text-align:center;
}

.theater-meter{
  position:absolute;
  z-index:2;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,244,208,.08);
}

.theater-meter span{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg, var(--orange), var(--acid), var(--cyan));
  animation:meterFlow 3.2s ease-in-out infinite;
}

.meter-a{
  left:20px;
  top:16%;
  width:112px;
  height:4px;
}

.meter-b{
  right:34px;
  top:55%;
  width:92px;
  height:4px;
}

.meter-c{
  left:42%;
  top:4px;
  width:130px;
  height:4px;
}

section:not(.hero){
  padding:clamp(46px, 5.8vw, 76px) 0;
}

.first-30-shell{
  display:grid;
  grid-template-columns:minmax(280px,.42fr) minmax(0,1.58fr);
  gap:clamp(22px, 4vw, 48px);
  align-items:start;
  padding:clamp(24px, 4vw, 42px);
  border:1px solid var(--line);
  border-radius:14px;
  background:linear-gradient(135deg, rgba(255,244,208,.06), rgba(255,244,208,.02));
  box-shadow:0 34px 110px rgba(0,0,0,.38);
}

.first-30-head{
  grid-column:1;
  grid-row:1;
}

.operating-math{
  grid-column:1;
  grid-row:2;
  display:grid;
  gap:10px;
}

.operating-math article{
  min-width:0;
  padding:16px;
  border:1px solid rgba(255,244,208,.12);
  border-radius:10px;
  background:rgba(5,5,5,.44);
}

.operating-math span,
.fit-card span{
  display:block;
  color:rgba(236,255,89,.82);
  font-family:var(--mono);
  font-size:9px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.operating-math b{
  display:block;
  margin-top:8px;
  color:var(--paper);
  font-size:17px;
  line-height:1.12;
}

.operating-math small{
  display:block;
  margin-top:7px;
  color:rgba(255,244,208,.58);
  font-size:12px;
  line-height:1.42;
}

.ai-employee-demo{
  grid-column:2;
  grid-row:1 / span 2;
}

.fit-check{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.fit-card{
  min-width:0;
  padding:clamp(18px, 2.6vw, 26px);
  border:1px solid rgba(255,244,208,.12);
  border-radius:12px;
  background:rgba(255,244,208,.04);
}

.fit-card.best-fit{
  border-color:rgba(119,255,184,.28);
  background:linear-gradient(135deg, rgba(119,255,184,.08), rgba(255,244,208,.035));
}

.fit-card.not-fit{
  border-color:rgba(255,109,77,.28);
  background:linear-gradient(135deg, rgba(255,109,77,.075), rgba(255,244,208,.032));
}

.fit-card h3{
  max-width:760px;
  margin:10px 0 14px;
  color:var(--paper);
  font-family:var(--display);
  font-size:clamp(28px, 3vw, 42px);
  font-weight:400;
  letter-spacing:0;
  line-height:.98;
}

.fit-card ul{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  color:var(--muted);
  list-style:none;
}

.fit-card li{
  position:relative;
  padding-left:16px;
  line-height:1.45;
}

.fit-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:.67em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--acid);
}

.first-30-head h2,
.proof-band h2,
.operator-map-offer h2,
.live-projects h2,
.pricing h2,
.final-cta h2{
  margin-top:12px;
  color:var(--paper);
  font-family:var(--display);
  font-size:clamp(44px, 5.1vw, 78px);
  font-weight:400;
  letter-spacing:0;
  line-height:.92;
  text-wrap:balance;
}

.first-30-head p,
.section-head p,
.proof-copy p,
.operator-map-offer p,
.live-projects p,
.pricing p,
.final-cta p{
  margin-top:18px;
  color:var(--muted);
  font-size:17px;
  line-height:1.56;
}

.route-cinema{
  overflow:hidden;
  border:1px solid rgba(255,244,208,.12);
  border-radius:12px;
  background:rgba(5,5,5,.5);
}

.route-cinema-top{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:18px;
  border-bottom:1px solid rgba(255,244,208,.1);
}

.route-cinema-top span,
.offer-timeline span,
.proof-curve span,
.ai-map-meta span,
.price-card span,
.project-card span{
  display:block;
  color:rgba(236,255,89,.82);
  font-family:var(--mono);
  font-size:9px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.route-cinema-top b{
  display:block;
  margin-top:8px;
  color:var(--paper);
  font-size:18px;
  line-height:1.2;
}

.route-cinema-examples{
  display:flex;
  align-items:center;
  gap:8px;
}

.route-cinema-examples button{
  min-height:38px;
  padding:0 14px;
  border:1px solid rgba(255,244,208,.14);
  border-radius:999px;
  background:rgba(255,244,208,.04);
  color:rgba(255,244,208,.7);
  font-family:var(--mono);
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
}

.route-cinema-examples button.is-active{
  border-color:rgba(236,255,89,.58);
  background:rgba(236,255,89,.12);
  color:var(--paper);
}

.route-cinema-stage{
  position:relative;
  min-height:430px;
  overflow:hidden;
  padding:20px;
}

.route-cinema-map{
  position:absolute;
  inset:72px 22px 52px;
  width:calc(100% - 44px);
  height:calc(100% - 124px);
  opacity:.86;
}

.route-cinema-track,
.route-cinema-gridline{
  fill:none;
}

.route-cinema-gridline{
  stroke:rgba(255,244,208,.09);
  stroke-width:1;
}

.route-cinema-track{
  stroke:url(#routeFilmTrack);
  stroke-width:4;
  stroke-linecap:round;
  filter:url(#routeFilmGlow);
}

.track-shadow{
  opacity:.22;
  stroke-width:14;
}

.route-cinema-signal{
  position:absolute;
  left:calc(8% + (var(--cinema-x, 0) * 10%));
  top:calc(70% + (var(--cinema-y, 0) * 8%));
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--acid);
  box-shadow:0 0 28px rgba(236,255,89,.75);
}

.route-cinema-frames{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}

.route-cinema-frames li,
.offer-timeline article,
.proof-curve article,
.ai-map-meta article,
.project-card,
.price-card,
.offer-card,
.leave-with,
.proof-mini-grid a,
.proof-mini-grid div{
  min-width:0;
  padding:clamp(16px, 2vw, 22px);
  border:1px solid rgba(255,244,208,.12);
  border-radius:10px;
  background:rgba(255,244,208,.045);
  overflow-wrap:break-word;
}

.route-cinema-frames li{
  min-height:142px;
  backdrop-filter:blur(10px);
}

.route-cinema-frames li.is-active{
  border-color:rgba(236,255,89,.52);
  background:rgba(236,255,89,.075);
}

.route-cinema-frames b,
.offer-timeline b,
.proof-curve b,
.ai-map-meta b,
.project-card h3,
.price-card h3,
.leave-with b,
.offer-guarantee b{
  display:block;
  margin-top:8px;
  color:var(--paper);
  font-size:18px;
  line-height:1.14;
}

.route-cinema-frames small,
.offer-timeline small,
.proof-curve small,
.ai-map-meta small{
  display:block;
  margin-top:9px;
  color:rgba(255,244,208,.58);
  font-size:12.5px;
  line-height:1.45;
}

.route-cinema-readout{
  position:absolute;
  left:20px;
  right:20px;
  bottom:20px;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 16px;
  border:1px solid rgba(236,255,89,.2);
  border-radius:10px;
  background:rgba(5,5,5,.78);
}

.route-cinema-readout span{
  color:rgba(236,255,89,.82);
  font-family:var(--mono);
  font-size:9px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.route-cinema-readout b{
  color:var(--paper);
  font-size:16px;
  line-height:1.2;
  text-align:right;
}

.ai-map-meta{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
  padding:0 18px 18px;
}

.worker-picker{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:minmax(220px,.42fr) minmax(0,1.58fr);
  gap:clamp(14px, 2.6vw, 28px);
  padding:clamp(18px, 2.8vw, 28px);
  border:1px solid rgba(255,244,208,.12);
  border-radius:12px;
  background:
    linear-gradient(135deg, rgba(127,215,255,.075), rgba(236,255,89,.045)),
    rgba(5,5,5,.34);
}

.worker-picker-head span,
.worker-use-cases span,
.map-qualifier span,
.roi-rule span{
  display:block;
  color:rgba(236,255,89,.84);
  font-family:var(--mono);
  font-size:9px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.worker-picker-head h3{
  margin-top:10px;
  color:var(--paper);
  font-family:var(--display);
  font-size:clamp(32px, 3.2vw, 48px);
  font-weight:400;
  line-height:.95;
}

.worker-picker-head p{
  margin-top:12px;
  color:rgba(255,244,208,.66);
  font-size:15px;
  line-height:1.5;
}

.worker-use-cases{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:10px;
}

.worker-use-cases article{
  min-width:0;
  padding:16px;
  border:1px solid rgba(255,244,208,.11);
  border-radius:10px;
  background:rgba(255,244,208,.045);
}

.worker-use-cases b{
  display:block;
  margin-top:8px;
  color:var(--paper);
  font-size:17px;
  line-height:1.12;
}

.worker-use-cases small{
  display:block;
  margin-top:8px;
  color:rgba(255,244,208,.6);
  font-size:12.5px;
  line-height:1.42;
}

.offer-timeline{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
  margin:0 0 28px;
}

.offer-timeline article{
  min-height:138px;
  background:rgba(5,5,5,.42);
}

.proof-band-grid{
  display:grid;
  grid-template-columns:minmax(220px,.34fr) minmax(0,.62fr) minmax(260px,.44fr);
  gap:clamp(20px, 3.8vw, 48px);
  align-items:center;
}

.proof-portrait{
  position:relative;
  margin:0;
  overflow:hidden;
  min-height:360px;
  border:1px solid rgba(255,244,208,.12);
  border-radius:12px;
  background:rgba(255,244,208,.04);
}

.proof-portrait img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  filter:saturate(.92) contrast(1.08);
}

.founder-quote{
  margin:28px 0 0;
  padding:24px;
  border:0;
  border-left:1px solid rgba(236,255,89,.5);
  background:rgba(236,255,89,.045);
}

.founder-quote p{
  margin:0;
  color:var(--paper);
  font-family:var(--display);
  font-size:clamp(28px, 3.1vw, 44px);
  line-height:1;
}

.founder-quote cite{
  display:block;
  margin-top:16px;
  color:rgba(255,244,208,.56);
  font-family:var(--mono);
  font-size:10px;
  font-style:normal;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.proof-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.proof-mini-grid a{
  text-decoration:none;
}

.proof-mini-grid strong{
  display:block;
  color:var(--paper);
  font-family:var(--display);
  font-size:28px;
  font-weight:400;
  line-height:1;
}

.proof-mini-grid span{
  display:block;
  margin-top:10px;
  color:var(--soft);
  font-size:12.5px;
  line-height:1.35;
}

.proof-curve{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:24px;
}

.proof-curve article{
  padding:16px;
  background:rgba(5,5,5,.34);
}

.offer-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(280px,.68fr);
  gap:clamp(20px, 4vw, 54px);
  align-items:stretch;
}

.offer-card,
.leave-with,
.final-shell{
  padding:clamp(22px, 4vw, 42px);
  border-radius:14px;
}

.offer-card{
  background:
    radial-gradient(circle at 82% 12%, rgba(236,255,89,.12), transparent 28vw),
    rgba(255,244,208,.045);
}

.offer-guarantee{
  margin-top:22px;
  padding:16px;
  border:1px solid rgba(236,255,89,.25);
  border-radius:10px;
  background:rgba(236,255,89,.06);
  color:var(--soft);
  line-height:1.45;
}

.offer-guarantee b{
  margin-top:0;
  margin-bottom:6px;
}

.offer-guarantee span{
  display:block;
  color:rgba(255,244,208,.7);
}

.primary-offer .hero-actions{
  display:grid;
  grid-template-columns:1fr;
  width:100%;
  max-width:100%;
  margin-top:18px;
  gap:12px;
  align-items:stretch;
}

.primary-offer .hero-actions .btn{
  width:100%;
  min-width:0;
}

.map-qualifier{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:minmax(220px,.42fr) minmax(0,1fr);
  gap:18px;
  align-items:start;
  padding:clamp(18px, 2.8vw, 26px);
  border:1px solid rgba(236,255,89,.2);
  border-radius:12px;
  background:
    linear-gradient(135deg, rgba(236,255,89,.075), rgba(255,109,77,.04)),
    rgba(5,5,5,.34);
}

.map-qualifier b,
.roi-rule b{
  display:block;
  margin-top:8px;
  color:var(--paper);
  font-family:var(--display);
  font-size:clamp(28px, 2.7vw, 40px);
  font-weight:400;
  line-height:1;
}

.map-qualifier ol{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
  counter-reset:qualifier;
}

.map-qualifier li{
  position:relative;
  min-width:0;
  min-height:82px;
  padding:30px 14px 14px;
  border:1px solid rgba(255,244,208,.11);
  border-radius:10px;
  background:rgba(255,244,208,.04);
  color:rgba(255,244,208,.7);
  font-size:13.5px;
  line-height:1.35;
}

.map-qualifier li::before{
  counter-increment:qualifier;
  content:counter(qualifier, decimal-leading-zero);
  position:absolute;
  left:14px;
  top:12px;
  color:rgba(236,255,89,.86);
  font-family:var(--mono);
  font-size:10px;
  font-weight:900;
  letter-spacing:.06em;
}

.stack-decision{
  margin-top:22px;
  padding:18px;
  border:1px solid rgba(127,215,255,.24);
  border-radius:12px;
  background:
    linear-gradient(135deg, rgba(127,215,255,.095), rgba(236,255,89,.04)),
    rgba(5,5,5,.34);
}

.stack-decision > span{
  display:block;
  margin:0 0 8px;
  color:rgba(127,215,255,.92);
  font-family:var(--mono);
  font-size:10px;
  font-weight:900;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.stack-decision > b{
  display:block;
  color:var(--paper);
  font-family:var(--display);
  font-size:30px;
  font-weight:400;
  line-height:1;
}

.stack-decision p{
  margin-top:12px;
  color:rgba(255,244,208,.68);
  font-size:14px;
  line-height:1.48;
}

.leave-with h3{
  margin:0 0 18px;
  color:var(--paper);
  font-family:var(--display);
  font-size:34px;
  font-weight:400;
  line-height:1;
}

.leave-with ul,
.price-card ul{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.leave-with li{
  padding-top:14px;
  border-top:1px solid rgba(255,244,208,.1);
}

.leave-with span{
  display:block;
  margin-top:7px;
  color:var(--muted);
  line-height:1.45;
}

.sample-spec{
  margin-top:24px;
  padding:18px;
  border:1px solid rgba(127,215,255,.22);
  border-radius:12px;
  background:
    linear-gradient(135deg, rgba(127,215,255,.09), rgba(236,255,89,.045)),
    rgba(5,5,5,.36);
}

.sample-spec > span{
  margin:0 0 8px;
  color:rgba(127,215,255,.9);
  font-family:var(--mono);
  font-size:10px;
  font-weight:900;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.sample-spec > b{
  display:block;
  color:var(--paper);
  font-family:var(--display);
  font-size:28px;
  font-weight:400;
  line-height:1;
}

.sample-spec dl{
  display:grid;
  gap:8px;
  margin:16px 0 0;
}

.sample-spec dl div{
  display:grid;
  grid-template-columns:76px minmax(0,1fr);
  gap:10px;
  align-items:start;
  padding-top:8px;
  border-top:1px solid rgba(255,244,208,.09);
}

.sample-spec dt,
.sample-spec dd{
  margin:0;
}

.sample-spec dt{
  color:rgba(236,255,89,.82);
  font-family:var(--mono);
  font-size:9px;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.sample-spec dd{
  color:rgba(255,244,208,.72);
  font-size:13px;
  line-height:1.35;
}

.launch-standard{
  margin-top:14px;
  padding:18px;
  border:1px solid rgba(236,255,89,.2);
  border-radius:12px;
  background:
    linear-gradient(135deg, rgba(236,255,89,.08), rgba(255,109,77,.045)),
    rgba(5,5,5,.34);
}

.launch-standard > span{
  display:block;
  margin:0 0 8px;
  color:rgba(236,255,89,.88);
  font-family:var(--mono);
  font-size:10px;
  font-weight:900;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.launch-standard > b{
  display:block;
  color:var(--paper);
  font-size:16px;
  line-height:1.35;
}

.launch-standard ol{
  display:grid;
  gap:8px;
  margin:14px 0 0;
  padding:0;
  list-style:none;
  counter-reset:launch;
}

.launch-standard li{
  position:relative;
  min-height:26px;
  padding:7px 0 7px 34px;
  border-top:1px solid rgba(255,244,208,.08);
  color:rgba(255,244,208,.72);
  font-size:13px;
  line-height:1.35;
}

.launch-standard li::before{
  counter-increment:launch;
  content:counter(launch, decimal-leading-zero);
  position:absolute;
  left:0;
  top:8px;
  color:rgba(236,255,89,.86);
  font-family:var(--mono);
  font-size:10px;
  font-weight:900;
  letter-spacing:.06em;
}

.section-head{
  max-width:720px;
  margin:0 0 28px;
}

.section-head.narrow{
  max-width:760px;
}

.project-grid,
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.project-card,
.price-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.project-card h3,
.price-card h3{
  margin-top:10px;
  font-family:var(--display);
  font-size:34px;
  font-weight:400;
  letter-spacing:0;
  line-height:1;
}

.project-card p,
.price-card p{
  margin:16px 0 0;
  color:var(--muted);
  line-height:1.5;
}

.project-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:auto;
  padding-top:22px;
}

.project-links a{
  min-height:38px;
  padding:10px 12px;
  background:transparent;
  color:var(--paper);
}

.price{
  margin-top:14px;
  color:var(--acid);
  font-family:var(--mono);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.price-card.starter{
  border-color:rgba(236,255,89,.28);
  background:rgba(236,255,89,.055);
}

.pricing-guarantee{
  max-width:760px;
  margin-top:16px;
}

.roi-rule{
  max-width:860px;
  margin-top:16px;
  padding:18px;
  border:1px solid rgba(119,255,184,.24);
  border-radius:12px;
  background:
    linear-gradient(135deg, rgba(119,255,184,.075), rgba(236,255,89,.04)),
    rgba(5,5,5,.34);
}

.roi-rule b{
  font-size:clamp(25px, 2.2vw, 34px);
}

/* V55 full-10 gate: artifact-first flow, less deck-like repetition, cleaner mobile nav and artifact geometry. */
.first-30-shell{
  grid-template-columns:minmax(280px,.36fr) minmax(0,1.64fr);
}

.ai-employee-demo{
  grid-row:1;
}

.fit-check{
  margin-top:0;
}

.fit-card h3{
  font-size:clamp(26px, 2.55vw, 36px);
}

.proof-band-grid{
  align-items:start;
}

.proof-portrait,
.proof-portrait img{
  min-height:320px;
}

.founder-quote{
  margin-top:22px;
}

.offer-grid{
  align-items:start;
}

.stack-decision p{
  font-size:13.5px;
}

.leave-with li{
  padding-top:12px;
}

.price-card ul{
  margin:18px 0 22px;
  color:rgba(255,244,208,.68);
  font-size:14px;
}

.price-card li{
  position:relative;
  padding-left:17px;
}

.price-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--acid);
}

.price-card .card-link{
  margin-top:auto;
}

.final-shell{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:clamp(20px, 4vw, 48px);
  border:1px solid rgba(236,255,89,.18);
  background:
    radial-gradient(circle at 80% 8%, rgba(236,255,89,.12), transparent 28vw),
    rgba(255,244,208,.045);
}

.footer{
  padding:28px 0 78px;
  border-top:1px solid rgba(255,244,208,.08);
  color:rgba(255,244,208,.48);
  font-size:13px;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.social{
  display:flex;
  gap:14px;
}

.social a{
  color:rgba(255,244,208,.62);
  text-decoration:none;
}

.mobile-sticky{
  position:fixed;
  left:14px;
  right:14px;
  bottom:max(14px, env(safe-area-inset-bottom));
  z-index:90;
  display:none;
  opacity:0;
  pointer-events:none;
  transform:translateY(140%);
  transition:opacity .18s ease, transform .22s ease;
}

.mobile-sticky a{
  min-height:46px;
  display:grid;
  place-items:center;
  border:1px solid rgba(236,255,89,.58);
  border-radius:8px;
  background:linear-gradient(135deg, rgba(236,255,89,.94), rgba(127,215,255,.78));
  color:#050505;
  font-family:var(--mono);
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-decoration:none;
  text-transform:uppercase;
  box-shadow:0 18px 50px rgba(0,0,0,.42);
}

.mobile-sticky.is-visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.is-ready .reveal{
  opacity:1;
  transform:none;
  transition:opacity .5s ease, transform .5s ease;
}

.is-ready .reveal.is-inview{
  opacity:1;
  transform:none;
}

.is-ready .first-30.reveal{
  opacity:1;
  transform:none;
}

@keyframes meterFlow{
  0%,100%{transform:translateX(-18%) scaleX(.72);}
  50%{transform:translateX(18%) scaleX(1);}
}

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

  .workflow-theater{
    transform:none;
  }
}

@media (max-width:1120px){
  .hero{
    min-height:auto;
    padding:34px 0 40px;
  }

  .hero-grid,
  .first-30-shell,
  .proof-band-grid,
  .offer-grid,
  .final-shell{
    grid-template-columns:1fr;
  }

  .hero-os-column{
    max-width:840px;
    height:380px;
    min-height:380px;
  }

  .first-30-head,
  .operating-math,
  .ai-employee-demo,
  .fit-check{
    grid-column:1;
    grid-row:auto;
  }

  .operating-math,
  .fit-check{
    grid-template-columns:1fr;
  }

  .worker-picker,
  .map-qualifier{
    grid-template-columns:1fr;
  }

  .worker-use-cases,
  .map-qualifier ol{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .proof-portrait{
    max-width:360px;
  }

  .project-grid,
  .pricing-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:820px){
  .wrap{
    width:min(100% - 28px, 760px);
  }

  .navlinks a:not(.nav-cta){
    display:none;
  }

  .route-cinema-frames{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .ai-map-meta{
    grid-template-columns:1fr;
  }

  .offer-timeline,
  .proof-curve{
    grid-template-columns:1fr;
  }
}

@media (max-width:680px){
  html{
    scroll-padding-top:138px;
  }

  section[id]{
    scroll-margin-top:138px;
  }

  .topbar{
    min-height:62px;
  }

  .nav{
    min-height:62px;
    gap:12px;
  }

  .brand img{
    width:132px;
  }

  .nav-cta{
    min-width:108px;
    min-height:38px;
    padding:0 14px;
    font-size:10px;
    line-height:1;
    white-space:nowrap;
  }

  .nav-cta .full-label{
    display:none;
  }

  .nav-cta .short-label{
    display:inline;
  }

  .hero{
    padding:10px 0 8px;
  }

  .hero-grid{
    gap:12px;
  }

  h1{
    max-width:355px;
    font-size:clamp(44px, 12.3vw, 52px);
    line-height:.88;
  }

  .lead{
    max-width:35ch;
    margin:12px 0 14px;
    font-size:14.5px;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    max-width:320px;
    gap:10px;
  }

  .cta-next-step{
    display:block;
    max-width:320px;
    margin-top:10px;
    color:rgba(255,244,208,.68);
    font-size:9.5px;
    line-height:1.45;
  }

  .hero-os-column{
    height:206px;
    min-height:206px;
  }

  .theater-hud{
    top:12px;
    left:12px;
    right:12px;
    font-size:7.5px;
  }

  .theater-stage{
    inset:44px 10px 22px;
  }

  .theater-card{
    display:none;
  }

  .theater-card small,
  .theater-output small,
  .theater-footer,
  .theater-meter{
    display:none;
  }

  .theater-card b,
  .theater-output b{
    font-size:12.5px;
  }

  .theater-output b{
    max-width:128px;
    line-height:1.05;
  }

  .theater-card span,
  .theater-output span{
    font-size:7px;
  }

  .theater-core{
    left:54%;
    width:112px;
    height:112px;
  }

  .theater-core b{
    font-size:9px;
  }

  .theater-output{
    left:10px;
    right:10px;
    top:auto;
    bottom:10px;
    min-height:48px;
    padding:10px 12px;
    display:grid;
    gap:4px;
  }

  section:not(.hero){
    padding:26px 0;
  }

  .first-30-shell,
  .offer-card,
  .leave-with,
  .final-shell{
    padding:18px 14px;
  }

  .first-30-shell{
    gap:18px;
  }

  .fit-check{
    gap:10px;
  }

  .fit-card{
    padding:16px;
  }

  .worker-picker,
  .map-qualifier{
    padding:16px;
  }

  .worker-use-cases,
  .map-qualifier ol{
    grid-template-columns:1fr;
  }

  .worker-picker-head h3,
  .map-qualifier b{
    font-size:30px;
  }

  .fit-card h3{
    font-size:28px;
    line-height:1;
  }

  .fit-card ul{
    gap:8px;
  }

  .stack-decision{
    padding:16px;
  }

  .stack-decision > b{
    font-size:26px;
  }

  .first-30-head h2,
  .proof-band h2,
  .operator-map-offer h2,
  .live-projects h2,
  .pricing h2,
  .final-cta h2{
    font-size:clamp(40px, 11.5vw, 52px);
    line-height:.92;
  }

  .first-30-head p,
  .section-head p,
  .proof-copy p,
  .operator-map-offer p,
  .live-projects p,
  .pricing p,
  .final-cta p{
    font-size:15px;
    line-height:1.52;
  }

  .route-cinema-top{
    display:grid;
    gap:14px;
    padding:14px;
  }

  .route-cinema-examples{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
  }

  .route-cinema-stage{
    min-height:286px;
    padding:14px;
  }

  .route-cinema-map{
    inset:92px 10px 18px;
    width:calc(100% - 20px);
    height:178px;
  }

  .route-cinema-frames{
    display:none;
  }

  .route-cinema-readout{
    left:14px;
    right:14px;
    top:14px;
    bottom:auto;
    display:grid;
    gap:6px;
  }

  .route-cinema-readout b{
    text-align:left;
    font-size:14px;
  }

  .ai-map-meta{
    padding:0 14px 14px;
  }

  .proof-portrait{
    display:none;
  }

  .founder-quote{
    margin-top:18px;
    padding:16px;
  }

  .founder-quote p{
    font-size:28px;
  }

  .proof-mini-grid{
    gap:8px;
  }

  .proof-mini-grid{
    grid-template-columns:1fr 1fr;
  }

  .launch-standard li{
    padding-left:30px;
    font-size:12.5px;
  }

  .project-card h3,
  .price-card h3{
    font-size:30px;
  }

  .footer-grid{
    display:grid;
  }

  .mobile-sticky{
    display:none;
  }
}

@media (max-width:390px){
  .wrap{
    width:calc(100% - 22px);
  }

  .brand img{
    width:118px;
  }

  .nav-cta{
    min-width:100px;
    font-size:9px;
  }

  .theater-output b{
    max-width:106px;
    font-size:11px;
  }

  h1{
    font-size:46px;
  }

  .proof-mini-grid{
    grid-template-columns:1fr;
  }
}
