/* ============================================================
   CLOUDICO — CLOUD INFRASTRUCTURE PAGE
   Campaign landing page · designed for paid traffic
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --ink-1: #06060A; --ink-2: #0B0B12; --ink-3: #13131C; --ink-4: #1B1B28; --ink-5: #252535;
  --mood-deep: #06060A; --mood-warm: #110E18; --mood-violet: #100A1F; --mood-band: #1A1230;
  --line: rgba(255,255,255,0.08); --line-2: rgba(255,255,255,0.14); --line-3: rgba(255,255,255,0.22); --line-p: rgba(180,158,255,0.28);
  --t1: #FFFFFF; --t2: #D4D4E0; --t3: #9B9BAE; --t-mono: #B0B0C8;
  --p: #7649D6; --p-light: #9472E8; --p-bright: #B49EFF; --p-deep: #4F2B9C;
  --p-glow: rgba(118,73,214,0.5); --p-soft: rgba(118,73,214,0.10); --p-faint: rgba(118,73,214,0.05);
  --orange: #FF7A45; --orange-bright: #FFA17A; --orange-soft: rgba(255,122,69,0.10);
  --cyan: #06B6D4; --cyan-bright: #38DDF7; --cyan-soft: rgba(6,182,212,0.10);
  --emerald: #10B981; --emerald-bright: #4ADE9A; --emerald-soft: rgba(16,185,129,0.10);
  --pink: #EC4899; --pink-bright: #F472B6; --pink-soft: rgba(236,72,153,0.10);
  --rose: #F43F5E; --rose-bright: #FB7185; --rose-soft: rgba(244,63,94,0.10);
  --f-sans: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
  --f-serif: 'Instrument Serif', Georgia, serif;
  --maxw: 1300px; --pad: clamp(20px, 4vw, 48px);
}

html, body {
  background: var(--ink-2); color: var(--t1);
  font-family: var(--f-sans); line-height: 1.5;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* AMBIENT */
.orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.42; animation: drift 24s ease-in-out infinite; }
.orb-1 { width: 540px; height: 540px; background: radial-gradient(circle, #7649D6, transparent 70%); top: -120px; left: -100px; }
.orb-2 { width: 420px; height: 420px; background: radial-gradient(circle, #4F2B9C, transparent 70%); top: 40%; right: -120px; animation-delay: -8s; }
.orb-3 { width: 520px; height: 520px; background: radial-gradient(circle, #06B6D4, transparent 70%); top: 75%; left: 25%; animation-delay: -15s; opacity: 0.15; }
@keyframes drift { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(40px,-30px) scale(1.05); } 66% { transform: translate(-30px,40px) scale(0.95); } }
.noise { position: fixed; inset: 0; pointer-events: none; z-index: 1; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"); opacity: 0.55; mix-blend-mode: overlay; }
#spotlight { position: fixed; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(180,158,255,0.10), transparent 60%); pointer-events: none; z-index: 2; transform: translate(-50%, -50%); transition: opacity 0.3s; opacity: 0; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 3; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ANNOUNCE / HEADER / DRAWER (same as overview) */
.announce { position: relative; z-index: 50; background: linear-gradient(90deg, rgba(255,122,69,0.20), rgba(118,73,214,0.20)); border-bottom: 1px solid rgba(255,255,255,0.10); padding: 12px 0; font-size: 13px; text-align: center; color: var(--t2); font-family: var(--f-mono); }
.announce strong { color: var(--orange-bright); font-weight: 600; }
.announce .live { display: inline-flex; align-items: center; gap: 7px; margin-right: 12px; color: var(--orange-bright); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); animation: pulse 1.8s infinite; }
.header { position: sticky; top: 0; z-index: 40; background: rgba(11,11,18,0.78); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid var(--line); transition: all 0.3s; }
.header.scrolled { background: rgba(6,6,10,0.94); border-bottom-color: var(--line-2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 19px; letter-spacing: -0.025em; color: var(--t1); }
.logo-mark { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--p-bright), var(--p), var(--p-deep)); display: grid; place-items: center; box-shadow: 0 0 24px var(--p-glow), inset 0 0 12px rgba(255,255,255,0.2); position: relative; }
.logo-mark::after { content: ''; position: absolute; inset: -1px; border-radius: 11px; background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent 40%); pointer-events: none; }
.logo-mark svg { width: 20px; height: 20px; position: relative; z-index: 1; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--t2); transition: color 0.2s; position: relative; padding: 6px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--t1); }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--p-bright); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn { display: inline-flex; align-items: center; gap: 8px; height: 46px; padding: 0 22px; border-radius: 12px; font-size: 14px; font-weight: 500; letter-spacing: -0.005em; transition: all 0.25s cubic-bezier(.4,0,.2,1); white-space: nowrap; position: relative; overflow: hidden; will-change: transform; }
.btn-ghost { color: var(--t1); border: 1px solid var(--line-2); background: rgba(255,255,255,0.03); }
.btn-ghost:hover { border-color: var(--line-3); background: rgba(255,255,255,0.06); }
.btn-primary { color: #FFFFFF; background: linear-gradient(135deg, var(--p-bright) 0%, var(--p) 50%, var(--p-deep) 100%); font-weight: 500; box-shadow: 0 4px 24px rgba(118,73,214,0.5), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 50%); pointer-events: none; }
.btn-primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%); transform: translateX(-100%); transition: transform 0.7s; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 32px rgba(118,73,214,0.65), inset 0 1px 0 rgba(255,255,255,0.4); }
.btn-primary:hover::after { transform: translateX(100%); }
.btn-lg { height: 56px; padding: 0 30px; font-size: 15px; border-radius: 14px; }
.menu-btn { display: none; }
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .menu-btn { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 11px; background: rgba(255,255,255,0.03); color: var(--t1); }
}

.section { padding: clamp(90px, 12vw, 140px) 0; position: relative; z-index: 2; }
.eyebrow { font-family: var(--f-mono); font-size: 11px; color: var(--p-bright); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 10px; font-weight: 600; padding: 6px 14px; border: 1px solid var(--line-p); background: var(--p-soft); border-radius: 999px; }
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--p-bright); box-shadow: 0 0 10px var(--p-bright); }
.eyebrow.orange { color: var(--orange-bright); border-color: rgba(255,122,69,0.3); background: var(--orange-soft); }
.eyebrow.orange::before { background: var(--orange-bright); box-shadow: 0 0 10px var(--orange-bright); }
.eyebrow.cyan { color: var(--cyan-bright); border-color: rgba(6,182,212,0.3); background: var(--cyan-soft); }
.eyebrow.cyan::before { background: var(--cyan-bright); box-shadow: 0 0 10px var(--cyan-bright); }
.eyebrow.emerald { color: var(--emerald-bright); border-color: rgba(16,185,129,0.3); background: var(--emerald-soft); }
.eyebrow.emerald::before { background: var(--emerald-bright); box-shadow: 0 0 10px var(--emerald-bright); }
.eyebrow.pink { color: var(--pink-bright); border-color: rgba(236,72,153,0.3); background: var(--pink-soft); }
.eyebrow.pink::before { background: var(--pink-bright); box-shadow: 0 0 10px var(--pink-bright); }
.eyebrow.rose { color: var(--rose-bright); border-color: rgba(244,63,94,0.3); background: var(--rose-soft); }
.eyebrow.rose::before { background: var(--rose-bright); box-shadow: 0 0 10px var(--rose-bright); }
.section-title { font-size: clamp(34px, 4.4vw, 54px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 18px; max-width: 760px; color: var(--t1); }
.section-title em { font-family: var(--f-serif); font-style: italic; font-weight: 400; background: linear-gradient(135deg, #D4BFFF, var(--p-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-sub { font-size: clamp(16px, 1.35vw, 18px); color: var(--t2); max-width: 620px; line-height: 1.55; }
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head.center .section-title, .section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.reveal.in { opacity: 1; transform: translateY(0); }
::selection { background: var(--p); color: white; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb { background: var(--ink-4); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--p); }

/* CRUMB */
.crumb { font-family: var(--f-mono); font-size: 11px; color: var(--t3); letter-spacing: 0.06em; margin-bottom: 22px; display: inline-flex; align-items: center; gap: 8px; position: relative; z-index: 4; }
.crumb a { color: var(--t3); transition: color 0.2s; }
.crumb a:hover { color: var(--t1); }
.crumb .sep { opacity: 0.4; }
.crumb .here { color: var(--p-bright); }

/* DRAWER */
.drawer { position: fixed; inset: 0; background: rgba(6,6,10,0.97); backdrop-filter: blur(20px); z-index: 100; display: none; flex-direction: column; padding: 24px var(--pad); }
.drawer.open { display: flex; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer nav a { padding: 20px 0; font-size: 24px; font-weight: 500; border-bottom: 1px solid var(--line); color: var(--t1); }
.drawer .btn { margin-top: 32px; justify-content: center; }

/* ============================================
   1. HERO — OUTCOME-FIRST CAMPAIGN HERO
   ============================================ */
.ci-hero {
  position: relative;
  padding: 64px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1200px 800px at 50% 0%, rgba(118,73,214,0.28), transparent 60%),
    radial-gradient(ellipse 900px 600px at 90% 50%, rgba(6,182,212,0.10), transparent 60%);
}
.ci-hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 75%);
}
.ci-hero-inner {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.ci-hero-text { max-width: 600px; }
.ci-hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  background: linear-gradient(90deg, var(--p-soft), rgba(6,182,212,0.10));
  border: 1px solid var(--line-p);
  border-radius: 999px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--p-bright); font-weight: 600;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.05s both;
}
.ci-hero-tag::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--p-bright); box-shadow: 0 0 10px var(--p-bright);
}
.ci-hero h1 {
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 600; line-height: 1.0;
  letter-spacing: -0.04em; margin-bottom: 24px;
  animation: fadeUp 0.8s 0.15s both;
}
.ci-hero h1 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, #D4BFFF 0%, var(--p-bright) 40%, var(--p) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ci-hero-sub {
  font-size: clamp(17px, 1.45vw, 19px);
  color: var(--t2); max-width: 540px;
  margin-bottom: 32px; line-height: 1.55;
  animation: fadeUp 0.8s 0.25s both;
}
.ci-hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.35s both;
}
.ci-hero-trust-row {
  display: flex; flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--t-mono);
  animation: fadeUp 0.8s 0.45s both;
}
.ci-hero-trust-row span {
  display: inline-flex; align-items: center; gap: 7px;
}
.ci-hero-trust-row span::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

