/* ============================================================
   ORDINTRA — Enterprise Operations Infrastructure
   Shared stylesheet
   ============================================================ */

:root {
  /* Palette */
  --bg:            #0A0E17;
  --bg-raised:     #0F1522;
  --panel:         #111A2B;
  --panel-2:       #0D1420;
  --line:          #1E2A3F;
  --line-soft:     #17223400;
  --text:          #E8ECF2;
  --text-dim:      #9AA6B8;
  --text-faint:    #6B7789;
  --accent:        #3B6EF5;
  --accent-bright: #5B87FF;
  --accent-soft:   #3b6ef51a;
  --accent-line:   #3b6ef540;
  --good:          #35C08A;
  --warn:          #E0A23C;

  /* Type */
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --radius-sm: 10px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient background grid — very subtle, fixed */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .18;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 5%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 5%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

a { color: inherit; text-decoration: none; }

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

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}

section { position: relative; z-index: 1; }

.section-pad { padding-block: clamp(64px, 10vw, 128px); }
.section-pad-sm { padding-block: clamp(48px, 7vw, 88px); }

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  color: var(--text);
}

.display {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); letter-spacing: -0.015em; }

p { margin: 0 0 1rem; }

.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 62ch;
}

.muted { color: var(--text-dim); }
.faint { color: var(--text-faint); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 500;
  color: var(--accent-bright);
  letter-spacing: 0;
  margin-bottom: 20px;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head p { color: var(--text-dim); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .96rem;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-bright); border-color: var(--accent-bright); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent-line); background: var(--accent-soft); color: #fff; }
