/* Meridian Ops — premium Swiss B2B system brand */
:root {
  --bg: #f2f2f3;
  --paper: #ffffff;
  --ink: #0b0b0c;
  --mute: #5a5a63;
  --line: #0b0b0c;
  --soft: rgba(11,11,12,.12);
  --indigo: #4338ca;
  --indigo-2: #6366f1;
  --lime: #d4f34a;
  --font: "Syne", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.site-headless {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.cms-bar {
  display: flex; justify-content: space-between; gap: .75rem; flex-wrap: wrap;
  padding: .4rem 1.25rem;
  background: var(--ink);
  color: rgba(255,255,255,.4);
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cms-bar strong { color: var(--lime); font-weight: 500; }
.cms-links { display: flex; gap: .9rem; flex-wrap: wrap; }
.cms-links a { color: rgba(255,255,255,.4); }
.cms-links a:hover { color: #fff; }

.site-nav {
  display: flex; align-items: center; gap: 1rem;
  height: 68px;
  padding: 0 clamp(1rem, 3vw, 2rem);
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  position: sticky; top: 0; z-index: 40;
}
.logo {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-right: auto;
}
.logo-grid {
  width: 16px; height: 16px;
  background:
    linear-gradient(var(--ink) 0 0) 0 0/6px 6px no-repeat,
    linear-gradient(var(--indigo) 0 0) 10px 0/6px 6px no-repeat,
    linear-gradient(var(--lime) 0 0) 0 10px/6px 6px no-repeat,
    linear-gradient(var(--ink) 0 0) 10px 10px/6px 6px no-repeat;
}
.site-nav nav { display: flex; height: 100%; }
.site-nav nav a {
  display: flex; align-items: center;
  padding: 0 1.1rem;
  height: 100%;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-left: 1px solid var(--soft);
  color: var(--ink);
}
.site-nav nav a:last-child { border-right: 1px solid var(--soft); }
.site-nav nav a.is-active { background: var(--ink); color: #fff; }
.site-nav nav a:hover:not(.is-active) { background: #eef2ff; }
.nav-api {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  padding: .5rem .75rem;
  border: 2px solid var(--ink);
  background: var(--lime);
  text-transform: uppercase;
}
.nav-api:hover { background: var(--ink); color: var(--lime); }

/* Full-bleed photo hero */
.b-hero {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  min-height: min(78vh, 680px);
  background: var(--ink);
  color: #fff;
  border-bottom: 2px solid var(--ink);
}
.hero-left {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,.12);
  background: var(--ink);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  margin: 0 0 1.5rem;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime);
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--lime);
  box-shadow: 0 0 14px var(--lime);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}
.b-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  max-width: 9ch;
}
.hero-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.hero-media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.95);
}
.hero-right {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(transparent, rgba(11,11,12,.92) 50%);
}
.lead {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  max-width: 36ch;
  line-height: 1.55;
}
.lead-mobile, .actions-mobile { display: none; }
.actions {
  display: flex; flex-wrap: wrap; gap: .65rem;
  margin-top: 1.35rem;
}

.btn {
  display: inline-flex; align-items: center;
  padding: .9rem 1.25rem;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .02em;
  border: 2px solid transparent;
  transition: transform .15s var(--ease), box-shadow .15s, background .15s, color .15s;
}
.btn:hover { transform: translate(-2px, -2px); }
.btn-primary {
  background: var(--lime);
  color: var(--ink) !important;
  box-shadow: 4px 4px 0 var(--indigo);
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 4px 4px 0 var(--lime);
}
.btn-ghost {
  border-color: rgba(255,255,255,.35);
  color: #fff !important;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  background: transparent;
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime) !important; }