/* HERO VISUAL — architecture preview card */
.ci-hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-2);
  padding: 28px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: fadeUp 1s 0.4s both;
}
.ci-hero-visual::before {
  content: '';
  position: absolute; top: -1px; left: 30px; right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p-bright), transparent);
  box-shadow: 0 0 16px var(--p-bright);
}
.ci-hero-vis-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--line);
}
.ci-hero-vis-title {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t-mono); letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.ci-hero-vis-title::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse 2s infinite;
}
.ci-hero-vis-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: var(--emerald-soft);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 999px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--emerald-bright);
  letter-spacing: 0.04em;
}

/* AWS Multi-account org tree visual */
.ci-org-tree {
  position: relative;
  padding: 12px 0 4px;
}
.ci-org-node {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  margin-bottom: 6px;
  position: relative;
  transition: all 0.3s;
}
.ci-org-node.root {
  background: linear-gradient(90deg, var(--p-soft), transparent 80%);
  border-color: var(--line-p);
}
.ci-org-node.indent-1 { margin-left: 24px; }
.ci-org-node.indent-2 { margin-left: 48px; }
.ci-org-node.indent-1::before, .ci-org-node.indent-2::before {
  content: '';
  position: absolute;
  left: -16px; top: -3px; bottom: 50%;
  width: 12px;
  border-left: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  border-bottom-left-radius: 4px;
}
.ci-org-node.indent-2::before { left: -16px; }
.ci-org-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--ink-4);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--p-bright);
  flex-shrink: 0;
}
.ci-org-node.root .ci-org-icon {
  background: linear-gradient(135deg, var(--p-bright), var(--p));
  color: white;
  border-color: var(--p);
}
.ci-org-node.emerald .ci-org-icon { color: var(--emerald-bright); }
.ci-org-node.cyan .ci-org-icon { color: var(--cyan-bright); }
.ci-org-node.orange .ci-org-icon { color: var(--orange-bright); }
.ci-org-label {
  font-size: 13px; font-weight: 500;
  color: var(--t1); letter-spacing: -0.01em;
  flex: 1;
}
.ci-org-meta {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t3); letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ci-org-status {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 6px var(--emerald);
}
.ci-hero-vis-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between; gap: 12px;
}
.ci-hero-vis-stat { flex: 1; min-width: 0; }
.ci-hero-vis-stat-val {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #fff, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 2px;
  line-height: 1;
}
.ci-hero-vis-stat-lbl {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t3); letter-spacing: 0.04em;
}

@media (max-width: 1000px) {
  .ci-hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .ci-hero-visual { max-width: 540px; margin: 0 auto; }
}

/* ============================================
   2. TRUST STRIP (clients, not tech logos this time)
   ============================================ */
.ci-trust {
  position: relative; z-index: 3;
  padding: 48px 0;
  background: var(--ink-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ci-trust::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 200px at 50% 50%, rgba(118,73,214,0.08), transparent 60%);
  pointer-events: none;
}
.ci-trust-label {
  text-align: center; font-family: var(--f-mono);
  font-size: 11px; color: var(--t-mono);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 28px;
  position: relative; z-index: 1;
  font-weight: 500;
}
.ci-trust-label em {
  font-family: var(--f-serif); font-style: italic;
  font-weight: 400;
  color: var(--p-bright);
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
}
.ci-trust-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(28px, 5vw, 56px);
  position: relative; z-index: 1;
}
.ci-tlogo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--t2); opacity: 0.75; transition: all 0.3s;
  font-weight: 600; font-size: 15px; letter-spacing: -0.015em;
}
.ci-tlogo:hover { opacity: 1; color: var(--t1); transform: translateY(-2px); }
.ci-tlogo .ci-tlogo-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--ink-4);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--p-bright);
  flex-shrink: 0;
  font-family: var(--f-mono); font-size: 11px;
  font-weight: 700;
}

/* ============================================
   3. DRIFT STORY — 3-stage timeline
   ============================================ */
.drift {
  background: var(--mood-warm);
  position: relative; overflow: hidden;
}
.drift::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 500px at 80% 30%, rgba(244,63,94,0.10), transparent 60%),
    radial-gradient(ellipse 800px 500px at 20% 70%, rgba(255,122,69,0.08), transparent 60%);
}

.drift-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}
.drift-stages::before {
  content: '';
  position: absolute;
  top: 78px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald) 0%, var(--orange) 50%, var(--rose) 100%);
  opacity: 0.35;
  z-index: 0;
}
.drift-stage {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  z-index: 1;
  transition: all 0.3s;
}
.drift-stage:hover { transform: translateY(-3px); border-color: var(--line-2); }
.drift-stage.s1 { border-top: 3px solid var(--emerald); }
.drift-stage.s2 { border-top: 3px solid var(--orange); }
.drift-stage.s3 { border-top: 3px solid var(--rose); }

.drift-time {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t3); letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 14px;
}
.drift-stage.s1 .drift-time { color: var(--emerald-bright); }
.drift-stage.s2 .drift-time { color: var(--orange-bright); }
.drift-stage.s3 .drift-time { color: var(--rose-bright); }
.drift-icon-wrap {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  position: relative;
}
.drift-stage.s1 .drift-icon-wrap { background: var(--emerald-soft); border: 1px solid rgba(16,185,129,0.3); color: var(--emerald-bright); }
.drift-stage.s2 .drift-icon-wrap { background: var(--orange-soft); border: 1px solid rgba(255,122,69,0.3); color: var(--orange-bright); }
.drift-stage.s3 .drift-icon-wrap { background: var(--rose-soft); border: 1px solid rgba(244,63,94,0.3); color: var(--rose-bright); }
.drift-stage h3 {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.15;
  color: var(--t1);
}
.drift-stage h3 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
}
.drift-stage.s1 h3 em { color: var(--emerald-bright); }
.drift-stage.s2 h3 em { color: var(--orange-bright); }
.drift-stage.s3 h3 em { color: var(--rose-bright); }
.drift-stage p {
  font-size: 14px; color: var(--t2);
  line-height: 1.55;
}
.drift-reset {
  margin-top: 56px;
  padding: 32px;
  border: 1px solid var(--line-p);
  border-radius: 22px;
  background:
    radial-gradient(ellipse 400px 200px at 50% 0%, var(--p-soft), transparent 60%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.drift-reset::before {
  content: ''; position: absolute; top: -1px; left: 30px; right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p-bright), transparent);
  box-shadow: 0 0 12px var(--p-bright);
}
.drift-reset h3 {
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.15;
  color: var(--t1);
}
.drift-reset h3 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, #D4BFFF, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.drift-reset p {
  font-size: 16px; color: var(--t2);
  max-width: 540px; margin: 0 auto 22px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .drift-stages { grid-template-columns: 1fr; }
  .drift-stages::before { display: none; }
}

/* ============================================
   4. PROBLEMS WE FIX — 5 specific anti-patterns
   ============================================ */
.problems {
  background: var(--ink-1);
  position: relative; overflow: hidden;
}
.problems::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 700px 500px at 20% 30%, rgba(244,63,94,0.06), transparent 60%),
    radial-gradient(ellipse 700px 500px at 80% 70%, rgba(118,73,214,0.08), transparent 60%);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.problem-card {
  padding: 28px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.problem-card:hover {
  border-color: var(--line-2);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}
.problem-card.feature {
  grid-column: 1 / -1;
  border-color: var(--line-p);
  background:
    radial-gradient(ellipse 600px 300px at 0% 50%, rgba(244,63,94,0.10), transparent 60%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.problem-head {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 14px;
}
.problem-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--rose-soft);
  border: 1px solid rgba(244,63,94,0.3);
  display: grid; place-items: center;
  color: var(--rose-bright);
  flex-shrink: 0;
}
.problem-num {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t3); letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 4px;
}
.problem-card h3 {
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--t1);
}
.problem-card h3 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  color: var(--rose-bright);
}
.problem-card p {
  font-size: 14.5px; color: var(--t2);
  line-height: 1.6;
}
.problem-card.feature h3 {
  font-size: 26px;
}
.problem-quote {
  position: relative;
  padding: 20px 22px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.problem-quote-text {
  font-family: var(--f-serif); font-style: italic;
  font-size: 17px;
  color: var(--t1);
  line-height: 1.45;
  margin-bottom: 14px;
}
.problem-quote-attr {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t3);
  letter-spacing: 0.04em;
}
@media (max-width: 800px) {
  .problems-grid { grid-template-columns: 1fr; }
  .problem-card.feature { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================
   5. CLOUDICO VS DIY VS CONTROL TOWER
   ============================================ */
.versus {
  background: var(--mood-violet);
  position: relative;
}
.versus::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 900px 600px at 50% 30%, rgba(118,73,214,0.12), transparent 65%);
}
.versus-table {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
}
.versus-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.versus-row:last-child { border-bottom: none; }
.versus-row.head {
  background: rgba(255,255,255,0.025);
}
.versus-cell {
  padding: 20px 24px;
  font-size: 14px; color: var(--t2);
  line-height: 1.45;
  display: flex; align-items: center; gap: 10px;
  border-right: 1px solid var(--line);
  min-height: 64px;
}
.versus-cell:last-child { border-right: none; }
.versus-row.head .versus-cell {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600;
  padding: 18px 24px;
  min-height: 0;
}
.versus-row.head .versus-cell:first-child {
  color: var(--p-bright);
}
.versus-row.head .versus-cell.featured {
  color: var(--p-bright);
  background: var(--p-soft);
  position: relative;
}
.versus-row.head .versus-cell.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p-bright), transparent);
  box-shadow: 0 0 8px var(--p-bright);
}
.versus-row .versus-cell:first-child {
  font-weight: 500;
  color: var(--t1);
}
.versus-cell.featured { background: var(--p-soft); }
.versus-cell.win {
  color: var(--emerald-bright);
  font-weight: 500;
}
.versus-cell.win svg { width: 16px; height: 16px; flex-shrink: 0; }
.versus-cell.lose {
  color: var(--t3);
}
.versus-cell.lose svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--rose-bright); opacity: 0.7; }
.versus-cell.warn {
  color: var(--orange-bright);
}
.versus-cell.warn svg { width: 14px; height: 14px; flex-shrink: 0; }
@media (max-width: 900px) {
  .versus-table { border-radius: 14px; }
  .versus-row { grid-template-columns: 1.4fr repeat(3, 0.9fr); }
  .versus-cell { padding: 14px 12px; font-size: 12.5px; min-height: 56px; }
  .versus-row.head .versus-cell { padding: 12px; font-size: 10px; }
}