.btn .ico { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }

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

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: .16em;
  color: var(--text);
  padding-inline-start: 2px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.wordmark .mk {
  width: 24px;
  height: 24px;
  color: var(--text);
  flex: none;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  font-size: .95rem;
  color: var(--text-dim);
  border-radius: 8px;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav-links a:hover { color: var(--text); background: #ffffff08; }
.nav-links a.active { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 9px;
  width: 42px; height: 42px;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-btn svg { width: 20px; height: 20px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  padding: 24px var(--gutter);
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top {
  display: flex; align-items: center; justify-content: space-between;
  height: 44px; margin-bottom: 32px;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.mobile-menu nav a:hover { color: var(--accent-bright); }
.mobile-menu .btn { margin-top: 28px; justify-content: center; }
.mobile-menu .m-close {
  background: transparent; border: 1px solid var(--line); border-radius: 9px;
  width: 42px; height: 42px; color: var(--text); cursor: pointer;
}

/* ---------- Hero ---------- */
.hero { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 104px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy .display { margin-bottom: 24px; }
.hero-copy .lead { margin-bottom: 14px; }
.hero-sub { color: var(--text-faint); font-size: 1.02rem; max-width: 54ch; margin-bottom: 34px; }

/* ---------- Architecture spine (hero visual) ---------- */
.spine {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}
.spine::before {
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(circle at 50% 0%, var(--accent-soft), transparent 60%);
  pointer-events:none;
}
.spine-track { position: relative; z-index: 1; }
.node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #0c1320cc;
  margin-bottom: 0;
  position: relative;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.node.core {
  border-color: var(--accent-line);
  background: linear-gradient(90deg, #12203c, #0e1626);
  box-shadow: 0 0 0 1px var(--accent-soft), 0 8px 30px -12px #3b6ef555;
}
.node .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--text-faint);
  flex: none;
  box-shadow: 0 0 0 0 var(--accent);
}
.node.core .dot { background: var(--accent-bright); }
.node .n-label { font-family: var(--font-display); font-weight: 500; font-size: .98rem; letter-spacing: -0.01em; }
.node .n-sub { color: var(--text-faint); font-size: .8rem; margin-left: auto; }
.node.core .n-label { color: #fff; }

.connector {
  height: 22px;
  width: 2px;
  margin-inline: auto;
  position: relative;
  background: var(--line);
  overflow: hidden;
}
.connector::after {
  content:"";
  position:absolute; left:0; right:0; top:-40%;
  height: 40%;
  background: linear-gradient(180deg, transparent, var(--accent-bright), transparent);
  animation: flow 2.6s linear infinite;
}
@keyframes flow { 0%{ top:-45%; } 100%{ top:105%; } }

/* pulse on core dot */
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 #3b6ef566; }
  70%  { box-shadow: 0 0 0 9px #3b6ef500; }
  100% { box-shadow: 0 0 0 0 #3b6ef500; }
}
.node.core .dot { animation: pulse 2.8s ease-out infinite; }

/* ---------- Trust bar ---------- */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  align-items: center;
  color: var(--text-faint);
  font-size: .88rem;
}
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust .tick { color: var(--accent); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.card:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: .96rem; margin: 0; }

.card .c-ico {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--accent-bright);
  background: var(--accent-soft);
}
.card .c-ico svg { width: 20px; height: 20px; }

.card.solution { padding: 28px; }
.card.solution h3 { font-size: 1.18rem; }

/* problem cards accent variant */
.card.problem { background: var(--panel-2); }

/* ---------- Operating layer diagram ---------- */
.layer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
  overflow: hidden;
}
.layer-row { padding: 22px 24px; }
.layer-row.top, .layer-row.bottom { background: #0c1320; }
.layer-label { font-size: .82rem; color: var(--text-faint); margin-bottom: 12px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-size: .88rem;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0e1626;
  color: var(--text-dim);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.pill:hover { border-color: var(--accent-line); color: var(--text); }
.layer-core {
  background: linear-gradient(90deg, #12203c, #0e1626);
  border-top: 1px solid var(--accent-line);
  border-bottom: 1px solid var(--accent-line);
  text-align: center;
  padding: 20px 24px;
}
.layer-core .lc-name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  letter-spacing: .12em; color: #fff;
}
.cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 16px;
}
.cap {
  font-size: .84rem; padding: 9px 10px; text-align: center;
  border: 1px solid var(--accent-line); border-radius: 8px;
  background: #0d182e; color: var(--text-dim);
}
.layer-arrow { text-align:center; color: var(--accent); padding: 6px 0; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.step { padding: 30px 26px; border-right: 1px solid var(--line); position: relative; background: var(--panel-2); }
.step:last-child { border-right: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: .9rem; color: var(--accent-bright);
  font-weight: 600; letter-spacing: .05em;
  margin-bottom: 16px; display:flex; align-items:center; gap:10px;
}
.step-num::after { content:""; flex:1; height:1px; background: var(--line); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: .93rem; margin: 0; }

/* ---------- Flow diagram (governance / system examples) ---------- */
.flow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.flow-step {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e1626;
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--text);
  white-space: nowrap;
}
.flow-step.start { border-color: var(--accent-line); background: #12203c; color:#fff; }
.flow-step.exc { border-color: #4a3a1e; background: #211a0e; color: var(--warn); }
.flow-arrow { color: var(--accent); flex: none; }
.flow-branch {
  margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line);
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
}
.flow-branch .lbl { font-size:.8rem; color: var(--text-faint); margin-right: 4px; }

/* ---------- Platform ecosystem ---------- */
.eco { display: grid; gap: 18px; }
.eco-core {
  border: 1px solid var(--accent-line);
  background: linear-gradient(180deg, #12203c, #0d1524);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 60px -20px #3b6ef540;
}
.eco-core .ec-name { font-family: var(--font-display); font-weight:600; font-size:1.4rem; letter-spacing:.14em; color:#fff; }
.eco-modules { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.eco-mod {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--panel);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.eco-mod:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.eco-mod .em-name { font-family: var(--font-display); font-weight: 500; color: #fff; margin-bottom: 6px; font-size: 1.05rem; }
.eco-mod p { color: var(--text-dim); font-size:.9rem; margin:0; }
.eco-mod .em-tag { font-size:.72rem; color: var(--accent-bright); margin-bottom: 12px; }

/* Example-architecture label on solution flow cards */
.ex-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--accent-bright);
  padding: 4px 10px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  background: var(--accent-soft);
  margin-bottom: 14px;
}

/* ---------- Split / feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,64px); align-items:center; }

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-dim); font-size: .98rem; }
.check-list .tick {
  color: var(--accent-bright); flex: none; margin-top: 3px;
  width: 18px; height: 18px;
}

/* ---------- Industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; }
.ind {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease);
}
.ind:hover { background: var(--accent-soft); }
.ind h3 { font-size: 1.1rem; margin-bottom: 8px; }
.ind p { color: var(--text-dim); font-size: .9rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 60% 120% at 100% 0%, #3b6ef522, transparent 60%),
    linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { color: var(--text-dim); max-width: 52ch; margin-inline: auto; margin-bottom: 28px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Forms ---------- */
.form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3.5vw, 40px);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .9rem; color: var(--text-dim); margin-bottom: 8px; font-weight: 500; }
.field label .req { color: var(--accent-bright); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.input, .select, .textarea {
  width: 100%;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .98rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--text-faint); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--accent); background: #0c1424;
}
.textarea { resize: vertical; min-height: 120px; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236B7789' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 14px center; padding-right: 40px; }
.field .err { color: #ff8f8f; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid .input, .field.invalid .select, .field.invalid .textarea { border-color: #ff6b6b; }
.field.invalid .err { display: block; }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.show { display: block; }
.form-success .fs-ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  display: grid; place-items: center; margin: 0 auto 20px; color: var(--accent-bright);
}
.form.submitted .form-body { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 72px) 36px;
  margin-top: clamp(48px, 8vw, 96px);
  background: var(--panel-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .wordmark { margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: .95rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-body); font-size: .82rem; color: var(--text-faint); font-weight: 600; letter-spacing: .04em; margin-bottom: 16px; text-transform: none; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--text-dim); font-size: .93rem; transition: color .18s var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  align-items: center; padding-top: 28px; border-top: 1px solid var(--line);
  color: var(--text-faint); font-size: .85rem;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Reveal animation ---------- */
/* Only hide when JS is active (html.js), so content is visible if JS fails or is disabled */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-top: clamp(56px, 7vw, 90px); padding-bottom: clamp(40px,5vw,64px); }
.page-hero .display { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.page-hero .lead { margin-top: 18px; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  bottom: 18px; left: 18px; right: 18px;
  max-width: 460px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  z-index: 150;
  box-shadow: 0 20px 50px -20px #000;
  transform: translateY(140%);
  transition: transform .4s var(--ease);
}
.cookie.show { transform: none; }
.cookie p { font-size: .88rem; color: var(--text-dim); margin-bottom: 14px; }
.cookie .btn-row { gap: 10px; }
.cookie .btn { padding: 9px 16px; font-size: .88rem; }

/* ---------- Outcomes ---------- */
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.outcome {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; gap: 14px; align-items: flex-start;
}
.outcome .o-ico { color: var(--accent-bright); flex: none; width: 22px; height: 22px; margin-top: 2px; }
.outcome .o-ico svg { width: 22px; height: 22px; }
.outcome h3 { font-size: 1.02rem; margin: 0 0 4px; }
.outcome p { color: var(--text-dim); font-size: .9rem; margin: 0; }

/* ---------- Operations Audit (entry offer) ---------- */
.audit {
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 70% 130% at 0% 0%, #3b6ef522, transparent 55%),
    linear-gradient(180deg, var(--panel), var(--panel-2));
  overflow: hidden;
}
.audit-grid { display: grid; grid-template-columns: 1.05fr .95fr; }
.audit-main { padding: clamp(30px, 4vw, 48px); }
.audit-badge {
  display: inline-block; font-size: .78rem; font-weight: 500;
  color: var(--accent-bright); padding: 5px 12px;
  border: 1px solid var(--accent-line); border-radius: 999px;
  background: var(--accent-soft); margin-bottom: 20px;
}
.audit-main h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.audit-main .lead { font-size: 1.08rem; margin-bottom: 26px; }
.audit-side {
  padding: clamp(30px, 4vw, 48px);
  border-left: 1px solid var(--line);
  background: #0b111d;
}
.audit-side .as-label { font-size: .82rem; color: var(--text-faint); margin-bottom: 16px; }
.deliverables { list-style: none; margin: 0 0 4px; padding: 0; display: grid; gap: 13px; }
.deliverables li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--text); }
.deliverables .tick { color: var(--accent-bright); flex: none; width: 18px; height: 18px; margin-top: 3px; }
.journey {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line);
}
.journey .j-step {
  font-family: var(--font-display); font-weight: 500; font-size: .92rem;
  padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px;
  background: #0e1626; color: var(--text);
}
.journey .j-step.now { border-color: var(--accent-line); background: #12203c; color: #fff; }
.journey .j-arrow { color: var(--accent); flex: none; }

/* ---------- Founder ---------- */
.founder {
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); padding: clamp(28px, 4vw, 40px);
}
.founder-avatar {
  width: 88px; height: 88px; border-radius: 14px; flex: none;
  border: 1px solid var(--accent-line);
  background: linear-gradient(140deg, #16233c, #0e1626);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.7rem;
  color: #fff; letter-spacing: .02em;
}
.founder .f-name { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: #fff; margin: 0 0 2px; }
.founder .f-role { color: var(--accent-bright); font-size: .92rem; margin-bottom: 16px; }
.founder p { color: var(--text-dim); font-size: .98rem; margin: 0 0 12px; }
.founder p:last-child { margin-bottom: 0; }

@media (max-width: 980px) {
  .outcomes { grid-template-columns: repeat(2, 1fr); }
  .audit-grid { grid-template-columns: 1fr; }
  .audit-side { border-left: 0; border-top: 1px solid var(--line); }
}
@media (max-width: 720px) {
  .outcomes { grid-template-columns: 1fr; }
  .outcome { border-right: 0; }
  .founder { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- Stat / meta ---------- */
.meta-row { display:flex; flex-wrap:wrap; gap: 28px 40px; }
.meta { }
.meta .m-num { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: #fff; letter-spacing:-.02em; }
.meta .m-lbl { color: var(--text-faint); font-size: .9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .spine { max-width: 480px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .eco-modules { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cap-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-btn { display: inline-flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .eco-modules { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .ind-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: repeat(2,1fr); }
  .cookie { left: 12px; right: 12px; bottom: 12px; }
}