/* Marquee */
.b-marquee {
  overflow: hidden;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  padding: 1rem 0;
}
.marquee-track {
  display: flex; gap: 2.75rem;
  width: max-content;
  animation: mq 32s linear infinite;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.marquee-track span { white-space: nowrap; opacity: .4; }
.marquee-track span:nth-child(odd) { opacity: 1; color: var(--indigo); }
@keyframes mq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.page > .b-section,
.page > .b-proof,
.page > .b-posts,
.page > .b-method,
.page > .b-stats-bar {
  width: min(var(--max), calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.b-section { padding: 4rem 0 1.5rem; }
.sec-head { margin-bottom: 2rem; max-width: 540px; }
.sec-kicker {
  display: block;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: .75rem;
}
.sec-head h2, .split-band-copy h2, .cta-final-inner h2 {
  margin: 0 0 .65rem;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  line-height: 1.02;
}
.sec-lead {
  margin: 0;
  color: var(--mute);
  font-weight: 500;
  font-size: 1rem;
}

.card-grid, .method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
  background: var(--ink);
}
.mod-card, .method-card {
  background: var(--paper);
  padding: 1.75rem 1.4rem 2rem;
  border-right: 2px solid var(--ink);
  transition: background .15s;
}
.mod-card:last-child, .method-card:last-child { border-right: 0; }
.mod-card:hover, .method-card:hover { background: #eef2ff; }
.mod-i, .method-card span {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--indigo);
  display: block;
  margin-bottom: 1.4rem;
}
.mod-card h3, .method-card h3 {
  margin: 0 0 .55rem;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.mod-card p, .method-card p {
  margin: 0;
  color: var(--mute);
  font-weight: 500;
  font-size: .92rem;
  line-height: 1.5;
}

.b-method { padding-top: 3.5rem; }

/* Split band */
.b-split-band {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  margin-top: 3rem;
  background: var(--ink);
  color: #fff;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.split-band-copy {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.75rem);
  display: flex; flex-direction: column; justify-content: center;
}
.split-band-copy .sec-kicker { color: var(--lime); }
.split-band-copy h2 { color: #fff; max-width: 12ch; }
.split-band-copy p {
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  max-width: 38ch;
  line-height: 1.55;
}
.split-band-media {
  margin: 0;
  min-height: 320px;
  overflow: hidden;
}
.split-band-media img {
  width: 100%; height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: grayscale(.15) contrast(1.05);
}

/* Proof */
.b-proof { padding: 4rem 0 2rem; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.proof-card {
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.proof-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.proof-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  filter: grayscale(.2);
}
.proof-card:hover .proof-img img {
  transform: scale(1.05);
  filter: none;
}
.proof-body { padding: 1.4rem 1.35rem 1.6rem; }
.metric {
  margin: 0 0 .75rem;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof-body h3 {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.proof-body p:last-child {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  font-size: .9rem;
}

/* Quote */
.b-quote-strip {
  margin-top: 3rem;
  background: var(--lime);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem;
}
.quote-inner {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}
.quote-inner p {
  margin: 0 0 1.1rem;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.quote-inner cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Stats bar */
.b-stats-bar { padding: 3rem 0; }
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink);
  background: var(--ink);
}
.stats-bar > div {
  background: var(--paper);
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 2px solid var(--ink);
}
.stats-bar > div:last-child { border-right: 0; }
.stats-bar strong {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: .3rem;
}
.stats-bar span {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Posts */
.b-posts { padding: 2rem 0 3rem; }
.post-list { border-top: 2px solid var(--ink); }
.post-card {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 2px solid var(--ink);
}
.post-thumb {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 2px solid var(--ink);
}
.post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.25);
  transition: filter .25s, transform .4s;
}
.post-card:hover .post-thumb img {
  filter: none;
  transform: scale(1.05);
}
.post-meta {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--mute);
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: .4rem;
}
.post-meta .tag {
  background: #eef2ff;
  color: var(--indigo);
  padding: .1rem .4rem;
}
.post-card h3 {
  margin: 0 0 .35rem;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.post-body p {
  margin: 0;
  color: var(--mute);
  font-weight: 500;
  font-size: .9rem;
  max-width: 48ch;
}
.post-more {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  border-bottom: 2px solid var(--lime);
  white-space: nowrap;
}

.article-frame {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 8px 8px 0 var(--indigo);
}
.article-frame h2 {
  margin: .5rem 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.article-text {
  margin: 0 0 1.5rem;
  color: var(--mute);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 58ch;
}
.article-frame .btn-ghost {
  border-color: var(--ink);
  color: var(--ink) !important;
}

/* Final CTA */
.b-cta-final {
  margin-top: 2rem;
  background: var(--indigo);
  color: #fff;
  border-top: 2px solid var(--ink);
}
.cta-final-inner {
  width: min(780px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
}
.cta-final-inner .sec-kicker { color: var(--lime); }
.cta-final-inner h2 { color: #fff; }
.cta-final-inner p {
  margin: 0 auto 1.5rem;
  max-width: 40ch;
  color: rgba(255,255,255,.78);
  font-weight: 500;
}
.cta-final-inner .actions { justify-content: center; }
.cta-final-inner .btn-ghost {
  border-color: rgba(255,255,255,.4);
  color: #fff !important;
}

/* Footer */
.site-foot {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 0;
}
.foot-grid {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.site-foot strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: .5rem;
}
.site-foot p { margin: 0; font-size: .88rem; font-weight: 500; line-height: 1.55; }
.site-foot code { font-family: var(--mono); color: var(--lime); font-size: .85em; }
.foot-col span {
  display: block;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .85rem;
}
.foot-col a, .foot-links a {
  display: block;
  color: rgba(255,255,255,.6);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: .35rem 0;
}
.foot-col a:hover, .foot-links a:hover { color: var(--lime); }
.foot-base {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.1rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  font-family: var(--mono);
  font-size: .68rem;
  color: rgba(255,255,255,.35);
}

@media (max-width: 900px) {
  .site-nav nav { display: none; }
  .b-hero { grid-template-columns: 1fr; }
  .hero-left { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); min-height: auto; }
  .hero-right { display: none; }
  .lead-mobile, .actions-mobile { display: block; }
  .actions-mobile { display: flex; margin-top: 1.25rem; }
  .lead-mobile { margin-top: 1rem; color: rgba(255,255,255,.7); }
  .card-grid, .method-grid { grid-template-columns: 1fr; }
  .mod-card, .method-card { border-right: 0; border-bottom: 2px solid var(--ink); }
  .mod-card:last-child, .method-card:last-child { border-bottom: 0; }
  .b-split-band { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stats-bar > div:nth-child(2) { border-right: 0; }
  .stats-bar > div:nth-child(1),
  .stats-bar > div:nth-child(2) { border-bottom: 2px solid var(--ink); }
  .post-card { grid-template-columns: 100px 1fr; }
  .post-more { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
/* ===== v50 MAX POLISH ===== */
::selection { background: #d4f34a; color: #0b0b0c; }
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 3px; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, #4338ca, #d4f34a);
  box-shadow: 0 0 10px rgba(212,243,74,.5);
}
.fx-grid {
  pointer-events: none; position: fixed; inset: 0; z-index: 0; opacity: .03;
  background-image:
    linear-gradient(rgba(11,11,12,.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,11,12,.8) 1px, transparent 1px);
  background-size: 48px 48px;
}
.site-headless > *:not(.fx-grid) { position: relative; z-index: 1; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 2px solid var(--ink);
  background: var(--lime);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 16px; height: 2px; background: var(--ink); }
.b-hero h1 { animation: slam .7s cubic-bezier(.16,1,.3,1) both; }
@keyframes slam {
  from { opacity: 0; transform: translateY(30px) skewY(2deg); }
  to { opacity: 1; transform: none; }
}
.hero-media > img {
  transform: scale(1.06);
  transition: transform .1s linear;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.mod-card:nth-child(2).reveal, .method-card:nth-child(2).reveal { transition-delay: .07s; }
.mod-card:nth-child(3).reveal, .method-card:nth-child(3).reveal { transition-delay: .14s; }
.mobile-fab {
  display: none;
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 60;
  text-align: center;
  padding: .95rem 1rem;
  background: var(--lime);
  color: var(--ink) !important;
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--indigo);
}
.b-cta-final { position: relative; overflow: hidden; }
.b-cta-final::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  right: -100px; top: -150px;
  background: radial-gradient(circle, rgba(212,243,74,.2), transparent 65%);
  pointer-events: none;
}
.proof-card, .mod-card, .method-card {
  transition: transform .2s var(--ease), box-shadow .2s;
}
.proof-card:hover { transform: translateY(-4px); }
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-api { display: none; }
  .site-nav nav {
    display: none;
    position: fixed; inset: 0; z-index: 80;
    background: #fff;
    flex-direction: column;
    height: auto !important;
    border: 0;
    padding: 5rem 0 2rem;
  }
  .site-nav nav.is-open { display: flex; }
  .site-nav nav a {
    height: auto;
    border: 0 !important;
    border-bottom: 2px solid var(--ink) !important;
    font-size: 1.4rem;
    padding: 1.1rem 1.5rem;
  }
  .mobile-fab { display: block; }
  body.nav-open { overflow: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { animation: none !important; }
}
/* ===== v60 WAHOO ===== */
.b-term-wrap {
  width: min(1200px, calc(100% - 2rem));
  margin: 2.5rem auto 0;
}
.term-shell {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  border: 2px solid var(--ink);
  background: #0b0b0c;
  color: #e8e8ec;
  min-height: 320px;
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--indigo);
}
.term-top {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: .4rem;
  padding: .65rem .9rem;
  background: #141416;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.term-top span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #333;
}
.term-top span:nth-child(1) { background: #fb7185; }
.term-top span:nth-child(2) { background: #fbbf24; }
.term-top span:nth-child(3) { background: #34d399; }
.term-top code {
  margin-left: .75rem;
  font-family: var(--mono);
  font-size: .72rem;
  color: rgba(255,255,255,.45);
}
.term-body {
  padding: 1.25rem 1.15rem 1.5rem;
  font-family: var(--mono);
  font-size: .82rem;
  line-height: 1.7;
  min-height: 220px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.term-line { margin: 0 0 .35rem; white-space: pre-wrap; word-break: break-word; }
.term-line.cmd { color: #d4f34a; }
.term-line.ok { color: #67e8f9; }
.term-line.json { color: #c4b5fd; }
.term-side {
  padding: 1.5rem 1.35rem;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(160deg, #12121a, #0b0b0c);
}
.term-side h2 {
  margin: .4rem 0 .75rem;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.05;
}
.term-side p {
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  font-size: .92rem;
}
.term-side a:not(.btn) { color: var(--lime); text-decoration: underline; }
.flash-in { animation: flashIn .6s both; }
@keyframes flashIn {
  from { opacity: 0; transform: scale(.9); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}
.proof-card, .mod-card {
  transform-style: preserve-3d;
  transition: transform .15s ease-out !important;
}
@media (max-width: 900px) {
  .term-shell { grid-template-columns: 1fr; box-shadow: 6px 6px 0 var(--indigo); }
  .term-body { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); min-height: 180px; }
}
/* ===== v70 WTF ===== */
body.is-booting { overflow: hidden; }
.wtf-boot.m-boot {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: #0b0b0c;
  color: #e8e8ec;
  font-family: var(--mono);
  transition: opacity .55s ease, visibility .55s;
}
.wtf-boot.m-boot.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
.m-boot-inner { width: min(420px, 86vw); }
.m-boot-inner code { color: rgba(255,255,255,.35); font-size: .75rem; }
.m-boot-line { margin: .75rem 0; font-size: .9rem; letter-spacing: .04em; }
.m-boot-line.dim { color: rgba(255,255,255,.45); }
.m-boot-line .ok { color: #d4f34a; }
.m-boot-bar {
  margin-top: 1.25rem; height: 3px; background: #222;
  border: 1px solid #333; overflow: hidden;
}
.m-boot-bar b { display: block; height: 100%; width: 0; background: linear-gradient(90deg,#4338ca,#d4f34a); }
.scanlines {
  pointer-events: none; position: fixed; inset: 0; z-index: 120; opacity: .04;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0,0,0,.35) 3px
  );
  mix-blend-mode: multiply;
}
.is-glitch {
  text-shadow: 2px 0 #ff00aa, -2px 0 #00e5ff !important;
}
.b-hero, .b-split-band, .b-cta-final, .term-shell {
  --sx: 50%; --sy: 40%;
  position: relative;
}
.b-hero::before, .b-split-band::before, .b-cta-final::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(500px 360px at var(--sx) var(--sy), rgba(99,102,241,.18), transparent 55%);
  mix-blend-mode: screen;
}
.b-hero > * { position: relative; z-index: 2; }
.term-shell.pulse-egg {
  animation: eggPulse .5s ease 3;
  box-shadow: 0 0 0 0 #d4f34a, 12px 12px 0 var(--indigo);
}
@keyframes eggPulse {
  50% { box-shadow: 0 0 40px rgba(212,243,74,.45), 12px 12px 0 var(--indigo); }
}
body.egg-api .nav-api {
  animation: eggPulse .4s ease 4;
  background: #fff;
}
.sec-head h2, .b-hero h1, .cta-final-inner h2 {
  transition: text-shadow .15s;
}