/* ============================================
   6. WHAT WE BUILD — 6 capability cards
   ============================================ */
.what-we-build {
  background: var(--ink-2);
  position: relative;
}
.what-we-build::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 800px 500px at 50% 50%, rgba(118,73,214,0.08), transparent 65%);
}
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cap-card {
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.cap-card:hover {
  border-color: var(--line-p);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(118,73,214,0.4);
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p-bright), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.cap-card:hover::before { opacity: 1; }
.cap-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--p-soft);
  border: 1px solid var(--line-p);
  display: grid; place-items: center;
  color: var(--p-bright);
  margin-bottom: 20px;
}
.cap-card h3 {
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--t1);
}
.cap-card h3 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  color: var(--p-bright);
}
.cap-desc {
  font-size: 14px; color: var(--t2);
  line-height: 1.6;
  margin-bottom: 18px;
}
.cap-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.cap-tag {
  font-family: var(--f-mono); font-size: 10px;
  padding: 4px 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--t-mono);
  letter-spacing: 0.04em;
}
@media (max-width: 900px) { .capabilities { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .capabilities { grid-template-columns: 1fr; } }

/* ============================================
   7. FEATURE INVENTORY — categorized list
   ============================================ */
.features-inv {
  background: var(--mood-band);
  position: relative; overflow: hidden;
}
.features-inv::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 600px at 20% 40%, rgba(118,73,214,0.20), transparent 60%),
    radial-gradient(ellipse 700px 500px at 80% 60%, rgba(6,182,212,0.10), transparent 60%);
}
.features-inv::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(180,158,255,0.30) 0.5px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent 80%);
  opacity: 0.25;
}
.feat-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feat-cat {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  position: relative;
  overflow: hidden;
}
.feat-cat-head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.feat-cat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--p-bright), var(--p));
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--p-glow);
}
.feat-cat.c2 .feat-cat-icon { background: linear-gradient(135deg, var(--cyan-bright), var(--cyan)); box-shadow: 0 4px 14px rgba(6,182,212,0.5); }
.feat-cat.c3 .feat-cat-icon { background: linear-gradient(135deg, var(--emerald-bright), var(--emerald)); box-shadow: 0 4px 14px rgba(16,185,129,0.5); }
.feat-cat.c4 .feat-cat-icon { background: linear-gradient(135deg, var(--orange-bright), var(--orange)); box-shadow: 0 4px 14px rgba(255,122,69,0.5); }
.feat-cat-title {
  font-size: 17px; font-weight: 600;
  color: var(--t1); letter-spacing: -0.02em;
  margin-bottom: 2px;
  line-height: 1.2;
}
.feat-cat-count {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t3); letter-spacing: 0.04em;
}
.feat-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 1px;
}
.feat-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.04);
  font-size: 13.5px;
  color: var(--t2);
  line-height: 1.45;
}
.feat-list li:last-child { border-bottom: none; }
.feat-list li::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--p-soft);
  border: 1px solid var(--line-p);
  flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B49EFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 9px; background-position: center; background-repeat: no-repeat;
}
.feat-cat.c2 .feat-list li::before { background-color: var(--cyan-soft); border-color: rgba(6,182,212,0.3); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338DDF7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"); }
.feat-cat.c3 .feat-list li::before { background-color: var(--emerald-soft); border-color: rgba(16,185,129,0.3); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ADE9A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"); }
.feat-cat.c4 .feat-list li::before { background-color: var(--orange-soft); border-color: rgba(255,122,69,0.3); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFA17A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"); }
@media (max-width: 800px) { .feat-cats { grid-template-columns: 1fr; } }

/* ============================================
   8. ARCHITECTURE — visual blueprint
   ============================================ */
.architecture {
  background: var(--ink-1);
  position: relative; overflow: hidden;
}
.architecture::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 800px 500px at 50% 50%, rgba(118,73,214,0.10), transparent 60%);
}
.arch-frame {
  position: relative;
  border: 1px solid var(--line-p);
  border-radius: 26px;
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(118,73,214,0.10), transparent 60%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  padding: 36px;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.5);
}
.arch-frame::before {
  content: ''; position: absolute; top: -1px; left: 30px; right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p-bright), transparent);
  box-shadow: 0 0 12px var(--p-bright);
}
.arch-frame-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line);
  flex-wrap: wrap; gap: 16px;
}
.arch-frame-title {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--t-mono); letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.arch-frame-title::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald); box-shadow: 0 0 10px var(--emerald);
}
.arch-frame-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.arch-frame-tag {
  font-family: var(--f-mono); font-size: 10px;
  padding: 4px 10px;
  background: var(--p-soft);
  border: 1px solid var(--line-p);
  border-radius: 5px;
  color: var(--p-bright);
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* Architecture layout */
.arch-org {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.arch-col {
  display: flex; flex-direction: column;
  gap: 10px;
}
.arch-col-head {
  text-align: center;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t-mono); letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  padding: 8px 0;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.arch-col.c1 .arch-col-head { color: var(--p-bright); }
.arch-col.c2 .arch-col-head { color: var(--emerald-bright); }
.arch-col.c3 .arch-col-head { color: var(--cyan-bright); }
.arch-account {
  padding: 14px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
  transition: all 0.25s;
}
.arch-account:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--line-2);
  transform: translateX(3px);
}
.arch-account-name {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--t1); letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.arch-account-name::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 6px var(--emerald);
}
.arch-col.c1 .arch-account-name::before { background: var(--p-bright); box-shadow: 0 0 6px var(--p-bright); }
.arch-col.c3 .arch-account-name::before { background: var(--cyan-bright); box-shadow: 0 0 6px var(--cyan-bright); }
.arch-account-meta {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t3); letter-spacing: 0.04em;
  text-transform: uppercase;
}
.arch-account-tags {
  display: flex; gap: 5px; margin-top: 8px; flex-wrap: wrap;
}
.arch-account-tags span {
  font-family: var(--f-mono); font-size: 9px;
  padding: 2px 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--t-mono);
  letter-spacing: 0.04em;
}
.arch-bottom {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.arch-svc {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.arch-svc-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--p-soft);
  border: 1px solid var(--line-p);
  display: grid; place-items: center;
  color: var(--p-bright);
  flex-shrink: 0;
}
.arch-svc-text {
  display: flex; flex-direction: column;
}
.arch-svc-name { font-size: 12px; font-weight: 600; color: var(--t1); }
.arch-svc-tag { font-family: var(--f-mono); font-size: 9px; color: var(--t3); letter-spacing: 0.04em; }

@media (max-width: 900px) {
  .arch-org { grid-template-columns: 1fr; }
  .arch-bottom { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   9. OUTCOMES — 4 big stat row
   ============================================ */
.outcomes {
  background: var(--ink-1);
  position: relative; overflow: hidden;
}
.outcomes::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(118,73,214,0.12), transparent 60%);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.outcome {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.outcome:hover {
  border-color: var(--line-p);
  background: rgba(118,73,214,0.05);
  transform: translateY(-3px);
}
.outcome::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 3px;
}
.outcome.o1::before { background: linear-gradient(180deg, var(--p-bright), var(--p)); }
.outcome.o2::before { background: linear-gradient(180deg, var(--emerald-bright), var(--emerald)); }
.outcome.o3::before { background: linear-gradient(180deg, var(--cyan-bright), var(--cyan)); }
.outcome.o4::before { background: linear-gradient(180deg, var(--orange-bright), var(--orange)); }
.outcome-val {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.outcome.o1 .outcome-val { background: linear-gradient(135deg, #fff, var(--p-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.outcome.o2 .outcome-val { background: linear-gradient(135deg, #fff, var(--emerald-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.outcome.o3 .outcome-val { background: linear-gradient(135deg, #fff, var(--cyan-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.outcome.o4 .outcome-val { background: linear-gradient(135deg, #fff, var(--orange-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.outcome-val em {
  font-family: var(--f-serif); font-style: italic;
  font-weight: 400;
  font-size: 0.7em;
  display: inline-block;
}
.outcome-lbl {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.4;
  font-weight: 500;
}
.outcome-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t3); letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 900px) { .outcomes-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .outcomes-grid { grid-template-columns: 1fr; } }

/* ============================================
   10. PROCESS — 3-step (simpler than overview's 6)
   ============================================ */
.process3 {
  background: var(--mood-violet);
  position: relative;
}
.process3::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 800px 500px at 50% 30%, rgba(118,73,214,0.14), transparent 65%);
}
.steps3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}
.steps3::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--p-bright) 0%, var(--p) 50%, var(--p-deep) 100%);
  opacity: 0.20;
  z-index: 0;
}
.step3 {
  position: relative; z-index: 1;
  padding: 32px 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  transition: all 0.3s;
}
.step3:hover {
  border-color: var(--line-p);
  transform: translateY(-3px);
}
.step3-num {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--p-bright), var(--p), var(--p-deep));
  display: grid; place-items: center;
  margin-bottom: 22px;
  font-family: var(--f-serif); font-style: italic;
  font-size: 28px; font-weight: 400;
  color: white;
  box-shadow: 0 10px 30px var(--p-glow);
}
.step3-time {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--p-bright);
  letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 11px;
  background: var(--p-soft);
  border: 1px solid var(--line-p);
  border-radius: 999px;
}
.step3 h3 {
  font-size: 21px; font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.15;
  color: var(--t1);
}
.step3 h3 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  color: var(--p-bright);
}
.step3 p {
  font-size: 14px; color: var(--t2);
  line-height: 1.6;
  margin-bottom: 18px;
}
.step3-deliverables {
  padding: 16px 18px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.step3-deliv-label {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t3); letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 10px;
}
.step3-deliv-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 7px;
}
.step3-deliv-list li {
  font-size: 13px; color: var(--t2);
  display: flex; align-items: flex-start; gap: 8px;
}
.step3-deliv-list li::before {
  content: '→';
  color: var(--p-bright);
  font-weight: 600;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .steps3 { grid-template-columns: 1fr; }
  .steps3::before { display: none; }
}

