/* =========================================================
   WORKLESS — Dark-first design tokens
   ========================================================= */
:root{
  --ink: #050505;
  --ink-2: #0c0c0c;
  --ink-3: #141414;
  --paper: #f6f6f4;
  --paper-2: #ffffff;
  --line-dark: rgba(255,255,255,.10);
  --line-dark-strong: rgba(255,255,255,.22);
  --line: rgba(10,10,10,.10);
  --line-strong: rgba(10,10,10,.22);
  --muted: rgba(10,10,10,.55);
  --muted-dark: rgba(255,255,255,.55);

  --font-display: "Geist", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --max: 1440px;
  --gutter: clamp(20px, 4vw, 64px);

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
html{ scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body{
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-feature-settings: "ss01","ss02","cv11";
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

img{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }

::selection{ background: #fff; color: var(--ink); }

.dim{ color: rgba(255,255,255,.4); }
.muted{ color: var(--muted-dark); font-weight: 400; font-size: 12px; letter-spacing: .04em; }

.kicker{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 36px;
}
.dot{ width:6px; height:6px; border-radius:50%; background: var(--ink); display:inline-block; animation: blink 2.4s var(--ease) infinite; }
.dot--white{ background:#fff; }
@keyframes blink { 0%,80%,100%{opacity:1} 40%{opacity:.25} }

.display{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
}

.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500; font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}
.btn .arrow{ transition: transform .4s var(--ease); display:inline-block; }
.btn:hover .arrow{ transform: translateX(4px); }
.btn--white{ background:#fff; color: var(--ink); }
.btn--white:hover{ background: #ddd; }
.btn--ghost-light{ border-color: rgba(255,255,255,.25); color: #fff; }
.btn--ghost-light:hover{ background: #fff; color: var(--ink); border-color: #fff; }
.btn--big{ padding: 20px 28px; font-size: 17px; }

/* =========================================================
   NAV — always on dark
   ========================================================= */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
  backdrop-filter: blur(14px) saturate(140%);
  background: rgba(5,5,5,.55);
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.nav.is-scrolled{
  background: rgba(5,5,5,.82);
  border-bottom-color: var(--line-dark);
}

.nav__brand{ display:flex; align-items:center; gap: 12px; font-weight:600; letter-spacing:-0.01em; font-size: 17px; color: #fff; }
.nav__mark-wrap{
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
}
.nav__mark{ width: 100%; height: 100%; object-fit: contain; }
.nav__mark--dark{ display: none; }

.nav__links{ display: flex; gap: 28px; }
.nav__links a{ font-size: 14px; opacity: .72; transition: opacity .25s; }
.nav__links a:hover{ opacity: 1; }
.nav__cta{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  font-size: 14px; font-weight: 500; color:#fff;
  transition: background .3s, color .3s, border-color .3s;
}
.nav__cta:hover{ background: #fff; color: var(--ink); border-color: #fff; }
.nav__cta .arrow{ transition: transform .3s var(--ease); }
.nav__cta:hover .arrow{ transform: translateX(3px); }

@media (max-width: 880px){ .nav__links{ display: none; } }

/* =========================================================
   HERO — animated canvas grid + center mark
   ========================================================= */
.hero{
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 520px;
  padding: 92px var(--gutter) 72px;
  display: grid;
  grid-template-rows: minmax(160px, 32%) 1fr;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  background: radial-gradient(1400px 800px at 50% 30%, #1a1a1a, var(--ink) 70%);
}
.hero__canvas{
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block;
  opacity: .85;
}

.hero__mark--center{
  position: absolute; right: -8vw; top: 50%; transform: translateY(-50%);
  width: 60vw; max-width: 760px; min-width: 380px;
  opacity: .08;
  pointer-events: none;
  animation: spin 80s linear infinite;
}
.hero__mark--center img{ width: 100%; filter: drop-shadow(0 30px 80px rgba(255,255,255,.04)); }
@keyframes spin { to{ transform: translateY(-50%) rotate(360deg); } }

.hero__content{
  position: relative; z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
}
.hero__eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .04em;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.75);
  margin-bottom: 22px;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp .9s var(--ease-out) .15s forwards;
}
.hero__title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  width: 100%;
  text-wrap: balance;
}
.hero__title .line{ display:block; overflow: hidden; }
.hero__title .reveal{
  display:inline-block;
  transform: translateY(110%);
  animation: rise 1.1s var(--ease-out) forwards;
}
.hero__title .line:nth-child(1) .reveal{ animation-delay: .2s; }
.hero__title .line:nth-child(2) .reveal{ animation-delay: .42s; color: rgba(255,255,255,.42); }
@keyframes rise { to{ transform: translateY(0); } }
@keyframes fadeUp { to{ opacity:1; transform: translateY(0); } }

.hero__actions{
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp .9s var(--ease-out) .8s forwards;
}

.hero__scroll{
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  opacity: 0; animation: fadeUp .9s var(--ease-out) 1.4s forwards;
  z-index: 3;
}
.hero__scroll-line{
  width: 60px; height: 1px; background: linear-gradient(90deg, #fff, transparent);
  position: relative; overflow:hidden;
}
.hero__scroll-line::after{
  content:""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: scrollLine 2.5s var(--ease) infinite;
}
@keyframes scrollLine { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

.hero__ticker{
  position: absolute; bottom: 0; left: 0; right: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 14px 0;
  overflow: hidden;
  background: rgba(0,0,0,.4);
  z-index: 3;
}
.ticker{
  display: flex; gap: 28px; white-space: nowrap;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em;
  color: rgba(255,255,255,.65);
  animation: ticker 36s linear infinite;
}
.ticker > span{ flex-shrink: 0; }
@keyframes ticker { to{ transform: translateX(-50%); } }

/* =========================================================
   PLATFORM (dark)
   ========================================================= */
.platform{
  background: var(--ink);
  position: relative;
  border-top: 1px solid var(--line-dark);
}
.platform__sticky{
  min-height: 180vh;
  padding: 120px var(--gutter);
  position: relative;
}
.platform__head{
  position: sticky; top: 100px;
  max-width: 1100px; margin: 0 auto 60px;
}
.platform__stage{
  position: sticky; top: 36vh;
  height: 60vh;
  display: flex; align-items: center; justify-content: center;
  margin-top: -200px;
}

.terminal{
  width: min(720px, 88vw);
  background: #0e0e0e;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,.7);
  font-family: var(--font-mono);
  font-size: 14px;
  z-index: 2;
  position: relative;
}
.terminal__bar{
  display: flex; align-items: center; gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-dark);
  background: #131313;
}
.dot-r{ width:10px; height:10px; border-radius:50%; background: rgba(255,255,255,.18); }
.terminal__title{
  margin-left: auto; margin-right: auto;
  font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .08em;
}
.terminal__body{ padding: 24px; min-height: 240px; }
.t-line{
  margin-bottom: 8px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .4s, transform .4s;
}
.t-line.is-on{ opacity: 1; transform: translateY(0); }
.t-prompt{ color: #fff; margin-right: 10px; }
.t-arg{ color: rgba(255,255,255,.55); }
.t-out{ color: rgba(255,255,255,.7); padding-left: 22px; }
.t-out.t-ok{ color: #fff; }
.caret{
  display: inline-block; width: 8px; height: 16px; background:#fff;
  vertical-align: -3px; margin-left: 4px;
  animation: caret 1s steps(1) infinite;
}
@keyframes caret{ 50%{ opacity: 0; } }

.caps{ position: absolute; inset: 0; pointer-events: none; }
.cap{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) translate(var(--x), var(--y)) scale(.9);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.cap.is-on{
  opacity: 1;
  transform: translate(-50%, -50%) translate(var(--x), var(--y)) scale(1);
}
.cap__num{
  font-size: 10px; padding: 2px 6px;
  border-radius: 4px; background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
}

/* =========================================================
   BIGWORD MARQUEE
   ========================================================= */
.bigword{
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.bigword__row{
  display: flex; white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 10vw, 180px);
  letter-spacing: -0.04em;
  line-height: 1;
  animation: marquee 28s linear infinite;
}
.bigword__row--alt{
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.55);
  animation-direction: reverse;
  animation-duration: 34s;
  margin-top: 10px;
}
@keyframes marquee { to{ transform: translateX(-50%); } }

/* =========================================================
   SERVICES (dark)
   ========================================================= */
.services{
  padding: 160px var(--gutter);
  background: var(--ink);
}
.services__head{ max-width: 1100px; margin: 0 auto 80px; }
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 1000px){ .cards{ grid-template-columns: 1fr; } }

.card{
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 28px 28px 32px;
  display: flex; flex-direction: column;
  min-height: 440px;
  transition: transform .5s var(--ease), border-color .3s, background .3s;
  overflow: hidden;
}
.card:hover{
  transform: translateY(-4px);
  border-color: var(--line-dark-strong);
  background: var(--ink-3);
}
.card__num{
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  color: rgba(255,255,255,.4);
}
.card__visual{
  height: 240px;
  margin: 6px -28px 28px;
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.card__title{
  font-size: 32px; font-weight: 600; letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.card__copy{
  color: rgba(255,255,255,.6);
  margin: 0;
  font-size: 15px; line-height: 1.55;
}

/* card visuals */
.flow{
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em;
  color: #fff;
}
.flow__node{
  padding: 10px 14px; border: 1px solid var(--line-dark-strong); border-radius: 8px;
  background: rgba(255,255,255,.04);
  animation: flowPulse 2.4s var(--ease) infinite;
}
.flow__node--ai{ background: #fff; color: var(--ink); border-color: #fff; }
.flow__line{ width: 32px; height: 1px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.flow__line::after{
  content:""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, #fff 50%, transparent);
  animation: flowDash 1.6s var(--ease) infinite;
}
@keyframes flowDash { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
@keyframes flowPulse { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-2px)} }

.orb{
  position: relative; width: 160px; height: 160px;
  display:flex; align-items:center; justify-content:center;
}
.orb__core{
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #888);
  box-shadow: 0 0 30px rgba(255,255,255,.3);
  animation: corePulse 3s var(--ease) infinite;
}
@keyframes corePulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
.orb__ring{
  position: absolute; inset: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: .3;
}
.orb__ring--1{ animation: ring 3.5s var(--ease) infinite; }
.orb__ring--2{ animation: ring 3.5s var(--ease) .9s infinite; }
.orb__ring--3{ animation: ring 3.5s var(--ease) 1.8s infinite; }
@keyframes ring {
  0%{ transform: scale(.6); opacity: .55; }
  100%{ transform: scale(1.4); opacity: 0; }
}

.bars{
  display: flex; align-items: flex-end; gap: 10px; height: 140px;
}
.bars span{
  width: 14px; height: var(--h);
  background: #fff;
  border-radius: 3px 3px 0 0;
  animation: barRise 1.6s var(--ease) infinite alternate;
}
.bars span:nth-child(1){ animation-delay: .0s; }
.bars span:nth-child(2){ animation-delay: .12s; }
.bars span:nth-child(3){ animation-delay: .24s; }
.bars span:nth-child(4){ animation-delay: .36s; }
.bars span:nth-child(5){ animation-delay: .48s; }
.bars span:nth-child(6){ animation-delay: .60s; }
.bars span:nth-child(7){ animation-delay: .72s; }
@keyframes barRise { from{ height: 12%; } to{ height: var(--h); } }

/* =========================================================
   STATS (dark)
   ========================================================= */
.stats{
  padding: 100px var(--gutter);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stats__grid{
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 880px){ .stats__grid{ grid-template-columns: repeat(2, 1fr); } }
.stat{
  padding: 32px 28px;
  border-right: 1px solid var(--line-dark);
}
.stat:last-child{ border-right: none; }
.stat__num{
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(56px, 7vw, 110px);
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 16px;
  color: #fff;
}
.stat__label{
  font-size: 13px;
  color: rgba(255,255,255,.55);
  max-width: 240px;
  line-height: 1.45;
  font-family: var(--font-mono);
  letter-spacing: .03em;
}

/* =========================================================
   PROCESS (dark)
   ========================================================= */
.process{
  padding: 160px var(--gutter);
  background: var(--ink);
}
.process__head{ max-width: 1100px; margin: 0 auto 80px; }
.steps{
  list-style: none; padding: 0;
  max-width: var(--max); margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}
.step{
  display: grid;
  grid-template-columns: 120px 1fr 200px;
  align-items: center;
  gap: 40px;
  padding: 40px 8px;
  border-bottom: 1px solid var(--line-dark);
  transition: background .4s var(--ease);
}
.step:hover{ background: rgba(255,255,255,.02); }
.step__num{
  font-family: var(--font-mono);
  font-size: 14px; letter-spacing: .14em;
  color: rgba(255,255,255,.4);
}
.step__body h3{
  font-size: clamp(32px, 3.6vw, 56px);
  font-weight: 500; letter-spacing: -0.025em;
  margin: 0;
}
.step__meta{
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-align: right;
}
@media (max-width: 800px){
  .step{ grid-template-columns: 1fr; gap: 12px; }
  .step__meta{ text-align: left; }
}

/* =========================================================
   VOICES (dark)
   ========================================================= */
.voices{
  padding: 160px var(--gutter);
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
}
.voices__head{ max-width: 1100px; margin: 0 auto 80px; }
.voices__grid{
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1000px){ .voices__grid{ grid-template-columns: 1fr; } }
.voice{
  margin: 0;
  padding: 32px 28px;
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  display: flex; flex-direction: column; gap: 28px;
  min-height: 240px;
  transition: transform .4s var(--ease), border-color .3s;
}
.voice:hover{ transform: translateY(-4px); border-color: var(--line-dark-strong); }
.voice blockquote{
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.3; letter-spacing: -0.02em;
  color: #fff;
}
.voice figcaption{
  margin-top: auto;
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 24px;
  border-top: 1px dashed var(--line-dark);
}
.voice__name{ font-weight: 600; font-size: 14px; color: #fff; }
.voice__role{ font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .04em; }

/* =========================================================
   FAQ (dark)
   ========================================================= */
.faq{
  padding: 160px var(--gutter);
  background: var(--ink);
}
.faq__head{ max-width: 1100px; margin: 0 auto 60px; }
.faq__list{
  max-width: 980px; margin: 0 auto;
  border-top: 1px solid var(--line-dark-strong);
}
.faq__item{
  border-bottom: 1px solid var(--line-dark-strong);
  padding: 4px 0;
}
.faq__item summary{
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 26px 8px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.015em;
  color: #fff;
  transition: opacity .25s;
}
.faq__item summary::-webkit-details-marker{ display: none; }
.faq__item summary::after{
  content: "+";
  font-family: var(--font-mono); font-weight: 400;
  font-size: 28px; line-height: 1;
  color: rgba(255,255,255,.5);
  transition: transform .35s var(--ease), color .25s;
}
.faq__item[open] summary::after{ transform: rotate(45deg); color: #fff; }
.faq__item summary:hover{ opacity: .8; }
.faq__body{
  padding: 0 8px 26px;
  max-width: 720px;
  color: rgba(255,255,255,.65);
  font-size: 16px; line-height: 1.55;
  animation: faqOpen .45s var(--ease-out);
}
.faq__body p{ margin: 0; }
@keyframes faqOpen{
  from{ opacity: 0; transform: translateY(-6px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* =========================================================
   CONTACT (dark + form)
   ========================================================= */
.contact{
  position: relative;
  padding: 160px var(--gutter) 120px;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(255,255,255,.05), transparent 60%),
    var(--ink);
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
}
.contact__bg{
  position: absolute; left: -10vw; bottom: -20vh;
  width: 70vw; max-width: 800px;
  opacity: .04;
  animation: spin 100s linear infinite reverse;
  pointer-events: none;
}
.contact__bg img{ width: 100%; }

.contact__grid{
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1000px){
  .contact__grid{ grid-template-columns: 1fr; gap: 60px; }
}

.contact__left{ position: sticky; top: 100px; }
.contact__title{
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(48px, 6.6vw, 104px);
  line-height: .92; letter-spacing: -0.045em;
  margin: 0 0 24px;
}
.contact__sub{
  font-size: 18px; color: rgba(255,255,255,.6);
  margin: 0 0 48px;
}
.contact__meta{
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line-dark);
}
.contact__meta-row{
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: .04em;
}
.contact__meta-k{ color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
.contact__meta-v{ color: #fff; }
a.contact__meta-v{ transition: opacity .25s; }
a.contact__meta-v:hover{ opacity: .7; }

/* form */
.contact__form{
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line-dark-strong);
  border-radius: 24px;
  padding: 36px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form__head{
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 6px;
}
.form__step{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  padding: 4px 8px; border-radius: 6px;
}
.form__label{
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.field{ display: flex; flex-direction: column; gap: 8px; }
.field--full{ grid-column: 1 / -1; }
.field label{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.field input, .field textarea{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-dark-strong);
  padding: 10px 0 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: border-color .3s;
  resize: vertical;
}
.field textarea{ min-height: 60px; }
.field input::placeholder, .field textarea::placeholder{ color: rgba(255,255,255,.3); }
.field input:focus, .field textarea:focus{
  outline: none;
  border-bottom-color: #fff;
}
.field input:invalid:not(:placeholder-shown){ border-bottom-color: rgba(255,140,140,.6); }

.chips{
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.chip{
  position: relative;
  cursor: pointer;
}
.chip input{ position: absolute; opacity: 0; pointer-events: none; }
.chip span{
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--line-dark-strong);
  border-radius: 999px;
  font-size: 13px; font-family: var(--font-mono); letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  transition: background .25s, color .25s, border-color .25s;
}
.chip:hover span{ border-color: rgba(255,255,255,.5); color: #fff; }
.chip input:checked + span{
  background: #fff; color: var(--ink); border-color: #fff;
}

.form__submit{
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 8px;
}
.form__note{
  grid-column: 1 / -1;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
  color: rgba(255,255,255,.4);
  margin: 4px 0 0;
  text-align: center;
}

.form__success{
  position: absolute; inset: 0;
  background: var(--ink-2);
  border-radius: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; padding: 36px; text-align: center;
  opacity: 0; pointer-events: none;
  transition: opacity .5s var(--ease);
}
.form__success.is-on{ opacity: 1; pointer-events: auto; }
.form__success-mark{
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  animation: pop .6s var(--ease-out);
}
.form__success-mark svg{ width: 32px; height: 32px; }
.form__success h3{
  font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin: 0;
  color: #fff;
}
.form__success p{
  color: rgba(255,255,255,.6); margin: 0; max-width: 360px;
}
@keyframes pop {
  0%{ transform: scale(.4); opacity: 0; }
  60%{ transform: scale(1.1); opacity: 1; }
  100%{ transform: scale(1); }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid var(--line-dark);
}
.footer__top{
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
  max-width: var(--max); margin: 0 auto 60px;
}
.footer__brand{ display:flex; align-items:center; gap: 12px; font-size: 22px; font-weight: 600; color:#fff; }
.footer__brand img{ width: 32px; }
.footer__cols{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer__cols h5{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin: 0 0 18px; font-weight: 400;
}
.footer__cols a{
  display: block; font-size: 14px; color: rgba(255,255,255,.75);
  padding: 6px 0; transition: color .2s, transform .2s var(--ease);
}
.footer__cols a:hover{ color: #fff; transform: translateX(3px); }
.footer__bottom{
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--max); margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  color: rgba(255,255,255,.4);
}
.footer__mono{ color: rgba(255,255,255,.3); }
@media (max-width: 800px){
  .footer__top{ grid-template-columns: 1fr; }
  .footer__bottom{ flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* =========================================================
   SERVICES — clickable cards
   ========================================================= */
.card{
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.card__more{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-dark);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  transition: color .25s, gap .3s var(--ease);
}
.card:hover .card__more{ color: #fff; gap: 12px; }
.card__more .arrow{ transition: transform .3s var(--ease); }
.card:hover .card__more .arrow{ transform: translateX(3px); }
.services__pricing{
  max-width: 720px;
  margin: 60px auto 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  font-family: var(--font-mono); letter-spacing: .03em; line-height: 1.6;
}

/* =========================================================
   MODAL
   ========================================================= */
.modal{
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.modal[aria-hidden="false"]{ opacity: 1; pointer-events: auto; }
.modal__backdrop{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
}
.modal__panel{
  position: relative;
  width: min(640px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--ink-2);
  border: 1px solid var(--line-dark-strong);
  border-radius: 24px;
  transform: translateY(20px) scale(.97);
  transition: transform .45s var(--ease-out);
  box-shadow: 0 60px 120px -20px rgba(0,0,0,.6);
}
.modal[aria-hidden="false"] .modal__panel{ transform: translateY(0) scale(1); }
.modal__close{
  position: absolute; top: 16px; right: 18px; z-index: 2;
  width: 36px; height: 36px;
  border: 1px solid var(--line-dark-strong);
  background: rgba(255,255,255,.04);
  color: #fff;
  border-radius: 50%;
  font-size: 22px; line-height: 1; font-family: var(--font-display);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s;
}
.modal__close:hover{ background: #fff; color: var(--ink); }
.modal__visual{
  height: 220px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255,255,255,.02);
  display: flex; align-items: center; justify-content: center;
  padding: 24px 24px 0;
}
.modal__visual svg{ width: 100%; height: 100%; }
.modal__body{
  padding: 28px 32px 32px;
}
.modal__num{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  color: rgba(255,255,255,.4);
}
.modal__body h3{
  font-size: clamp(24px, 2.2vw, 32px); font-weight: 600;
  letter-spacing: -0.02em;
  margin: 8px 0 14px;
}
.modal__body > p{
  color: rgba(255,255,255,.7);
  font-size: 15px; line-height: 1.55;
  margin: 0 0 22px;
}
.modal__list{
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--line-dark);
}
.modal__list li{
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.modal__list strong{ color: #fff; font-weight: 600; margin-right: 4px; }
.modal__pricing{
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  padding: 14px 0;
  border-top: 1px dashed var(--line-dark);
  border-bottom: 1px dashed var(--line-dark);
  margin-bottom: 22px;
}
body.modal-open{ overflow: hidden; }

/* SVG visuals inside modal */
.sv-node rect{ fill: rgba(255,255,255,.06); stroke: rgba(255,255,255,.3); stroke-width: 1; }
.sv-node--ai rect{ fill: #fff; }
.sv-node text{ fill:#fff; font-family: var(--font-mono); font-size: 11px; text-anchor: middle; dominant-baseline: middle; letter-spacing: .04em; }
.sv-node--ai text{ fill: var(--ink); }
.sv-orb__r{ fill: none; stroke: rgba(255,255,255,.25); stroke-width: 1; }
.sv-orb__r--2{ stroke: rgba(255,255,255,.4); }
.sv-orb__r--3{ stroke: rgba(255,255,255,.6); }
.sv-orb__c{ fill: #fff; }
.sv-orb__sat{ animation: orbSpin 12s linear infinite; transform-origin: center; }
@keyframes orbSpin { to { transform: rotate(360deg); } }
.sv-pulse path{ stroke-dasharray: 8 6; animation: dash 2s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -28; } }

/* =========================================================
   EVIDENCE
   ========================================================= */
.evidence{
  padding: 160px var(--gutter);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.evidence__head{ max-width: 1100px; margin: 0 auto 80px; }
.evidence__lede{
  margin-top: 32px;
  max-width: 720px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: rgba(255,255,255,.7);
}
.evidence__grid{
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px){ .evidence__grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .evidence__grid{ grid-template-columns: 1fr; } }
.ev{
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 320px;
  transition: transform .4s var(--ease), border-color .3s;
}
.ev:hover{ transform: translateY(-4px); border-color: var(--line-dark-strong); }
.ev--alt{ background: #fff; color: var(--ink); border-color: #fff; }
.ev__num{
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(48px, 4.6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.ev__copy{
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.ev--alt .ev__copy{ color: rgba(10,10,10,.7); }
.ev__src{
  margin-top: auto;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  transition: color .25s;
  border-top: 1px dashed var(--line-dark);
  padding-top: 14px;
}
.ev__src:hover{ color: #fff; }
.ev--alt .ev__src{ color: rgba(10,10,10,.55); border-top-color: rgba(10,10,10,.15); }
.ev--alt .ev__src:hover{ color: var(--ink); }
.evidence__close{
  max-width: 980px; margin: 80px auto 0;
  text-align: center;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.3; letter-spacing: -0.02em;
  color: #fff;
  padding: 32px 24px;
  border-top: 1px solid var(--line-dark);
}

/* =========================================================
   PROCESS RAIL — visual horizontal flow
   ========================================================= */
.process__rail{
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 1000px){
  .process__rail{ grid-template-columns: 1fr; gap: 24px; }
}
.process__line{
  position: absolute; left: 0; right: 0; top: 110px;
  width: 100%; height: 4px;
  pointer-events: none;
}
@media (max-width: 1000px){ .process__line{ display: none; } }
.process__line-fill{
  transition: stroke-dashoffset .4s linear;
}

.pstep{
  position: relative;
  padding: 0 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.pstep__viz{
  position: relative;
  width: 120px; height: 120px;
  background: var(--ink-2);
  border: 1px solid var(--line-dark-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  z-index: 2;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.pstep:hover .pstep__viz{ background: #141414; border-color: rgba(255,255,255,.4); transform: scale(1.04); }
.pstep__viz svg{ width: 100%; height: 100%; padding: 14px; }
.pstep__viz svg [class*="pviz"]{ stroke: #fff; }
.pviz path{ fill: none; }
.pviz__scan{ animation: scan 4s linear infinite; transform-origin: 60px 60px; }
@keyframes scan { to { transform: rotate(360deg); } }
.pviz__dot{ animation: dotOrbit 4s linear infinite; transform-origin: 60px 60px; }
@keyframes dotOrbit { to { transform: rotate(360deg); } }
.pviz__cursor{ animation: cursorMove 3s var(--ease) infinite; }
@keyframes cursorMove {
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(-30px, -10px); }
}
.pviz__check{ stroke-dasharray: 60; stroke-dashoffset: 60; animation: drawCheck 3s var(--ease) infinite; }
@keyframes drawCheck {
  0%, 30%{ stroke-dashoffset: 60; }
  60%, 100%{ stroke-dashoffset: 0; }
}
.pviz__nodes circle{ animation: nodePulse 2s var(--ease) infinite; transform-origin: center; }
.pviz__nodes circle:nth-child(2){ animation-delay: .25s; }
.pviz__nodes circle:nth-child(3){ animation-delay: .5s; }
.pviz__nodes circle:nth-child(4){ animation-delay: .75s; }
@keyframes nodePulse { 0%,100%{ opacity: .4; } 50%{ opacity: 1; } }
.pviz__arc{ animation: arcSpin 3s linear infinite; transform-origin: 60px 60px; }
.pviz__head{ animation: arcSpin 3s linear infinite; transform-origin: 60px 60px; }
@keyframes arcSpin { to { transform: rotate(360deg); } }

.pstep__num{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}
.pstep__title{
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600; letter-spacing: -0.015em;
  margin: 0 0 10px;
  text-wrap: balance;
}
.pstep__copy{
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  margin: 0;
  max-width: 220px;
  text-wrap: pretty;
}

/* reveal-on-scroll utility */
.r-up{ opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.r-up.is-on{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}


/* HERO BRIDGE — layered above content via z-index */
.hero__sub{
  max-width: 640px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.5;
  color: rgba(255,255,255,.65);
  margin: 0 auto 24px;
  text-align: center;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp .9s var(--ease-out) .8s forwards;
}

.bridge{
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  pointer-events: none;
  z-index: 1;
  align-self: start;
}
.bridge__streams{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .55;
}
.bridge__side, .bridge__core{
  position: absolute;
  top: 0; bottom: 0;
}
.bridge__side--past{ left: 0; width: 36%; }
.bridge__core{ left: 38%; right: 38%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.bridge__side--future{ right: 0; width: 36%; }

.bridge__label{
  position: absolute; top: 0;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  padding: 6px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
}
.bridge__side--past .bridge__label{ left: 0; }
.bridge__side--future .bridge__label{ right: 0; }
.bridge__label--core{ position: static; margin-top: 18px; color: #fff; border-color: rgba(255,255,255,.4); }

/* chaos chips on the left */
.chaos{ position: absolute; inset: 32px 0 0 0; }
.chaos__chip{
  position: absolute;
  left: var(--x); top: var(--y);
  transform: rotate(var(--r));
  padding: 6px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  animation: chaosFloat 5s ease-in-out var(--d) infinite alternate;
}
@keyframes chaosFloat {
  from{ transform: rotate(var(--r)) translateY(0); opacity: .6; }
  to{ transform: rotate(var(--r)) translateY(-6px); opacity: 1; }
}

/* future structured grid on the right */
.future{
  position: absolute; inset: 32px 0 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  align-content: center;
}
.future__cell{
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-dark-strong);
  border-radius: 6px;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  opacity: 0;
  animation: futureIn .6s var(--ease-out) forwards;
}
.future__cell:nth-child(1){ animation-delay: 1.4s; }
.future__cell:nth-child(2){ animation-delay: 1.55s; }
.future__cell:nth-child(3){ animation-delay: 1.7s; }
.future__cell:nth-child(4){ animation-delay: 1.85s; }
.future__cell:nth-child(5){ animation-delay: 2.0s; }
.future__cell:nth-child(6){ animation-delay: 2.15s; }
@keyframes futureIn{
  from{ opacity: 0; transform: translateX(8px); }
  to{ opacity: 1; transform: translateX(0); }
}
.future__dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,.7);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot { 50% { opacity: .4; } }

/* core */
.core{
  position: relative;
  width: clamp(110px, 13vw, 180px);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.core__ring{
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}
.core__ring--1{ animation: coreRing 4s var(--ease) infinite; }
.core__ring--2{ animation: coreRing 4s var(--ease) 1.3s infinite; }
.core__ring--3{ animation: coreRing 4s var(--ease) 2.6s infinite; }
@keyframes coreRing{
  0%{ transform: scale(.6); opacity: .8; }
  100%{ transform: scale(1.4); opacity: 0; }
}
.core__inner{
  width: 60%; height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #888);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(255,255,255,.25);
  animation: corePulse 3s var(--ease) infinite;
}
.core__inner img{ width: 60%; filter: invert(1); }

@media (max-width: 900px){
  .hero{ min-height: 560px; padding-top: 82px; padding-bottom: 56px; grid-template-rows: minmax(140px, 28%) 1fr; }
  .hero__title{ font-size: clamp(34px, 8vw, 56px); }
  .bridge__side--past{ width: 30%; }
  .bridge__side--future{ width: 30%; }
  .bridge__core{ left: 30%; right: 30%; }
  .future{ grid-template-columns: 1fr; }
  .chaos__chip, .future__cell{ font-size: 10px; }
}

/* Short viewports — compress hero further so everything fits */
@media (max-height: 760px){
  .hero{ padding-top: 80px; padding-bottom: 56px; grid-template-rows: minmax(130px, 26%) 1fr; gap: 4px; }
  .hero__title{ font-size: clamp(34px, 4.6vw, 60px); margin-bottom: 12px; }
  .hero__eyebrow{ margin-bottom: 12px; }
  .hero__sub{ margin-bottom: 16px; font-size: 14px; }
}
@media (max-height: 620px){
  .hero{ padding-top: 72px; padding-bottom: 40px; grid-template-rows: minmax(110px, 22%) 1fr; }
  .hero__title{ font-size: clamp(28px, 3.8vw, 46px); }
  .hero__scroll{ display: none; }
  .hero__sub{ display: none; }
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto{
  padding: 160px var(--gutter);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}
.manifesto__inner{ max-width: 1100px; margin: 0 auto; }
.manifesto__title{
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(36px, 5.6vw, 84px);
  line-height: 0.98; letter-spacing: -0.035em;
  margin: 0 0 36px;
}
.manifesto__copy{
  max-width: 760px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: rgba(255,255,255,.7);
  margin: 0;
}

/* =========================================================
   ENGINE intro lede
   ========================================================= */
.platform__lede{
  max-width: 640px;
  margin-top: 28px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,.65);
}

/* =========================================================
   BUILD — Infrastructure modules
   ========================================================= */
.build{
  padding: 160px var(--gutter);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}
.build__head{ max-width: 1100px; margin: 0 auto 80px; }
.build__grid{
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 800px){ .build__grid{ grid-template-columns: 1fr; } }
.mod{
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  transition: transform .4s var(--ease), border-color .3s;
  overflow: hidden;
}
.mod:hover{ transform: translateY(-4px); border-color: var(--line-dark-strong); }
.mod__num{
  position: absolute; top: 24px; right: 28px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  color: rgba(255,255,255,.4);
}
.mod__viz{
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
}
.mod__viz svg{ width: 100%; height: 100%; }
.mod__title{
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 600; letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.mod__copy{
  color: rgba(255,255,255,.6);
  font-size: 14px; line-height: 1.55;
  margin: 0;
}
@media (max-width: 600px){
  .mod{ grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .mod__viz{ height: 80px; }
}

/* =========================================================
   SHIFT — Heute / Morgen
   ========================================================= */
.shift{
  padding: 160px var(--gutter);
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
}
.shift__head{ max-width: 1100px; margin: 0 auto 80px; }
.shift__grid{
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 800px){
  .shift__grid{ grid-template-columns: 1fr; gap: 0; }
  .shift__bridge{ display: none !important; width: 0; height: 0; overflow: hidden; position: absolute; }
  .shift__col{ border-radius: 0; }
  .shift__col--today{ border-radius: 16px 16px 0 0; border-bottom: none; }
  .shift__col--tomorrow{ border-radius: 0 0 16px 16px; }
  .shift__mobile-arrow{ display: flex; }
}
.shift__col{
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 32px;
}
.shift__col--tomorrow{ background: #fff; color: var(--ink); border-color: #fff; }
.shift__label{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}
.shift__col--tomorrow .shift__label{ color: rgba(10,10,10,.5); border-bottom-color: rgba(10,10,10,.12); }
.shift__list{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 22px); font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,.7);
}
.shift__list li{
  display: flex; align-items: center; gap: 12px;
  padding: 6px 0;
}
.shift__list li::before{
  content: "—";
  font-family: var(--font-mono);
  color: rgba(255,255,255,.35);
  font-size: 14px;
}
.shift__list--alt li{ color: var(--ink); }
.shift__list--alt li::before{
  content: "+";
  color: var(--ink);
  font-weight: 700;
}
.shift__bridge{ display: flex; align-items: center; justify-content: center; }
.shift__bridge svg{ width: 100%; height: 100%; }
.shift__mobile-arrow{
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--ink-2);
  padding: 0;
  position: relative;
  z-index: 1;
}
.shift__mobile-arrow::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--ink), #fff);
}

/* =========================================================
   DIFF — Warum Workless anders
   ========================================================= */
.diff{
  padding: 160px var(--gutter);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}
.diff__head{ max-width: 1100px; margin: 0 auto 80px; }
.diff__grid{
  max-width: var(--max); margin: 0 auto 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 700px){ .diff__grid{ grid-template-columns: 1fr; } }
.diff__col{
  padding: 36px;
  border-radius: 22px;
  border: 1px solid var(--line-dark);
  background: var(--ink-2);
}
.diff__col--us{ background: #fff; color: var(--ink); border-color: #fff; }
.diff__title{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}
.diff__col--us .diff__title{ color: rgba(10,10,10,.55); border-bottom-color: rgba(10,10,10,.12); }
.diff__col ul{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px); font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,.55);
}
.diff__col--us ul{ color: var(--ink); }
.diff__col li{ display: flex; align-items: center; gap: 12px; }
.diff__col--them li::before{
  content: "×"; font-family: var(--font-mono); color: rgba(255,255,255,.3); font-size: 18px;
}
.diff__col--us li::before{
  content: "→"; font-family: var(--font-mono); color: var(--ink); font-size: 16px;
}
.diff__quote{
  max-width: 900px; margin: 80px auto 0;
  text-align: center;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.25; letter-spacing: -0.025em;
  color: #fff;
  padding: 40px 24px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

/* =========================================================
   FOOTER closing line
   ========================================================= */
.footer__closing{
  max-width: var(--max); margin: 0 auto 60px;
  padding: 60px 0 40px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3; letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}
.footer__closing .dim{ color: rgba(255,255,255,.5); }


/* =========================================================
   LANGUAGE SWITCHER (in nav)
   ========================================================= */
.nav__right{
  display: flex; align-items: center; gap: 14px;
}
.langswitch{
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
}
.langswitch button{
  appearance: none;
  background: transparent;
  border: 0;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  transition: background .25s, color .25s;
  line-height: 1;
}
.langswitch button:hover{ color: #fff; }
.langswitch button.is-active{
  background: #fff;
  color: var(--ink);
}
@media (max-width: 600px){
  .langswitch button{ padding: 5px 8px; font-size: 10px; }
}

/* =========================================================
   HERO TRUST LINE
   ========================================================= */
.hero__trust{
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) 1.1s forwards;
}

/* =========================================================
   MID-PAGE CTA BAND
   ========================================================= */
.midcta{
  padding: 120px var(--gutter);
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-align: center;
}
.midcta__inner{
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.midcta__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.midcta__title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -0.035em;
  margin: 0;
  color: #fff;
}
.midcta__sub{
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .05em;
  color: rgba(255,255,255,.5);
  margin: 0;
}
@media (max-width: 680px){
  .midcta{ padding: 80px var(--gutter); }
  .midcta__title{ font-size: clamp(28px, 9vw, 48px); }
}

/* =========================================================
   MOBILE NAV — BURGER BUTTON
   ========================================================= */
.nav__burger{
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav__burger span{
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s, width .25s;
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2){ opacity: 0; width: 0; }
.nav__burger.is-open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px){
  .nav__burger{ display: flex; }
  .nav__cta{ display: none; }
  .nav__right .langswitch{ display: none; }
}

/* =========================================================
   MOBILE NAV — FULL-SCREEN DRAWER
   ========================================================= */
.nav__drawer{
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(5,5,5,.97);
  backdrop-filter: blur(24px) saturate(140%);
  display: flex;
  flex-direction: column;
  padding: 0 var(--gutter) 48px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .5s var(--ease-out);
  pointer-events: none;
}
.nav__drawer.is-open{
  transform: translateX(0);
  pointer-events: auto;
}
.nav__drawer-links{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 88px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 32px;
}
.nav__drawer-links a{
  display: block;
  font-size: clamp(28px, 7.5vw, 46px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  opacity: .75;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  transition: opacity .2s, padding-left .3s var(--ease);
}
.nav__drawer-links a:hover,
.nav__drawer-links a:active{ opacity: 1; padding-left: 10px; }
.nav__drawer-bottom{
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.nav__drawer-bottom .langswitch{ display: inline-flex; }
.nav__drawer-cta{ align-self: flex-start; }

/* =========================================================
   GLOBAL — reduce section padding on mobile
   ========================================================= */
@media (max-width: 680px){
  .manifesto,
  .build,
  .shift,
  .diff,
  .services,
  .evidence,
  .process{ padding-top: 80px; padding-bottom: 80px; }
  .contact{ padding-top: 80px; padding-bottom: 80px; }
  .services__head,
  .build__head,
  .shift__head,
  .diff__head,
  .evidence__head,
  .process__head{ margin-bottom: 48px; }
  .kicker{ margin-bottom: 20px; }
  .display{ font-size: clamp(32px, 9vw, 56px); }
}
@media (max-width: 420px){
  .manifesto,
  .build,
  .shift,
  .diff,
  .services,
  .evidence,
  .process{ padding-top: 60px; padding-bottom: 60px; }
  .contact{ padding-top: 60px; padding-bottom: 60px; }
}

/* =========================================================
   HERO — mobile
   ========================================================= */
@media (max-width: 680px){
  .bridge{ display: none; }
  .hero{
    grid-template-rows: 1fr;
    padding-top: 88px;
    padding-bottom: 56px;
    min-height: 100svh;
  }
  .hero__content{ padding-top: 24px; }
  .hero__title{ font-size: clamp(38px, 11vw, 60px); }
  .hero__sub{ font-size: 15px; margin-bottom: 28px; }
  .hero__actions{
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    gap: 10px;
  }
  .hero__actions .btn{
    width: 100%;
    justify-content: center;
  }
  .hero__scroll{ display: none; }
}

/* =========================================================
   PLATFORM / ENGINE — disable sticky on mobile
   ========================================================= */
@media (max-width: 900px){
  .platform__sticky{
    min-height: auto;
    padding: 80px var(--gutter);
  }
  .platform__head{
    position: static;
    margin-bottom: 48px;
  }
  .platform__stage{
    position: static;
    height: auto;
    margin-top: 0;
    flex-direction: column;
    gap: 32px;
  }
  .caps{ display: none; }
  .terminal{ width: 100%; min-width: 0; }
}
@media (max-width: 480px){
  .terminal{ font-size: 12px; border-radius: 12px; }
  .terminal__body{ padding: 16px 14px; min-height: 180px; }
  .t-line{ margin-bottom: 6px; }
}

/* =========================================================
   BUILD modules — mobile
   ========================================================= */
@media (max-width: 480px){
  .mod{ padding: 20px; gap: 14px; }
  .mod__title{ font-size: 18px; }
  .mod__viz{ height: 72px; }
}

/* =========================================================
   SERVICES CARDS — mobile
   ========================================================= */
@media (max-width: 680px){
  .card{ min-height: auto; }
  .card__title{ font-size: 22px; }
  .card__visual{ height: 160px; }
}

/* =========================================================
   DIFF — mobile
   ========================================================= */
@media (max-width: 480px){
  .diff__col{ padding: 24px 20px; }
  .diff__col ul{ font-size: 16px; }
  .diff__quote{ font-size: 18px; padding: 28px 0; margin-top: 48px; }
}

/* =========================================================
   EVIDENCE — mobile
   ========================================================= */
@media (max-width: 480px){
  .ev{ padding: 24px 20px; min-height: auto; gap: 14px; }
  .ev__num{ font-size: 44px; }
  .evidence__close{ font-size: 18px; padding: 28px 0; margin-top: 48px; }
}

/* =========================================================
   PROCESS STEPS — mobile: side-by-side layout
   ========================================================= */
@media (max-width: 680px){
  .process__rail{ gap: 0; padding-top: 0; }
  .pstep{
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 20px;
    row-gap: 4px;
    text-align: left;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .pstep__viz{
    grid-column: 1; grid-row: 1 / 4;
    width: 72px; height: 72px;
    margin-bottom: 0;
    align-self: center;
  }
  .pstep__num{ grid-column: 2; grid-row: 1; margin-bottom: 0; }
  .pstep__title{ grid-column: 2; grid-row: 2; font-size: 16px; margin-bottom: 4px; }
  .pstep__copy{ grid-column: 2; grid-row: 3; max-width: none; font-size: 13px; }
}

/* =========================================================
   CONTACT FORM — mobile
   ========================================================= */
@media (max-width: 680px){
  .contact__grid{ gap: 40px; }
  .contact__left{ position: static; }
  .contact__title{ font-size: clamp(40px, 13vw, 72px); }
  .contact__sub{ font-size: 15px; margin-bottom: 32px; }
  .contact__form{
    grid-template-columns: 1fr;
    padding: 22px 18px;
    border-radius: 16px;
    gap: 16px;
  }
  .field{ grid-column: 1; }
  .form__head{ padding-bottom: 14px; }
}

/* =========================================================
   MODAL — mobile bottom sheet
   ========================================================= */
@media (max-width: 600px){
  .modal{ align-items: flex-end; }
  .modal__panel{
    width: 100%;
    max-height: 90svh;
    border-radius: 20px 20px 0 0;
    transform: translateY(24px) scale(.98);
  }
  .modal[aria-hidden="false"] .modal__panel{ transform: translateY(0) scale(1); }
  .modal__visual{ height: 140px; }
  .modal__body{ padding: 18px 18px 28px; }
  .modal__body h3{ font-size: 22px; }
}

/* =========================================================
   MANIFESTO — mobile
   ========================================================= */
@media (max-width: 480px){
  .manifesto__title{ font-size: clamp(28px, 9vw, 44px); }
  .manifesto__copy{ font-size: 15px; }
}

/* =========================================================
   FOOTER — mobile
   ========================================================= */
@media (max-width: 480px){
  .footer{ padding: 60px var(--gutter) 28px; }
  .footer__top{ gap: 40px; }
  .footer__cols{ grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer__closing{ font-size: clamp(16px, 5vw, 22px); padding: 36px 0; }
  .footer__bottom{ flex-direction: column; gap: 8px; }
}