/* ============================================
   11. POST-DELIVERY — Self-Managed vs Ongoing
   ============================================ */
.post-deliv {
  background: var(--ink-1);
  position: relative; overflow: hidden;
}
.post-deliv::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 800px 500px at 50% 50%, rgba(118,73,214,0.10), transparent 60%);
}
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pd-card {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.pd-card.featured {
  border-color: var(--line-p);
  background:
    radial-gradient(ellipse 400px 200px at 50% 0%, rgba(118,73,214,0.18), transparent 60%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
}
.pd-card.featured::before {
  content: '';
  position: absolute; top: -1px; left: 30px; right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p-bright), transparent);
  box-shadow: 0 0 10px var(--p-bright);
}
.pd-badge {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--p-bright);
  background: var(--p-soft);
  border: 1px solid var(--line-p);
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
}
.pd-card h3 {
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  line-height: 1.15;
  color: var(--t1);
}
.pd-card h3 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  color: var(--p-bright);
}
.pd-card > p {
  font-size: 15px; color: var(--t2);
  line-height: 1.55;
  margin-bottom: 24px;
}
.pd-feats {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 26px;
}
.pd-feats li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; color: var(--t2);
  line-height: 1.45;
}
.pd-feats li svg {
  width: 16px; height: 16px;
  color: var(--p-bright);
  flex-shrink: 0; margin-top: 2px;
}
.pd-priceline {
  padding: 16px 18px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 18px;
}
.pd-pricelabel {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t3); letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pd-price {
  font-size: 19px; font-weight: 600;
  color: var(--t1); letter-spacing: -0.015em;
}
.pd-price em {
  font-family: var(--f-serif); font-style: italic;
  font-weight: 400;
  color: var(--p-bright);
}
.pd-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; width: 100%;
  padding: 13px 16px;
  border-radius: 11px;
  font-size: 14px; font-weight: 500;
  transition: all 0.25s;
}
.pd-card .pd-cta {
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.03);
  color: var(--t1);
}
.pd-card .pd-cta:hover {
  border-color: var(--line-p);
  background: var(--p-soft);
  color: var(--p-bright);
}
.pd-card.featured .pd-cta {
  background: linear-gradient(135deg, var(--p-bright), var(--p));
  color: white;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px var(--p-glow);
}
.pd-card.featured .pd-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px var(--p-glow);
}
@media (max-width: 800px) { .pd-grid { grid-template-columns: 1fr; } }

/* ============================================
   12. FEATURED CASE STUDY (single, deep)
   ============================================ */
.case-deep {
  background: var(--mood-warm);
  position: relative; overflow: hidden;
}
.case-deep::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 500px at 80% 0%, rgba(16,185,129,0.08), transparent 60%),
    radial-gradient(ellipse 800px 500px at 20% 100%, rgba(118,73,214,0.10), transparent 60%);
}
.case-wrap {
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
}
.case-cover {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.case-cover img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.02) saturate(0.95); }
.case-cover::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(6,6,10,0.92)),
    linear-gradient(135deg, rgba(118,73,214,0.3), transparent 55%);
}
.case-cover-content {
  position: absolute; bottom: 28px; left: 32px; right: 32px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
}
.case-cover-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.case-cover-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px;
  background: rgba(6,6,10,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t1);
  letter-spacing: 0.04em;
}
.case-cover-tag.cat { color: var(--emerald-bright); border-color: rgba(16,185,129,0.4); }
.case-cover-tag.cat::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}
.case-cover-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--t1);
  margin-bottom: 6px;
  max-width: 580px;
}
.case-cover-sub {
  font-size: 14px;
  color: var(--t2);
}

.case-body {
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}
.case-quote {
  font-family: var(--f-serif); font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--t1);
  margin-bottom: 26px;
  position: relative;
  padding-left: 22px;
}
.case-quote::before {
  content: '';
  position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 3px;
  background: linear-gradient(180deg, var(--p-bright), var(--p), transparent);
  border-radius: 2px;
}
.case-author {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px dashed var(--line);
}
.case-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--line-p);
}
.case-avatar img { width: 100%; height: 100%; object-fit: cover; }
.case-author-name { font-size: 14.5px; font-weight: 600; color: var(--t1); margin-bottom: 2px; }
.case-author-role { font-family: var(--f-mono); font-size: 12px; color: var(--t3); }
.case-recap {
  font-size: 14.5px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 26px;
}
.case-tech {
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.case-tech-label {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t-mono); letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 4px;
}
.case-tech-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.case-tech-tags span {
  font-family: var(--f-mono); font-size: 11px;
  padding: 4px 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--t2);
  letter-spacing: 0.04em;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.case-metric {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0,0,0,0.25);
  display: flex; align-items: center; gap: 18px;
}
.case-metric-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--p-bright), var(--p));
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--p-glow);
}
.case-metric.m2 .case-metric-icon { background: linear-gradient(135deg, var(--emerald-bright), var(--emerald)); box-shadow: 0 4px 14px rgba(16,185,129,0.4); }
.case-metric.m3 .case-metric-icon { background: linear-gradient(135deg, var(--cyan-bright), var(--cyan)); box-shadow: 0 4px 14px rgba(6,182,212,0.4); }
.case-metric.m4 .case-metric-icon { background: linear-gradient(135deg, var(--orange-bright), var(--orange)); box-shadow: 0 4px 14px rgba(255,122,69,0.4); }
.case-metric-content {
  flex: 1;
  display: flex; flex-direction: column;
}
.case-metric-val {
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #fff, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.case-metric.m2 .case-metric-val { background: linear-gradient(135deg, #fff, var(--emerald-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case-metric.m3 .case-metric-val { background: linear-gradient(135deg, #fff, var(--cyan-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case-metric.m4 .case-metric-val { background: linear-gradient(135deg, #fff, var(--orange-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case-metric-lbl {
  font-size: 12.5px;
  color: var(--t2);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .case-body { grid-template-columns: 1fr; padding: 28px; gap: 32px; }
  .case-cover { aspect-ratio: 4 / 3; }
}

/* ============================================
   13. FAQ — service-specific
   ============================================ */
.faq-sec {
  background: var(--ink-1);
  position: relative;
}
.faq-sec::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 700px 400px at 50% 50%, rgba(118,73,214,0.08), transparent 60%);
}
.faq-wrap {
  display: grid; grid-template-columns: 0.6fr 1fr;
  gap: 60px; align-items: start;
}
.faq-side { position: sticky; top: 100px; }
.faq-side h2 {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 600; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 18px;
  color: var(--t1);
}
.faq-side h2 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, #D4BFFF, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.faq-side p {
  font-size: 16px; color: var(--t2);
  line-height: 1.6; margin-bottom: 28px;
}
.faq-side-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px;
  border: 1px solid var(--line-p);
  background: var(--p-soft);
  border-radius: 11px;
  color: var(--p-bright);
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.faq-side-cta:hover {
  background: var(--p); color: white; border-color: var(--p);
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: var(--line-2); background: rgba(255,255,255,0.04); }
.faq-item.open { border-color: var(--line-p); background: var(--p-faint); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; user-select: none; }
.faq-q-text { font-size: 16px; font-weight: 500; color: var(--t1); letter-spacing: -0.01em; }
.faq-q-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--t2); transition: all 0.3s;
}
.faq-item.open .faq-q-icon {
  background: var(--p); border-color: var(--p);
  color: white; transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 24px 24px; font-size: 15px; color: var(--t2); line-height: 1.6; }
.faq-a-inner em { font-family: var(--f-serif); font-style: italic; color: var(--p-bright); }
@media (max-width: 900px) {
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .faq-side { position: relative; top: 0; }
}

/* ============================================
   14. CTA + FOOTER (same as overview)
   ============================================ */
.cta-sec { background: var(--ink-2); position: relative; overflow: hidden; }
.cta-card {
  position: relative;
  border: 1px solid var(--line-p);
  border-radius: 34px;
  padding: clamp(64px, 8vw, 110px) clamp(28px, 5vw, 64px);
  background:
    radial-gradient(ellipse 800px 500px at 50% 0%, rgba(118,73,214,0.35), transparent 65%),
    radial-gradient(ellipse 600px 400px at 100% 100%, rgba(236,72,153,0.16), transparent 60%),
    radial-gradient(ellipse 600px 400px at 0% 100%, rgba(255,122,69,0.10), transparent 60%),
    linear-gradient(180deg, var(--ink-4), var(--ink-3));
  text-align: center;
  overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600; letter-spacing: -0.035em;
  line-height: 1.02; margin-bottom: 22px;
  max-width: 760px; margin-left: auto; margin-right: auto;
  color: var(--t1);
}
.cta-card h2 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  background: linear-gradient(180deg, #FFFFFF, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-card p {
  font-size: 18px; color: var(--t2);
  max-width: 580px; margin: 0 auto 40px;
  line-height: 1.55;
}
.cta-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-trust {
  margin-top: 38px;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--t-mono);
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
}
.cta-trust span { display: inline-flex; align-items: center; gap: 8px; }
.cta-trust span::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald-bright); box-shadow: 0 0 8px var(--emerald);
}
.orbit { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; pointer-events: none; opacity: 0.6; }
.orbit-ring {
  position: absolute; top: 50%; left: 50%;
  border: 1px solid var(--line-p);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 440px; height: 440px; animation: spin 30s linear infinite; }
.ring-2 { width: 640px; height: 640px; animation: spin 50s linear infinite reverse; }
.ring-3 { width: 840px; height: 840px; animation: spin 70s linear infinite; }
.ring-1::before, .ring-2::before, .ring-3::before {
  content: ''; position: absolute; top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--p-bright); box-shadow: 0 0 14px var(--p-bright);
}
.ring-2::before { background: var(--orange-bright); box-shadow: 0 0 14px var(--orange-bright); }
.ring-3::before { background: var(--cyan-bright); box-shadow: 0 0 14px var(--cyan-bright); }

/* FOOTER */
footer { position: relative; z-index: 2; background: var(--ink-1); border-top: 1px solid var(--line); }
.foot-news {
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  position: relative; overflow: hidden;
}
.foot-news::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 600px 200px at 50% 100%, rgba(118,73,214,0.12), transparent 60%); }
.foot-news-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; z-index: 1; }
.foot-news h3 { font-size: clamp(24px, 2.8vw, 32px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 8px; color: var(--t1); }
.foot-news h3 em { font-family: var(--f-serif); font-style: italic; font-weight: 400; background: linear-gradient(135deg, #D4BFFF, var(--p-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.foot-news p { font-size: 14px; color: var(--t2); }
.foot-news-form { display: flex; gap: 8px; background: var(--ink-3); border: 1px solid var(--line-2); border-radius: 14px; padding: 6px; min-width: 380px; }
.foot-news-form input { flex: 1; min-width: 0; background: none; border: none; padding: 12px 14px; color: var(--t1); font-family: inherit; font-size: 14px; outline: none; }
.foot-news-form input::placeholder { color: var(--t3); }
.foot-news-form button { height: 44px; padding: 0 22px; border-radius: 10px; background: linear-gradient(135deg, var(--p-bright), var(--p)); color: white; font-weight: 500; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 14px rgba(118,73,214,0.4); }
.foot-news-form button:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(118,73,214,0.55); }
@media (max-width: 800px) { .foot-news-inner { grid-template-columns: 1fr; gap: 24px; } .foot-news-form { min-width: auto; width: 100%; } }
.foot-main { padding: 72px 0; display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; }
.foot-brand { max-width: 320px; }
.foot-brand .logo { margin-bottom: 18px; }
.foot-brand p { font-size: 14px; color: var(--t2); line-height: 1.6; margin-bottom: 24px; }
.foot-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.foot-contact a { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--t2); font-family: var(--f-mono); transition: color 0.2s; }
.foot-contact a:hover { color: var(--p-bright); }
.foot-contact .ico { width: 28px; height: 28px; border-radius: 7px; background: var(--ink-3); border: 1px solid var(--line); display: grid; place-items: center; color: var(--p-bright); flex-shrink: 0; }
.foot-status { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--emerald-soft); border: 1px solid rgba(16,185,129,0.3); border-radius: 8px; font-family: var(--f-mono); font-size: 11px; color: var(--emerald-bright); font-weight: 500; }
.foot-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald); animation: pulse 2s infinite; }
.foot-col h4 { font-family: var(--f-mono); font-size: 11px; color: var(--t-mono); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 22px; font-weight: 600; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.foot-col a { font-size: 14px; color: var(--t2); transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.foot-col a:hover { color: var(--p-bright); }
.foot-col a .new { font-family: var(--f-mono); font-size: 9px; padding: 2px 6px; background: var(--p-soft); border: 1px solid var(--line-p); border-radius: 4px; color: var(--p-bright); letter-spacing: 0.06em; }
@media (max-width: 1000px) { .foot-main { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 540px) { .foot-main { grid-template-columns: 1fr; } }
.foot-bottom { border-top: 1px solid var(--line); padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--t-mono); font-family: var(--f-mono); }
.foot-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-bottom-links a:hover { color: var(--p-bright); }
.foot-socials { display: flex; gap: 8px; }
.foot-social { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--t2); transition: all 0.25s; }
.foot-social:hover { border-color: var(--p); color: var(--p-bright); background: var(--p-soft); transform: translateY(-2px); }
.foot-mega { position: relative; height: clamp(120px, 18vw, 220px); overflow: hidden; border-top: 1px solid var(--line); display: grid; place-items: center; }
.foot-mega-text { font-family: var(--f-sans); font-weight: 700; font-size: clamp(80px, 18vw, 240px); letter-spacing: -0.06em; line-height: 0.9; background: linear-gradient(180deg, rgba(180,158,255,0.18), rgba(180,158,255,0.02)); -webkit-background-clip: text; background-clip: text; color: transparent; user-select: none; white-space: nowrap; }

/* ============================================================
   V2 ADDITIONS — VISUAL REST STOPS & IMAGE INTEGRATIONS
   ============================================================ */

/* ============================================
   PHOTO BAND — full-bleed transition section
   Used between heavy text sections as visual breathing room
   ============================================ */
.photo-band {
  position: relative;
  height: clamp(280px, 38vw, 460px);
  overflow: hidden;
  z-index: 2;
}
.photo-band img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85) brightness(0.55);
}
.photo-band::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--ink-2) 0%, transparent 18%, transparent 82%, var(--ink-2) 100%),
    linear-gradient(135deg, rgba(118,73,214,0.45) 0%, transparent 50%, rgba(6,182,212,0.30) 100%);
}
.photo-band-content {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  text-align: center;
  padding: 0 var(--pad);
}
.photo-band-content > * { max-width: 760px; }
.photo-band-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--t1);
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.photo-band-quote em {
  font-style: normal;
  font-family: var(--f-sans);
  font-weight: 600;
  background: linear-gradient(135deg, #fff, var(--p-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.photo-band-attr {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t2);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.photo-band-attr::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--p-bright);
  box-shadow: 0 0 6px var(--p-bright);
}

/* ============================================
   PROBLEM-FEATURE with REAL photo
   Replaces the quote block in the feature problem card
   ============================================ */
.problem-card.feature .problem-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-2);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.6);
}
.problem-card.feature .problem-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}
.problem-card.feature .problem-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(6,6,10,0.92)),
    linear-gradient(135deg, rgba(244,63,94,0.25), transparent 55%);
}
.problem-photo-quote {
  position: absolute;
  bottom: 20px; left: 22px; right: 22px;
  z-index: 2;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--t1);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.problem-photo-attr {
  position: absolute;
  bottom: 0; left: 22px; right: 22px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--rose-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: none;
}
.problem-photo-tag {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(6,6,10,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--rose-bright);
  letter-spacing: 0.06em;
}
.problem-photo-tag::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 6px var(--rose);
  animation: pulse 1.8s infinite;
}

/* ============================================
   CAPABILITY FEATURE — full-bleed intro card above 6-grid
   ============================================ */
.cap-feature {
  margin-bottom: 24px;
  border: 1px solid var(--line-p);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 360px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.55);
}
.cap-feature-text {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cap-feature-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--p-bright);
  padding: 5px 12px;
  background: var(--p-soft);
  border: 1px solid var(--line-p);
  border-radius: 999px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.cap-feature h3 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--t1);
}
.cap-feature h3 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #D4BFFF, var(--p-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cap-feature p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 22px;
}
.cap-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cap-feature-tags span {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 5px 11px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  color: var(--t2);
  letter-spacing: 0.04em;
}
.cap-feature-visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.cap-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
}
.cap-feature-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink-3) 0%, transparent 20%, transparent 100%),
              linear-gradient(135deg, rgba(118,73,214,0.20), transparent 60%);
}
.cap-feature-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(6,6,10,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--t1);
  letter-spacing: 0.04em;
}
.cap-feature-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}
@media (max-width: 900px) {
  .cap-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cap-feature-text { padding: 32px; }
  .cap-feature-visual { min-height: 240px; aspect-ratio: 4/3; }
  .cap-feature-visual::after {
    background: linear-gradient(180deg, transparent 30%, var(--ink-3) 100%),
                linear-gradient(135deg, rgba(118,73,214,0.20), transparent 60%);
  }
}

/* ============================================
   FEATURE INVENTORY — add split-layout image side
   ============================================ */
.features-inv-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}
.features-inv-side {
  position: sticky;
  top: 100px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
}
.features-inv-side-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.features-inv-side-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
}
.features-inv-side-img::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(6,6,10,0.92) 100%),
    linear-gradient(135deg, rgba(118,73,214,0.30), transparent 55%);
}
.features-inv-side-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px 28px 26px;
}
.features-inv-side-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(6,6,10,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--p-bright);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.features-inv-side-tag::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--p-bright);
  box-shadow: 0 0 8px var(--p-bright);
}
.features-inv-side h3 {
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--t1);
}
.features-inv-side h3 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #D4BFFF, var(--p-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.features-inv-side p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.55;
  margin-bottom: 16px;
}
.features-inv-side-stats {
  display: flex;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.15);
}
.features-inv-side-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.features-inv-side-stat-val {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #fff, var(--p-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.features-inv-side-stat-lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 0.06em;
}
.features-inv-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.features-inv-main .feat-cat {
  padding: 22px 24px;
}
.features-inv-main .feat-cat-head {
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.features-inv-main .feat-cat-icon {
  width: 34px;
  height: 34px;
}
.features-inv-main .feat-cat-title {
  font-size: 15px;
}
.features-inv-main .feat-list li {
  padding: 8px 0;
  font-size: 12.5px;
}
@media (max-width: 1000px) {
  .features-inv-wrap {
    grid-template-columns: 1fr;
  }
  .features-inv-side {
    position: relative;
    top: 0;
  }
  .features-inv-side-img {
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 700px) {
  .features-inv-main {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PROCESS STEPS — add small thumb image to each card
   ============================================ */
.step3 { padding-top: 0; overflow: hidden; }
.step3-thumb {
  position: relative;
  margin: 0 -26px 22px;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.step3-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85) brightness(0.85);
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.step3:hover .step3-thumb img { transform: scale(1.04); }
.step3-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, var(--ink-3) 100%),
    linear-gradient(135deg, rgba(118,73,214,0.40), transparent 55%);
}
.step3-thumb-overlay {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(6,6,10,0.78);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--p-bright);
  letter-spacing: 0.06em;
  font-weight: 600;
}
.step3-thumb-overlay::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--p-bright);
  box-shadow: 0 0 6px var(--p-bright);
}
/* When step3 has a thumb, move the num to overlay on the thumb */
.step3:has(.step3-thumb) .step3-num {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  margin-bottom: 0;
  width: 50px;
  height: 50px;
  font-size: 22px;
  box-shadow: 0 8px 24px var(--p-glow), 0 0 0 4px rgba(6,6,10,0.7);
}
.step3:has(.step3-thumb) .step3-time,
.step3:has(.step3-thumb) > h3,
.step3:has(.step3-thumb) > p,
.step3:has(.step3-thumb) > .step3-deliverables {
  margin-left: 26px;
  margin-right: 26px;
}
.step3:has(.step3-thumb) > .step3-time {
  margin-top: 0;
}
.step3:has(.step3-thumb) > .step3-deliverables {
  margin-bottom: 32px;
}

/* ============================================
   POST-DELIVERY CARD — add hero image at top
   ============================================ */
.pd-card.has-image {
  padding: 0;
  overflow: hidden;
}
.pd-card-image {
  position: relative;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}
.pd-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
}
.pd-card.has-image:hover .pd-card-image img {
  transform: scale(1.05);
}
.pd-card-image::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, var(--ink-3) 100%),
    linear-gradient(135deg, rgba(118,73,214,0.35), transparent 55%);
}
.pd-card-image-tag {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(6,6,10,0.78);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--t1);
  letter-spacing: 0.06em;
}
.pd-card-image-tag::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--p-bright);
  box-shadow: 0 0 8px var(--p-bright);
}
.pd-card.has-image .pd-badge {
  top: 20px; right: 20px;
  z-index: 3;
}
.pd-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ============================================
   DRIFT — restructure with photo-strip below cards
   Already has drift-reset. Add an illustrated "transition" between
   stages and the reset block.
   ============================================ */
.drift-bridge {
  margin: 56px 0 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 21 / 7;
  border: 1px solid var(--line-2);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.55);
}
.drift-bridge img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.8) brightness(0.65);
}
.drift-bridge::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(244,63,94,0.30) 0%, transparent 35%, transparent 65%, rgba(118,73,214,0.40) 100%),
    linear-gradient(180deg, transparent 30%, rgba(6,6,10,0.55) 100%);
}
.drift-bridge-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.drift-bridge-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--t1);
  max-width: 640px;
}
.drift-bridge-quote em {
  font-style: normal;
  font-family: var(--f-sans);
  font-weight: 600;
  color: var(--p-bright);
}
.drift-bridge-attr {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--t-mono);
}
.drift-bridge-attr strong {
  color: var(--t1);
  font-weight: 600;
}
@media (max-width: 700px) {
  .drift-bridge {
    aspect-ratio: 4 / 3;
  }
}

/* ============================================================
   COST OPTIMIZATION PAGE — UNIQUE SECTIONS
   These archetypes don't exist on other service pages.
   ============================================================ */

/* ============================================
   CO-HERO — Stylized invoice mockup as visual
   ============================================ */
.co-invoice {
  position: relative;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  animation: fadeUp 1s 0.4s both;
}
.co-invoice::before {
  content: ''; position: absolute; top: -1px; left: 30px; right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald-bright), transparent);
  box-shadow: 0 0 16px var(--emerald-bright);
}
.co-inv-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 18px;
}
.co-inv-title {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t-mono); letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.co-inv-title::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse 2s infinite;
}
.co-inv-meta {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t3); letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Invoice line items */
.co-inv-list {
  display: flex; flex-direction: column;
  gap: 3px;
}
.co-inv-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 13px;
  color: var(--t2);
  transition: all 0.3s;
  position: relative;
}
.co-inv-row.cut {
  background: rgba(255,122,69,0.03);
  border: 1px solid rgba(255,122,69,0.10);
}
.co-inv-row.cut .co-inv-label {
  text-decoration: line-through;
  text-decoration-color: var(--rose-bright);
  text-decoration-thickness: 1.5px;
  opacity: 0.5;
}
.co-inv-row.cut .co-inv-amount {
  color: var(--rose-bright);
  text-decoration: line-through;
  text-decoration-color: var(--rose-bright);
  opacity: 0.7;
}
.co-inv-row.kept {
  background: rgba(16,185,129,0.04);
  border: 1px solid rgba(16,185,129,0.15);
}
.co-inv-row.kept .co-inv-amount { color: var(--emerald-bright); font-weight: 600; }
.co-inv-tag {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: grid; place-items: center;
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  flex-shrink: 0;
}
.co-inv-row.cut .co-inv-tag {
  background: var(--rose-soft);
  color: var(--rose-bright);
  border: 1px solid rgba(244,63,94,0.3);
}
.co-inv-row.kept .co-inv-tag {
  background: var(--emerald-soft);
  color: var(--emerald-bright);
  border: 1px solid rgba(16,185,129,0.3);
}
.co-inv-label {
  font-weight: 500; color: var(--t1);
  letter-spacing: -0.005em;
}
.co-inv-sub {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t3); letter-spacing: 0.04em;
  margin-top: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.co-inv-amount {
  font-family: var(--f-mono);
  font-size: 13.5px; font-weight: 600;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.co-inv-foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.co-inv-stat { padding: 14px 16px; border-radius: 11px; }
.co-inv-stat.before {
  background: var(--rose-soft);
  border: 1px solid rgba(244,63,94,0.25);
}
.co-inv-stat.after {
  background: var(--emerald-soft);
  border: 1px solid rgba(16,185,129,0.25);
}
.co-inv-stat-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.co-inv-stat.before .co-inv-stat-label { color: var(--rose-bright); }
.co-inv-stat.after .co-inv-stat-label { color: var(--emerald-bright); }
.co-inv-stat-val {
  font-family: var(--f-mono);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.co-inv-stat.before .co-inv-stat-val { color: var(--t1); opacity: 0.6; text-decoration: line-through; text-decoration-color: var(--rose-bright); }
.co-inv-stat.after .co-inv-stat-val { color: var(--emerald-bright); }

/* Hero proof-stat strip (under hero CTAs) */
.co-hero-proof {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px dashed var(--line);
  animation: fadeUp 0.8s 0.55s both;
}
.co-hero-proof-cell {
  display: flex; flex-direction: column;
  gap: 4px;
}
.co-hero-proof-val {
  font-size: 38px; font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--emerald-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.co-hero-proof-cell:nth-child(2) .co-hero-proof-val {
  background: linear-gradient(135deg, #fff, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.co-hero-proof-cell:nth-child(3) .co-hero-proof-val {
  background: linear-gradient(135deg, #fff, var(--cyan-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.co-hero-proof-lbl {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t3); letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 160px; line-height: 1.4;
}

/* ============================================
   WASTE MAP — where the money leaks (NEW layout)
   ============================================ */
.waste-map-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}
.waste-tile {
  position: relative;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  transition: all 0.3s;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.waste-tile:hover {
  border-color: rgba(255,122,69,0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(255,122,69,0.25);
}
.waste-tile::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-bright), var(--orange-bright));
  opacity: 0.5;
  transition: opacity 0.3s;
}
.waste-tile:hover::before { opacity: 1; }
.waste-tile-money {
  font-family: var(--f-mono);
  font-size: 18px; font-weight: 700;
  color: var(--rose-bright);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 4px;
}
.waste-tile-money span {
  opacity: 0.35;
  color: var(--t3);
}
.waste-tile-money span.lit { opacity: 1; color: var(--rose-bright); }
.waste-tile h4 {
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.25;
  color: var(--t1);
}
.waste-tile p {
  font-size: 12.5px; color: var(--t2);
  line-height: 1.5;
  flex: 1;
}
.waste-tile-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--f-mono); font-size: 10px;
  color: var(--orange-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.waste-tile-foot::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange-bright);
  box-shadow: 0 0 5px var(--orange-bright);
}
@media (max-width: 1100px) { .waste-map-wrap { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .waste-map-wrap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .waste-map-wrap { grid-template-columns: 1fr; } }

/* ============================================
   3-COLUMN COMPARISON (DIY vs FinOps tools vs us)
   Different from Cloud Infra's table — uses 3 stacked cards
   ============================================ */
.compare3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.compare3-card {
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  position: relative;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.compare3-card.winner {
  border-color: var(--line-p);
  background:
    radial-gradient(ellipse 400px 200px at 50% 0%, rgba(118,73,214,0.16), transparent 60%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  box-shadow: 0 20px 50px -15px rgba(118,73,214,0.30);
}
.compare3-card.winner::before {
  content: '';
  position: absolute; top: -1px; left: 30px; right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p-bright), transparent);
  box-shadow: 0 0 10px var(--p-bright);
}
.compare3-card.winner::after {
  content: 'Our approach';
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--p-bright);
  background: var(--p-soft);
  border: 1px solid var(--line-p);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
}
.compare3-head {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.compare3-label {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.compare3-card:nth-child(1) .compare3-label { color: var(--rose-bright); }
.compare3-card:nth-child(2) .compare3-label { color: var(--orange-bright); }
.compare3-card.winner .compare3-label { color: var(--p-bright); }
.compare3-card h3 {
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
  color: var(--t1);
}
.compare3-card h3 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, #D4BFFF, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.compare3-card:not(.winner) h3 em {
  background: none;
  -webkit-text-fill-color: var(--t2);
  color: var(--t2);
}
.compare3-meta {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t3); letter-spacing: 0.04em;
}
.compare3-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 11px;
  flex: 1;
}
.compare3-list li {
  display: flex; align-items: flex-start;
  gap: 10px;
  font-size: 13.5px; color: var(--t2);
  line-height: 1.5;
}
.compare3-list li svg {
  width: 14px; height: 14px;
  flex-shrink: 0; margin-top: 3px;
}
.compare3-list li.no svg { color: var(--rose-bright); opacity: 0.7; }
.compare3-list li.partial svg { color: var(--orange-bright); }
.compare3-list li.yes svg { color: var(--p-bright); }
.compare3-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.compare3-cost {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--t-mono);
  letter-spacing: 0.04em;
}
.compare3-cost strong {
  color: var(--t1);
  font-weight: 600;
}
.compare3-card.winner .compare3-cost strong {
  color: var(--p-bright);
}
@media (max-width: 900px) { .compare3 { grid-template-columns: 1fr; } }

/* ============================================
   SAVINGS STACK — chart-like display of categories
   ============================================ */
.savings-stack {
  display: flex; flex-direction: column;
  gap: 10px;
}
.savings-row {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
}
.savings-row:hover {
  border-color: var(--line-p);
  background: rgba(118,73,214,0.04);
  transform: translateX(4px);
}
.savings-label {
  display: flex; align-items: center; gap: 12px;
}
.savings-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--emerald-soft);
  border: 1px solid rgba(16,185,129,0.25);
  display: grid; place-items: center;
  color: var(--emerald-bright);
  flex-shrink: 0;
}
.savings-name {
  font-size: 14.5px; font-weight: 600;
  color: var(--t1);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 2px;
}
.savings-sub {
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--t3);
  letter-spacing: 0.04em;
}
.savings-bar-wrap {
  position: relative;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  overflow: hidden;
}
.savings-bar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-bright));
  border-radius: 7px;
  display: flex; align-items: center;
  padding: 0 14px;
  box-shadow: 0 0 18px rgba(16,185,129,0.4);
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.savings-bar-text {
  font-family: var(--f-mono); font-size: 11px;
  font-weight: 700;
  color: var(--ink-1);
  letter-spacing: 0.04em;
}
.savings-pct {
  font-family: var(--f-mono);
  font-size: 17px; font-weight: 700;
  color: var(--emerald-bright);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  min-width: 80px; text-align: right;
}
@media (max-width: 700px) {
  .savings-row { grid-template-columns: 1fr; gap: 10px; }
  .savings-pct { text-align: left; }
}

/* ============================================
   COST CHARTS — 3 mock chart cards
   ============================================ */
.cost-charts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.cost-chart {
  padding: 22px 22px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  position: relative;
  overflow: hidden;
}
.cost-chart-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 16px;
}
.cost-chart-title {
  font-size: 13px; font-weight: 600;
  color: var(--t1);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  line-height: 1.2;
}
.cost-chart-sub {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t3);
  letter-spacing: 0.04em;
}
.cost-chart-badge {
  font-family: var(--f-mono); font-size: 9.5px;
  padding: 3px 8px;
  background: var(--emerald-soft);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 999px;
  color: var(--emerald-bright);
  letter-spacing: 0.04em;
  font-weight: 600;
  white-space: nowrap;
}
.cost-chart-vis {
  position: relative;
  height: 120px;
  margin-bottom: 12px;
}
.cost-chart-foot {
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t-mono);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.cost-chart-foot strong { color: var(--t1); font-weight: 600; }
@media (max-width: 900px) { .cost-charts { grid-template-columns: 1fr; } }

/* ============================================
   FINDINGS TABLE — what changed in the case study
   ============================================ */
.findings {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.findings-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}
.findings-row:hover { background: rgba(255,255,255,0.025); }
.findings-row:last-child { border-bottom: none; }
.findings-row.head {
  background: rgba(255,255,255,0.03);
}
.findings-row.head .findings-cell {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600;
  padding: 14px 20px;
}
.findings-cell {
  padding: 18px 20px;
  display: flex; align-items: center;
}
.findings-cell:first-child {
  border-right: 1px solid var(--line);
  justify-content: center;
}
.findings-sev {
  font-family: var(--f-mono); font-size: 10px;
  padding: 5px 12px;
  border-radius: 5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
}
.findings-sev::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
}
.findings-sev.crit {
  background: var(--rose-soft);
  border: 1px solid rgba(244,63,94,0.3);
  color: var(--rose-bright);
}
.findings-sev.crit::before { background: var(--rose-bright); box-shadow: 0 0 5px var(--rose-bright); }
.findings-sev.high {
  background: var(--orange-soft);
  border: 1px solid rgba(255,122,69,0.3);
  color: var(--orange-bright);
}
.findings-sev.high::before { background: var(--orange-bright); box-shadow: 0 0 5px var(--orange-bright); }
.findings-sev.med {
  background: var(--p-soft);
  border: 1px solid var(--line-p);
  color: var(--p-bright);
}
.findings-sev.med::before { background: var(--p-bright); box-shadow: 0 0 5px var(--p-bright); }
.findings-content { flex-direction: column; align-items: flex-start; gap: 4px; }
.findings-title {
  font-size: 14.5px; font-weight: 600;
  color: var(--t1);
  letter-spacing: -0.01em;
}
.findings-desc {
  font-size: 13px; color: var(--t2);
  line-height: 1.45;
}
.findings-savings {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--emerald-bright);
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-top: 4px;
}
@media (max-width: 700px) {
  .findings-row { grid-template-columns: 80px 1fr; }
  .findings-cell { padding: 14px 14px; }
  .findings-row.head .findings-cell { padding: 11px 14px; font-size: 10px; }
  .findings-sev { font-size: 9px; padding: 4px 8px; }
}

/* ============================================
   PRICING TABLE — explicit pricing for 3 models
   ============================================ */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pricing-card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.pricing-card:hover {
  border-color: var(--line-p);
  transform: translateY(-3px);
}
.pricing-card.popular {
  border-color: var(--line-p);
  background:
    radial-gradient(ellipse 400px 200px at 50% 0%, rgba(118,73,214,0.18), transparent 60%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  box-shadow: 0 24px 60px -20px rgba(118,73,214,0.4);
}
.pricing-card.popular::before {
  content: '';
  position: absolute; top: -1px; left: 30px; right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p-bright), transparent);
  box-shadow: 0 0 10px var(--p-bright);
}
.pricing-card.popular::after {
  content: 'Most picked';
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--p-bright);
  background: var(--p-soft);
  border: 1px solid var(--line-p);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
}
.pricing-tag {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--p-bright);
}
.pricing-card:nth-child(1) .pricing-tag { color: var(--emerald-bright); }
.pricing-card:nth-child(3) .pricing-tag { color: var(--cyan-bright); }
.pricing-card h3 {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--t1);
}
.pricing-card h3 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  color: var(--p-bright);
}
.pricing-amount {
  display: flex; align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.pricing-amount-big {
  font-size: 42px; font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.pricing-amount-unit {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--t3);
  letter-spacing: 0.04em;
}
.pricing-amount-sub {
  font-size: 13px; color: var(--t2);
  margin-bottom: 18px;
  font-style: italic;
}
.pricing-desc {
  font-size: 14px; color: var(--t2);
  line-height: 1.6;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line);
}
.pricing-feats {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 11px;
  flex: 1;
  margin-bottom: 26px;
}
.pricing-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--t2);
  line-height: 1.45;
}
.pricing-feats li svg {
  width: 14px; height: 14px;
  color: var(--p-bright);
  flex-shrink: 0; margin-top: 3px;
}
.pricing-feats li.bold { color: var(--t1); font-weight: 500; }
.pricing-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; width: 100%;
  padding: 13px 16px;
  border-radius: 11px;
  font-size: 14px; font-weight: 500;
  transition: all 0.25s;
}
.pricing-card .pricing-cta {
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.03);
  color: var(--t1);
}
.pricing-card .pricing-cta:hover {
  border-color: var(--line-p);
  background: var(--p-soft);
  color: var(--p-bright);
}
.pricing-card.popular .pricing-cta {
  background: linear-gradient(135deg, var(--p-bright), var(--p));
  color: white;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px var(--p-glow);
}
.pricing-card.popular .pricing-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px var(--p-glow);
}
@media (max-width: 900px) { .pricing-table { grid-template-columns: 1fr; } }

/* ============================================================
   RELIABILITY ENGINEERING — UNIQUE SECTIONS
   ============================================================ */

/* ============================================
   HERO SLO DASHBOARD WIDGET (right-side visual)
   Mock Grafana-style status panel
   ============================================ */
.rel-slo-widget {
  position: relative;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  animation: fadeUp 1s 0.4s both;
}
.rel-slo-widget::before {
  content: ''; position: absolute; top: -1px; left: 30px; right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald-bright), transparent);
  box-shadow: 0 0 16px var(--emerald-bright);
}
.rel-slo-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.rel-slo-title {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t-mono); letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.rel-slo-title::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 10px var(--emerald);
  animation: pulse 2s infinite;
}
.rel-slo-meta {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t3); letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* SLO compliance rows */
.rel-slo-rows {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.rel-slo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 11px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.rel-slo-row:hover { background: rgba(255,255,255,0.04); border-color: var(--line-2); }
.rel-slo-row-label {
  display: flex; flex-direction: column;
  gap: 3px;
}
.rel-slo-row-name {
  font-size: 13px; font-weight: 600;
  color: var(--t1);
  letter-spacing: -0.005em;
}
.rel-slo-row-target {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t3);
  letter-spacing: 0.04em;
}
.rel-slo-row-value {
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.rel-slo-row-num {
  font-family: var(--f-mono); font-size: 16px; font-weight: 700;
  color: var(--emerald-bright);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.rel-slo-row-num.warn { color: var(--orange-bright); }
.rel-slo-row-num.crit { color: var(--rose-bright); }
.rel-slo-row-bar {
  width: 80px; height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.rel-slo-row-bar-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-bright));
  box-shadow: 0 0 6px rgba(16,185,129,0.5);
}
.rel-slo-row-bar-fill.warn {
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  box-shadow: 0 0 6px rgba(255,122,69,0.5);
}
.rel-slo-row-bar-fill.crit {
  background: linear-gradient(90deg, var(--rose), var(--rose-bright));
  box-shadow: 0 0 6px rgba(244,63,94,0.5);
}

/* SLO widget footer stats */
.rel-slo-foot {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.rel-slo-foot-stat {
  padding: 10px 12px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.rel-slo-foot-stat-val {
  font-family: var(--f-mono);
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #fff, var(--emerald-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 2px;
  line-height: 1;
}
.rel-slo-foot-stat-lbl {
  font-family: var(--f-mono); font-size: 9.5px;
  color: var(--t3); letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================
   RELIABILITY LADDER — 4 maturity levels
   Shows where teams are vs where this engagement goes
   ============================================ */
.ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
.ladder-rung {
  position: relative;
  padding: 28px 24px 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  display: flex; flex-direction: column;
  transition: all 0.3s;
  overflow: hidden;
}
.ladder-rung:hover { border-color: var(--line-2); transform: translateY(-3px); }
.ladder-rung::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
}
.ladder-rung.l1::before { background: linear-gradient(90deg, var(--rose-bright), var(--rose)); }
.ladder-rung.l2::before { background: linear-gradient(90deg, var(--orange-bright), var(--orange)); }
.ladder-rung.l3::before { background: linear-gradient(90deg, var(--cyan-bright), var(--cyan)); }
.ladder-rung.l4::before { background: linear-gradient(90deg, var(--emerald-bright), var(--emerald)); }
.ladder-rung.target {
  border-color: var(--line-p);
  background:
    radial-gradient(ellipse 400px 220px at 50% 0%, rgba(118,73,214,0.18), transparent 60%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  box-shadow: 0 20px 50px -20px rgba(118,73,214,0.4);
}
.ladder-rung.target::after {
  content: 'Where you land';
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--p-bright);
  background: var(--p-soft);
  border: 1px solid var(--line-p);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
}
.ladder-level {
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.ladder-rung.l1 .ladder-level { color: var(--rose-bright); }
.ladder-rung.l2 .ladder-level { color: var(--orange-bright); }
.ladder-rung.l3 .ladder-level { color: var(--cyan-bright); }
.ladder-rung.l4 .ladder-level { color: var(--emerald-bright); }
.ladder-rung h3 {
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--t1);
}
.ladder-rung h3 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
}
.ladder-rung.target h3 em {
  background: linear-gradient(135deg, #D4BFFF, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ladder-rung p {
  font-size: 13px; color: var(--t2);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.ladder-traits {
  display: flex; flex-direction: column;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.ladder-trait {
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--t-mono);
  display: flex; align-items: center; gap: 7px;
  letter-spacing: 0.02em;
}
.ladder-trait::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ladder-rung.l1 .ladder-trait::before { background: var(--rose-bright); box-shadow: 0 0 5px var(--rose); }
.ladder-rung.l2 .ladder-trait::before { background: var(--orange-bright); box-shadow: 0 0 5px var(--orange); }
.ladder-rung.l3 .ladder-trait::before { background: var(--cyan-bright); box-shadow: 0 0 5px var(--cyan); }
.ladder-rung.l4 .ladder-trait::before { background: var(--emerald-bright); box-shadow: 0 0 5px var(--emerald); }
@media (max-width: 1000px) {
  .ladder { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ladder { grid-template-columns: 1fr; }
}

/* ============================================
   FULL-BLEED SLO DASHBOARD — money shot section
   Mock Grafana board with multiple panels
   ============================================ */
.dashboard-mockup {
  position: relative;
  border: 1px solid var(--line-p);
  border-radius: 26px;
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(118,73,214,0.10), transparent 60%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  padding: 28px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.55);
  overflow: hidden;
}
.dashboard-mockup::before {
  content: ''; position: absolute; top: -1px; left: 30px; right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p-bright), transparent);
  box-shadow: 0 0 12px var(--p-bright);
}
.dash-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px; margin-bottom: 22px;
  border-bottom: 1px dashed var(--line);
  flex-wrap: wrap; gap: 14px;
}
.dash-tabs {
  display: flex; gap: 6px;
  flex-wrap: wrap;
}
.dash-tab {
  font-family: var(--f-mono); font-size: 11px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--t2);
  letter-spacing: 0.04em;
}
.dash-tab.active {
  background: var(--p-soft);
  border-color: var(--line-p);
  color: var(--p-bright);
  font-weight: 600;
}
.dash-window {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--emerald-bright);
  letter-spacing: 0.04em;
  padding: 5px 11px;
  background: var(--emerald-soft);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 7px;
}
.dash-window::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse 2s infinite;
}
.dash-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.dash-panel {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.dash-panel:hover { border-color: var(--line-2); background: rgba(0,0,0,0.4); }
.dash-panel-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 12px;
  gap: 10px;
}
.dash-panel-title {
  font-size: 12px; font-weight: 600;
  color: var(--t1); letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.dash-panel-sub {
  font-family: var(--f-mono); font-size: 9.5px;
  color: var(--t3); letter-spacing: 0.04em;
}
.dash-panel-badge {
  font-family: var(--f-mono); font-size: 9px;
  padding: 2px 7px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  font-weight: 600;
  white-space: nowrap;
}
.dash-panel-badge.ok {
  background: var(--emerald-soft);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--emerald-bright);
}
.dash-panel-badge.warn {
  background: var(--orange-soft);
  border: 1px solid rgba(255,122,69,0.3);
  color: var(--orange-bright);
}
.dash-panel.span2 { grid-column: span 2; }
.dash-panel-big-val {
  font-family: var(--f-mono);
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #fff, var(--emerald-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 4px;
  line-height: 1;
}
.dash-panel.span2 .dash-panel-big-val {
  font-size: 36px;
}
.dash-panel-delta {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--emerald-bright);
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 4px;
  margin-bottom: 12px;
}
.dash-panel-vis {
  position: relative;
  flex: 1;
  min-height: 60px;
}
.dash-burn-bar {
  position: relative;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  margin: 14px 0 8px;
  overflow: hidden;
}
.dash-burn-bar-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-bright));
  box-shadow: 0 0 6px rgba(16,185,129,0.5);
}
.dash-burn-marks {
  position: relative;
  height: 14px;
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 9px;
  color: var(--t3); letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .dash-grid { grid-template-columns: 1fr 1fr; }
  .dash-panel.span2 { grid-column: span 2; }
}
@media (max-width: 600px) {
  .dash-grid { grid-template-columns: 1fr; }
  .dash-panel.span2 { grid-column: span 1; }
}

/* ============================================
   ON-CALL ROTATION GRID — used in problems section
   ============================================ */
.oncall-grid {
  position: relative;
  border-radius: 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line);
  padding: 18px;
  margin-top: 4px;
}
.oncall-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--t-mono);
  letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
}
.oncall-head span:last-child {
  color: var(--rose-bright);
  display: inline-flex; align-items: center; gap: 6px;
}
.oncall-head span:last-child::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 6px var(--rose);
  animation: pulse 1.4s infinite;
}
.oncall-week {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.oncall-day {
  aspect-ratio: 1 / 1.3;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 6px 4px;
  position: relative;
}
.oncall-day-label {
  font-family: var(--f-mono); font-size: 8px;
  color: var(--t3); letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.oncall-day-count {
  font-family: var(--f-mono); font-size: 13px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--t1);
}
.oncall-day.heat-1 { background: rgba(255,122,69,0.10); border-color: rgba(255,122,69,0.20); }
.oncall-day.heat-2 { background: rgba(255,122,69,0.18); border-color: rgba(255,122,69,0.35); }
.oncall-day.heat-3 { background: rgba(244,63,94,0.22); border-color: rgba(244,63,94,0.45); }
.oncall-day.heat-1 .oncall-day-count { color: var(--orange-bright); }
.oncall-day.heat-2 .oncall-day-count { color: var(--orange-bright); }
.oncall-day.heat-3 .oncall-day-count { color: var(--rose-bright); }
.oncall-foot {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t-mono);
  letter-spacing: 0.04em;
}
.oncall-foot strong { color: var(--rose-bright); font-weight: 700; }

/* ============================================
   INCIDENT TIMELINE — for case study
   Visualizes incidents over weeks before/after
   ============================================ */
.incident-timeline {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,0.25);
  margin-bottom: 20px;
}
.incident-timeline-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
  gap: 14px;
  flex-wrap: wrap;
}
.incident-timeline-title {
  font-size: 14px; font-weight: 600;
  color: var(--t1);
  letter-spacing: -0.01em;
}
.incident-timeline-sub {
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--t3); letter-spacing: 0.04em;
  margin-top: 2px;
}
.incident-timeline-legend {
  display: flex; gap: 16px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t-mono);
  letter-spacing: 0.04em;
}
.incident-timeline-legend span {
  display: inline-flex; align-items: center; gap: 6px;
}
.incident-timeline-legend span::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 2px;
}
.incident-timeline-legend span.crit::before { background: var(--rose); box-shadow: 0 0 4px var(--rose); }
.incident-timeline-legend span.warn::before { background: var(--orange); box-shadow: 0 0 4px var(--orange); }
.incident-timeline-legend span.ok::before { background: var(--emerald); box-shadow: 0 0 4px var(--emerald); }
.incident-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}
.incident-week {
  display: flex; flex-direction: column;
  gap: 3px;
  padding: 6px 2px;
  position: relative;
}
.incident-week-label {
  font-family: var(--f-mono); font-size: 8.5px;
  color: var(--t3);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.incident-week.engagement {
  background: var(--p-soft);
  border-left: 2px solid var(--p-bright);
  border-radius: 4px;
}
.incident-week.engagement .incident-week-label {
  color: var(--p-bright);
  font-weight: 700;
}
.incident-dot {
  height: 12px;
  border-radius: 3px;
  background: rgba(255,255,255,0.03);
}
.incident-dot.crit { background: var(--rose); box-shadow: 0 0 6px var(--rose); }
.incident-dot.warn { background: var(--orange); box-shadow: 0 0 5px var(--orange); }
.incident-dot.minor { background: var(--cyan); opacity: 0.7; }
.incident-dot.ok { background: rgba(16,185,129,0.18); }

