/* ═══════════════════════════════════════════════════════
   SPRINGLAB AI — style.css
   Production stylesheet for springlab.ai
   Version: 2.0 | Based on live site content
═══════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────── */
:root {
  --navy-deep:    #141F27;
  --navy:         #1C2B35;
  --navy-mid:     #1E2F3C;
  --navy-light:   #2E4055;
  --teal:         #2EC4A0;
  --teal-dark:    #1A9B7E;
  --teal-light:   #5DDCC0;
  --teal-mist:    #D0F5EE;
  --white:        #FFFFFF;
  --off-white:    #F4F7F6;
  --text-dark:    #141F27;
  --text-mid:     #344C5C;
  --text-body:    #4A6270;
  --text-soft:    #8BA3AF;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    18px;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: var(--font-body); }
ul { list-style: none; }

/* ── Scroll reveal ─────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
}
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Navigation ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 76px;
  background: rgba(20,31,39,0);
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(20,31,39,0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(46,196,160,0.12);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo span {
  display: inline-block;
  line-height: 1;
  color: inherit;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; font-weight: 400; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--teal); color: var(--navy-deep);
  font-weight: 600; font-size: 14px;
  padding: 10px 22px; border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
  position: relative;
}
.nav-cta::after {
  content: ''; position: absolute; inset: -2px;
  border-radius: 10px; background: var(--teal);
  filter: blur(8px); opacity: 0; z-index: -1; transition: opacity 0.3s;
}
.nav-cta:hover { background: var(--teal-light); transform: translateY(-1px); }
.nav-cta:hover::after { opacity: 0.35; }

/* Mobile nav */
.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px;
}
.nav-mobile-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: rgba(20,31,39,0.98); backdrop-filter: blur(12px);
  padding: 24px 5%; border-bottom: 1px solid rgba(46,196,160,0.1); z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu li a {
  display: block; padding: 12px 0; font-size: 16px;
  color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu li:last-child a { border: none; }
.mobile-cta {
  display: block; margin-top: 16px; text-align: center;
  background: var(--teal); color: var(--navy-deep);
  font-weight: 600; font-size: 15px; padding: 13px; border-radius: var(--radius-sm);
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 120px 5% 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 75% 30%, rgba(46,196,160,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 5% 90%,  rgba(46,196,160,0.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--navy-deep) 0%, #111C24 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,196,160,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,196,160,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
#hero3d {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  opacity: 0; transition: opacity 1.2s ease;
}
.trust-bar,
.section,
.contact-section,
.faq-section,
.footer {
  position: relative;
  z-index: 2;
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 390px);
  align-items: start;
  gap: 34px;
}
.hero-copy { min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(46,196,160,0.1); border: 1px solid rgba(46,196,160,0.28);
  border-radius: 100px; padding: 7px 16px; margin-bottom: 28px;
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0) rotateX(0deg); }
  50%      { transform: translateY(-6px) rotateX(1deg); }
}
@keyframes ambientDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -12px, 0) rotate(-1.2deg); }
}
@keyframes planeShift {
  0%, 100% { transform: perspective(1100px) rotateX(74deg) translateY(0) scale(1); }
  50% { transform: perspective(1100px) rotateX(74deg) translateY(-10px) scale(1.03); }
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(46,196,160,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(46,196,160,0); }
}
.badge-text {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--teal); letter-spacing: 0.15em; text-transform: uppercase;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.05;
  color: var(--white); margin-bottom: 22px; max-width: 760px;
}
.hero-h1 em { font-style: normal; color: var(--teal); }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.55);
  font-weight: 300; line-height: 1.75; max-width: 540px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat-val {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px);
  font-weight: 800; color: var(--teal); letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 4px; will-change: transform;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.38); font-weight: 300; max-width: 140px; line-height: 1.5; }

/* ── Hero agent build panel ───────────────────────── */
.hero-agent-stage {
  position: relative;
  z-index: 3;
  width: min(100%, 390px);
  justify-self: end;
  align-self: start;
  margin-top: 0;
  margin-right: -62px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 1s ease, transform 1s var(--ease);
}
.js-ready .hero-agent-stage {
  opacity: 0;
  transform: translate3d(88px, 0, 0) scale(0.96);
}
.js-ready .hero-agent-stage.agent-stage-ready {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.hero-agent-card {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(93,220,192,0.1), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(46,196,160,0.1), transparent 28%),
    linear-gradient(180deg, rgba(20,31,39,0.56) 0%, rgba(10,18,23,0.74) 100%);
  border: 1px solid rgba(93,220,192,0.14);
  box-shadow: 0 24px 54px rgba(7,15,19,0.32), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
}
.hero-agent-card::before,
.hero-agent-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero-agent-card::before {
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.05);
}
.hero-agent-card::after {
  width: 140px;
  height: 140px;
  top: -56px;
  right: -28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,196,160,0.26) 0%, rgba(46,196,160,0) 70%);
}
.hero-agent-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 10px 16px;
}
.hero-agent-chip,
.hero-agent-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-agent-chip {
  color: var(--teal);
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(46,196,160,0.12);
  border: 1px solid rgba(46,196,160,0.22);
}
.hero-agent-kicker { color: rgba(255,255,255,0.54); }
.hero-agent-intro {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  padding: 0 10px;
  max-width: none;
}
.hero-agent-intro strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 6px;
  text-wrap: balance;
  max-width: none;
}
.hero-agent-intro span {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
  max-width: none;
  white-space: nowrap;
  text-align: left;
}
.hero-agent-viewport {
  position: relative;
  min-height: 292px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12,21,27,0.34) 0%, rgba(10,18,23,0.58) 100%),
    linear-gradient(90deg, rgba(93,220,192,0.05) 1px, transparent 1px),
    linear-gradient(rgba(93,220,192,0.05) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  border: 1px solid rgba(46,196,160,0.11);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
.hero-agent-viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(93,220,192,0.14) 0%, rgba(93,220,192,0) 38%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 30%);
  pointer-events: none;
}
.hero-agent-viewport::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px dashed rgba(93,220,192,0.1);
  pointer-events: none;
}
.agent-scaffold {
  position: absolute;
  left: 28px;
  right: 28px;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(93,220,192,0), rgba(93,220,192,0.35) 16%, rgba(93,220,192,0.35) 84%, rgba(93,220,192,0));
}
.agent-scaffold::before,
.agent-scaffold::after {
  content: "";
  position: absolute;
  top: -6px;
  width: 1px;
  height: 14px;
  background: rgba(93,220,192,0.26);
}
.agent-scaffold::before { left: 18%; }
.agent-scaffold::after { right: 18%; }
.agent-scaffold-top { top: 48px; }
.agent-scaffold-bottom { bottom: 52px; }
.agent-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(93,220,192,0.16);
}
.agent-orbit-one {
  width: 208px;
  height: 208px;
  top: 54px;
  left: 50%;
  margin-left: -104px;
  animation: orbitSpin 12s linear infinite;
}
.agent-orbit-two {
  width: 164px;
  height: 164px;
  top: 76px;
  left: 50%;
  margin-left: -82px;
  border-style: dashed;
  opacity: 0.76;
  animation: orbitSpinReverse 10s linear infinite;
}
.agent-scanline {
  position: absolute;
  left: 32px;
  right: 32px;
  height: 74px;
  top: 44px;
  background: linear-gradient(180deg, rgba(46,196,160,0) 0%, rgba(46,196,160,0.12) 45%, rgba(46,196,160,0) 100%);
  filter: blur(8px);
  opacity: 0.7;
  animation: scanSweep 5.8s ease-in-out infinite;
}
.agent-blueprint {
  position: absolute;
  top: 26px;
  left: 24px;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  max-width: none;
  z-index: 4;
}
.agent-blueprint span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.64);
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.agent-build-scene {
  position: absolute;
  inset: 56px 18px 18px;
  z-index: 3;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(14,26,33,0.74) 0%, rgba(10,18,23,0.94) 100%);
  border: 1px solid rgba(93,220,192,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.agent-build-scene::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(93,220,192,0.08);
}
.agent-build-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(93,220,192,0.04) 1px, transparent 1px),
    linear-gradient(rgba(93,220,192,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}
.agent-work-halo {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 220px;
  height: 160px;
  margin-left: -110px;
  margin-top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,220,192,0.18) 0%, rgba(93,220,192,0.08) 36%, rgba(93,220,192,0) 72%);
  filter: blur(14px);
  animation: haloPulse 4.6s ease-in-out infinite;
}
.agent-work-ring {
  position: absolute;
  left: 50%;
  top: 44%;
  border-radius: 50%;
  border: 1px solid rgba(93,220,192,0.14);
  transform: translate(-50%, -50%);
}
.agent-work-ring-one {
  width: 196px;
  height: 124px;
}
.agent-work-ring-two {
  width: 150px;
  height: 90px;
  border-style: dashed;
  opacity: 0.7;
}
.agent-work-network-line,
.agent-work-network-dot {
  position: absolute;
  display: block;
  z-index: 1;
}
.agent-work-network-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(93,220,192,0), rgba(93,220,192,0.3), rgba(93,220,192,0));
  transform-origin: center;
}
.agent-work-network-line-one {
  width: 90px;
  left: 34px;
  top: 112px;
  transform: rotate(-20deg);
}
.agent-work-network-line-two {
  width: 96px;
  right: 34px;
  top: 118px;
  transform: rotate(24deg);
}
.agent-work-network-line-three {
  width: 110px;
  left: 50%;
  bottom: 84px;
  margin-left: -55px;
}
.agent-work-network-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.96), rgba(93,220,192,0.3));
  box-shadow: 0 0 12px rgba(93,220,192,0.28);
  animation: sparkDrift 3.8s ease-in-out infinite;
}
.agent-work-network-dot-one {
  left: 74px;
  top: 102px;
}
.agent-work-network-dot-two {
  right: 78px;
  top: 110px;
  animation-delay: -1.2s;
}
.agent-work-network-dot-three {
  left: 50%;
  bottom: 78px;
  margin-left: -4px;
  animation-delay: -2.1s;
}
.agent-work-screen {
  position: absolute;
  left: 50%;
  top: 36px;
  width: 150px;
  height: 112px;
  margin-left: -75px;
  padding: 12px 12px 14px;
  border-radius: 24px 24px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(93,220,192,0.04)),
    linear-gradient(180deg, rgba(18,32,40,0.96), rgba(10,18,23,0.98));
  border: 1px solid rgba(93,220,192,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 32px rgba(0,0,0,0.18);
  z-index: 3;
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}
.agent-work-screen::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 74px;
  height: 10px;
  margin-left: -37px;
  border-radius: 999px;
  background: rgba(93,220,192,0.18);
  filter: blur(1px);
}
.agent-work-screen-top {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.agent-work-screen-top span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.34);
}
.agent-work-screen-lines {
  display: grid;
  gap: 7px;
}
.agent-work-screen-lines span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(93,220,192,0.18), rgba(255,255,255,0.88), rgba(93,220,192,0.1));
  animation: screenLines 3s ease-in-out infinite;
}
.agent-work-screen-lines span:nth-child(1) { width: 82%; }
.agent-work-screen-lines span:nth-child(2) { width: 64%; animation-delay: -0.4s; }
.agent-work-screen-lines span:nth-child(3) { width: 90%; animation-delay: -0.7s; }
.agent-work-screen-lines span:nth-child(4) { width: 58%; animation-delay: -1.1s; }
.agent-work-screen-lines span:nth-child(5) { width: 72%; animation-delay: -0.2s; }
.agent-work-screen-footer {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(93,220,192,0.12), rgba(93,220,192,0.3), rgba(93,220,192,0.12));
}
.agent-work-desk {
  position: absolute;
  left: 50%;
  bottom: 58px;
  width: 216px;
  height: 64px;
  margin-left: -108px;
  border-radius: 30px 30px 16px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(93,220,192,0.08)),
    linear-gradient(180deg, rgba(19,34,42,0.96), rgba(11,20,25,0.98));
  border: 1px solid rgba(93,220,192,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 28px rgba(0,0,0,0.16);
  z-index: 2;
}
.agent-work-desk::before,
.agent-work-desk::after {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 18px;
  height: 20px;
  border-radius: 0 0 12px 12px;
  background: rgba(93,220,192,0.18);
}
.agent-work-desk::before { left: 26px; }
.agent-work-desk::after { right: 26px; }
.agent-work-signal {
  position: absolute;
  left: 50%;
  bottom: 84px;
  width: 74px;
  height: 18px;
  margin-left: -37px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  z-index: 5;
}
.agent-work-signal span {
  display: block;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(93,220,192,0.14), rgba(255,255,255,0.96));
  box-shadow: 0 0 12px rgba(93,220,192,0.24);
  animation: responseBars 1.4s ease-in-out infinite;
}
.agent-work-signal span:nth-child(1) { height: 7px; animation-delay: -0.45s; }
.agent-work-signal span:nth-child(2) { height: 13px; animation-delay: -0.2s; }
.agent-work-signal span:nth-child(3) { height: 18px; }
.agent-work-signal span:nth-child(4) { height: 10px; animation-delay: -0.3s; }
.agent-worker {
  position: absolute;
  bottom: 66px;
  width: 58px;
  height: 112px;
  z-index: 4;
  transition: transform 0.45s var(--ease), filter 0.45s ease;
  animation: workerBreathe 4.8s ease-in-out infinite;
}
.agent-worker span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 36%, rgba(255,255,255,0.96), rgba(93,220,192,0.34) 54%, rgba(11,20,25,0.98) 100%);
  box-shadow: 0 0 14px rgba(93,220,192,0.2);
}
.agent-worker::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 40px;
  height: 62px;
  margin-left: -20px;
  border-radius: 18px 18px 14px 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(93,220,192,0.08)),
    linear-gradient(180deg, rgba(18,32,40,0.98), rgba(10,18,23,0.98));
  border: 1px solid rgba(93,220,192,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.agent-worker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 46px;
  height: 18px;
  margin-left: -23px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(93,220,192,0.22), rgba(11,20,25,0.92));
  border: 1px solid rgba(93,220,192,0.12);
}
.agent-worker-left {
  left: 38px;
  animation-delay: -0.4s;
}
.agent-worker-center {
  left: 50%;
  margin-left: -29px;
}
.agent-worker-right {
  right: 38px;
  animation-delay: -0.8s;
}
.agent-work-caption {
  position: relative;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(46,196,160,0.1), rgba(17,33,41,0.92));
  border: 1px solid rgba(93,220,192,0.16);
  box-shadow: 0 14px 24px rgba(0,0,0,0.18);
  animation: widgetFloat 7.2s ease-in-out infinite;
}
.agent-work-caption span,
.agent-work-caption strong,
.agent-work-caption small {
  display: block;
}
.agent-work-caption span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.agent-work-caption strong {
  font-size: 13px;
  line-height: 1.18;
  color: var(--white);
}
.agent-work-caption small {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255,255,255,0.56);
}
.agent-work-result-line {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 7px;
  white-space: nowrap;
}
.agent-work-result-line span,
.agent-work-result-line strong {
  display: inline-block;
}
.agent-work-result-line span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0;
}
.agent-work-result-line strong {
  font-size: 11px;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 0;
}
.agent-process-rail {
  position: absolute;
  left: 50%;
  top: 78px;
  width: 2px;
  height: 148px;
  margin-left: -1px;
  z-index: 1;
}
.agent-process-segment {
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(93,220,192,0.08), rgba(93,220,192,0.42), rgba(93,220,192,0.08));
  box-shadow: 0 0 16px rgba(93,220,192,0.1);
}
.agent-process-segment-one {
  top: 0;
  height: 26px;
}
.agent-process-segment-two {
  top: 38px;
  height: 28px;
}
.agent-process-segment-three {
  top: 78px;
  height: 30px;
}
.agent-process-segment-four {
  top: 120px;
  height: 28px;
}
.agent-process-pulse {
  position: absolute;
  left: 50%;
  top: 84px;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.98) 0%, rgba(93,220,192,0.92) 48%, rgba(93,220,192,0.22) 100%);
  box-shadow: 0 0 18px rgba(93,220,192,0.38), 0 0 0 6px rgba(93,220,192,0.08);
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
  animation: processPulse 2.8s ease-in-out infinite;
  z-index: 3;
}
.agent-process-node {
  position: absolute;
  width: 126px;
  min-height: 58px;
  padding: 10px 11px;
  border-radius: 16px;
  background: rgba(17,33,41,0.72);
  border: 1px solid rgba(93,220,192,0.12);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
  z-index: 4;
  transition: transform 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.agent-process-node::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 1px;
  margin-top: -0.5px;
  background: linear-gradient(90deg, rgba(93,220,192,0.18), rgba(93,220,192,0));
}
.agent-process-node strong,
.agent-process-node small,
.agent-process-node-index {
  display: block;
}
.agent-process-node-index {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.agent-process-node strong {
  font-size: 14px;
  line-height: 1.08;
  color: var(--white);
}
.agent-process-node small {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.42;
  color: rgba(255,255,255,0.54);
}
.agent-process-node.is-active {
  background: rgba(46,196,160,0.12);
  border-color: rgba(93,220,192,0.32);
  box-shadow: 0 16px 28px rgba(0,0,0,0.22), 0 0 0 1px rgba(93,220,192,0.08);
  transform: translateY(-4px) scale(1.02);
}
.agent-process-node.is-active::before {
  background: linear-gradient(90deg, rgba(93,220,192,0.68), rgba(93,220,192,0));
}
.agent-process-node-one {
  top: 22px;
  left: 18px;
}
.agent-process-node-one::before {
  right: -42px;
}
.agent-process-node-two {
  top: 50px;
  right: 18px;
}
.agent-process-node-two::before {
  left: -42px;
  transform: scaleX(-1);
}
.agent-process-node-three {
  top: 108px;
  left: 26px;
}
.agent-process-node-three::before {
  right: -42px;
}
.agent-process-node-four {
  top: 142px;
  right: 24px;
}
.agent-process-node-four::before {
  left: -42px;
  transform: scaleX(-1);
}
.agent-process-node-five {
  left: 50%;
  bottom: 76px;
  width: 152px;
  transform: translateX(-50%);
  text-align: center;
}
.agent-process-node-five::before {
  left: 50%;
  top: -24px;
  width: 1px;
  height: 24px;
  margin-top: 0;
  margin-left: -0.5px;
  background: linear-gradient(180deg, rgba(93,220,192,0.22), rgba(93,220,192,0));
}
.agent-process-node-five.is-active {
  transform: translateX(-50%) translateY(-4px) scale(1.02);
}
.agent-process-core {
  position: absolute;
  left: 50%;
  top: 100px;
  width: 124px;
  height: 94px;
  margin-left: -62px;
  padding: 12px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 24%, rgba(93,220,192,0.14), rgba(93,220,192,0) 52%),
    linear-gradient(180deg, rgba(18,32,40,0.92), rgba(10,18,23,0.98));
  border: 1px solid rgba(93,220,192,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 18px 34px rgba(0,0,0,0.18);
  z-index: 2;
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}
.agent-process-core-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.agent-process-core-visual {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  height: 44px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 7px;
}
.agent-process-core-visual span {
  display: block;
  width: 18px;
  border-radius: 999px 999px 12px 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(93,220,192,0.18) 46%, rgba(10,18,23,0.96) 100%);
  border: 1px solid rgba(93,220,192,0.12);
  box-shadow: 0 0 12px rgba(93,220,192,0.16);
  animation: responseBars 1.6s ease-in-out infinite;
}
.agent-process-core-visual span:nth-child(1) {
  height: 18px;
  animation-delay: -0.4s;
}
.agent-process-core-visual span:nth-child(2) {
  height: 28px;
}
.agent-process-core-visual span:nth-child(3) {
  height: 22px;
  animation-delay: -0.2s;
}
.agent-build-progress {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 4;
  padding: 10px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(46,196,160,0.1), rgba(17,33,41,0.92));
  border: 1px solid rgba(93,220,192,0.16);
  box-shadow: 0 14px 24px rgba(0,0,0,0.18);
}
.agent-build-progress span {
  display: block;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.agent-build-progress strong {
  display: block;
  font-size: 13px;
  line-height: 1.18;
  color: var(--white);
}
.agent-build-progress small {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255,255,255,0.56);
}
.agent-orb-stage {
  position: absolute;
  inset: 54px 18px 18px;
  z-index: 3;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 30%, rgba(93,220,192,0.12), rgba(93,220,192,0) 48%),
    linear-gradient(180deg, rgba(13,24,30,0.72) 0%, rgba(10,18,23,0.92) 100%);
  border: 1px solid rgba(93,220,192,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.agent-orb-stage::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(93,220,192,0.08);
}
.agent-orb-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 180px;
  height: 46px;
  margin-left: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,220,192,0.26), rgba(93,220,192,0) 70%);
  filter: blur(12px);
}
.agent-orb-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 200px;
  margin-left: -100px;
  margin-top: -76px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s var(--ease);
}
.agent-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(93,220,192,0.16);
}
.agent-orb-ring-one {
  inset: 0;
  animation: orbitSpin 14s linear infinite;
}
.agent-orb-ring-two {
  inset: 18px;
  border-style: dashed;
  opacity: 0.74;
  animation: orbitSpinReverse 11s linear infinite;
}
.agent-orb-ring-three {
  inset: 40px;
  border-color: rgba(93,220,192,0.24);
  box-shadow: 0 0 28px rgba(93,220,192,0.08);
}
.agent-orb-core {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255,255,255,0.98), rgba(255,255,255,0.12) 24%, rgba(93,220,192,0.22) 48%, rgba(15,28,35,0.96) 78%),
    linear-gradient(180deg, rgba(46,196,160,0.2), rgba(14,26,33,0.96));
  border: 1px solid rgba(93,220,192,0.28);
  box-shadow:
    0 0 0 12px rgba(93,220,192,0.04),
    0 22px 46px rgba(0,0,0,0.24),
    0 0 38px rgba(93,220,192,0.24),
    inset 0 1px 0 rgba(255,255,255,0.18);
  animation: corePulse 4.4s ease-in-out infinite;
}
.agent-orb-core span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.96), rgba(93,220,192,0.26));
  box-shadow: 0 0 14px rgba(93,220,192,0.34);
}
.agent-orb-core span:nth-child(1) {
  width: 12px;
  height: 12px;
  top: 20px;
  left: 24px;
}
.agent-orb-core span:nth-child(2) {
  width: 16px;
  height: 16px;
  top: 40px;
  right: 20px;
}
.agent-orb-core span:nth-child(3) {
  width: 9px;
  height: 9px;
  bottom: 20px;
  left: 36px;
}
.agent-orb-signal {
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: 72px;
  height: 18px;
  margin-left: -36px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
}
.agent-orb-signal span {
  display: block;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(93,220,192,0.14), rgba(255,255,255,0.96));
  box-shadow: 0 0 12px rgba(93,220,192,0.26);
  animation: responseBars 1.2s ease-in-out infinite;
}
.agent-orb-signal span:nth-child(1) { height: 8px; animation-delay: -0.45s; }
.agent-orb-signal span:nth-child(2) { height: 14px; animation-delay: -0.2s; }
.agent-orb-signal span:nth-child(3) { height: 18px; }
.agent-orb-signal span:nth-child(4) { height: 12px; animation-delay: -0.25s; }
.agent-orb-signal span:nth-child(5) { height: 7px; animation-delay: -0.5s; }
.agent-console {
  position: absolute;
  inset: 56px 18px 18px;
  z-index: 3;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(15,27,34,0.82) 0%, rgba(11,20,25,0.94) 100%);
  border: 1px solid rgba(93,220,192,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agent-console::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px dashed rgba(93,220,192,0.08);
  pointer-events: none;
}
.agent-console-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.agent-console-badge,
.agent-console-kicker,
.agent-console-card-label,
.agent-console-core-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.agent-console-badge {
  color: var(--teal);
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(46,196,160,0.1);
  border: 1px solid rgba(46,196,160,0.18);
}
.agent-console-kicker { color: rgba(255,255,255,0.5); }
.agent-console-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  flex: 1;
}
.agent-console-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}
.agent-console-card {
  min-height: 74px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 22px rgba(0,0,0,0.16);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.agent-console-card strong,
.agent-console-card small {
  display: block;
}
.agent-console-card strong {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.15;
  color: var(--white);
}
.agent-console-card small {
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255,255,255,0.52);
}
.agent-console-task.is-active,
.agent-console-output.is-active {
  background: rgba(46,196,160,0.1);
  border-color: rgba(93,220,192,0.28);
  box-shadow: 0 14px 24px rgba(0,0,0,0.18), 0 0 0 1px rgba(93,220,192,0.06);
  transform: translateY(-2px);
}
.agent-console-output.is-complete strong::before {
  content: "✓ ";
  color: var(--teal-light);
}
.agent-console-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.agent-console-core {
  min-height: 164px;
  border-radius: 24px;
  padding: 14px 12px;
  background:
    radial-gradient(circle at 50% 16%, rgba(93,220,192,0.18), rgba(93,220,192,0) 54%),
    linear-gradient(180deg, rgba(20,35,43,0.9), rgba(10,18,23,0.98));
  border: 1px solid rgba(93,220,192,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 34px rgba(0,0,0,0.2);
}
.agent-console-core-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.agent-console-core-label { color: rgba(255,255,255,0.6); }
.agent-console-core-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 12px rgba(93,220,192,0.5);
}
.agent-console-wave {
  height: 62px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 6px;
}
.agent-console-wave span {
  display: block;
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(93,220,192,0.16), rgba(255,255,255,0.96));
  box-shadow: 0 0 12px rgba(93,220,192,0.24);
  animation: responseBars 1.2s ease-in-out infinite;
}
.agent-console-wave span:nth-child(1) { height: 16px; animation-delay: -0.45s; }
.agent-console-wave span:nth-child(2) { height: 34px; animation-delay: -0.2s; }
.agent-console-wave span:nth-child(3) { height: 52px; }
.agent-console-wave span:nth-child(4) { height: 28px; animation-delay: -0.25s; }
.agent-console-wave span:nth-child(5) { height: 18px; animation-delay: -0.5s; }
.agent-console-pipeline {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.agent-console-pipeline span,
.agent-console-core-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.agent-console-pipeline span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.52);
}
.agent-console-pipeline span.is-active {
  background: rgba(46,196,160,0.14);
  border-color: rgba(93,220,192,0.24);
  color: var(--white);
}
.agent-console-core-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.agent-console-core-meta span {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.52);
}
.agent-avatar-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 178px;
  height: 196px;
  margin-left: -89px;
  margin-top: -56px;
  z-index: 3;
}
.agent-avatar-aura {
  position: absolute;
  inset: 12px 8px 24px;
  border-radius: 42% 42% 30% 30%;
  background: radial-gradient(circle at 50% 42%, rgba(93,220,192,0.28), rgba(46,196,160,0) 70%);
  filter: blur(10px);
  animation: auraPulse 4s ease-in-out infinite;
}
.agent-avatar-core {
  position: absolute;
  top: 0;
  left: 50%;
  width: 136px;
  height: 154px;
  margin-left: -68px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 28%, rgba(46,196,160,0.12) 100%),
    linear-gradient(135deg, rgba(14,26,33,0.96) 0%, rgba(25,43,54,0.98) 100%);
  border: 1px solid rgba(93,220,192,0.22);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -14px 22px rgba(46,196,160,0.08);
  animation: avatarFloat 4.8s ease-in-out infinite;
}
.agent-avatar-antenna {
  position: absolute;
  top: -22px;
  left: 50%;
  width: 2px;
  height: 24px;
  margin-left: -1px;
  background: linear-gradient(180deg, rgba(93,220,192,0.14), rgba(93,220,192,0.9));
  border-radius: 999px;
}
.agent-avatar-antenna::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.96) 0%, rgba(93,220,192,0.88) 44%, rgba(93,220,192,0.18) 100%);
  box-shadow: 0 0 18px rgba(93,220,192,0.46);
}
.agent-avatar-visor {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 92px;
  height: 76px;
  margin-left: -46px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(93,220,192,0.08) 26%, rgba(14,26,33,0.12) 100%),
    radial-gradient(circle at 50% 28%, rgba(255,255,255,0.32), rgba(255,255,255,0) 58%);
  border: 1px solid rgba(93,220,192,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.agent-avatar-visor::before,
.agent-avatar-visor::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 10px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(93,220,192,0.06), rgba(93,220,192,0.36), rgba(93,220,192,0.06));
  box-shadow: 0 0 10px rgba(93,220,192,0.18);
}
.agent-avatar-visor::before { left: -7px; }
.agent-avatar-visor::after { right: -7px; }
.agent-avatar-panel {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 84px;
  height: 20px;
  margin-left: -42px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(93,220,192,0.12), rgba(255,255,255,0.08), rgba(93,220,192,0.12));
  border: 1px solid rgba(93,220,192,0.12);
}
.agent-avatar-panel::before,
.agent-avatar-panel::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 3px;
  margin-top: -1.5px;
  border-radius: 999px;
  background: rgba(93,220,192,0.44);
}
.agent-avatar-panel::before { left: 16px; }
.agent-avatar-panel::after { right: 16px; }
.agent-avatar-core::before,
.agent-avatar-core::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.agent-avatar-core::before {
  top: 18px;
  width: 78px;
  height: 78px;
  border-radius: 26px;
  border: 1px solid rgba(93,220,192,0.18);
  background: radial-gradient(circle at 50% 44%, rgba(93,220,192,0.12) 0%, rgba(93,220,192,0.02) 72%);
}
.agent-avatar-core::after {
  bottom: 22px;
  width: 66px;
  height: 7px;
  border-radius: 999px;
  background: rgba(93,220,192,0.16);
  box-shadow: 0 0 24px rgba(46,196,160,0.26);
}
.agent-avatar-face {
  position: absolute;
  top: 46px;
  left: 50%;
  width: 82px;
  height: 52px;
  margin-left: -41px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: transform 0.45s var(--ease);
}
.agent-avatar-face span,
.agent-avatar-face i {
  display: block;
}
.agent-avatar-face span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(93,220,192,0.92) 46%, rgba(93,220,192,0.38) 100%);
  box-shadow: 0 0 16px rgba(93,220,192,0.46), 0 0 0 5px rgba(93,220,192,0.08);
  animation: eyeBlink 6s ease-in-out infinite;
}
.agent-avatar-face i {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 34px;
  height: 16px;
  margin-left: -17px;
  border-bottom: 2px solid rgba(93,220,192,0.8);
  border-radius: 0 0 28px 28px;
  opacity: 0.8;
}
.agent-avatar-response {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 58px;
  height: 18px;
  margin-left: -29px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
}
.agent-avatar-response span {
  display: block;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(93,220,192,0.26), rgba(255,255,255,0.92));
  box-shadow: 0 0 10px rgba(93,220,192,0.28);
  animation: responseBars 1.2s ease-in-out infinite;
}
.agent-avatar-response span:nth-child(1) { height: 8px; animation-delay: -0.4s; }
.agent-avatar-response span:nth-child(2) { height: 14px; animation-delay: -0.2s; }
.agent-avatar-response span:nth-child(3) { height: 18px; }
.agent-avatar-response span:nth-child(4) { height: 12px; animation-delay: -0.25s; }
.agent-avatar-response span:nth-child(5) { height: 7px; animation-delay: -0.5s; }
.agent-avatar-shoulders {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 180px;
  height: 74px;
  margin-left: -90px;
  border-radius: 44px 44px 26px 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(46,196,160,0.1) 30%, rgba(14,26,33,0.92) 100%);
  border: 1px solid rgba(93,220,192,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.agent-avatar-shoulders::before,
.agent-avatar-shoulders::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 38px;
  height: 38px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(93,220,192,0.12);
}
.agent-avatar-shoulders::before { left: 18px; }
.agent-avatar-shoulders::after { right: 18px; }
.agent-avatar-base {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 162px;
  height: 20px;
  margin-left: -81px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(93,220,192,0.34), rgba(93,220,192,0.02) 68%),
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02));
  border: 1px solid rgba(93,220,192,0.14);
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
}
.agent-avatar-scene {
  background:
    radial-gradient(circle at 50% 34%, rgba(93,220,192,0.12), rgba(93,220,192,0) 44%),
    linear-gradient(180deg, rgba(14,26,33,0.74) 0%, rgba(10,18,23,0.94) 100%);
}
.agent-avatar-scene .agent-avatar-shell {
  transition: transform 0.45s var(--ease), filter 0.45s ease;
}
.agent-avatar-input,
.agent-avatar-output {
  position: absolute;
  left: 50%;
  pointer-events: none;
}
.agent-avatar-input {
  bottom: 92px;
  width: 20px;
  height: 92px;
  margin-left: -10px;
  background: linear-gradient(180deg, rgba(93,220,192,0.02), rgba(93,220,192,0.36), rgba(93,220,192,0.04));
  filter: blur(6px);
  opacity: 0.8;
  animation: beamLift 4.4s ease-in-out infinite;
}
.agent-avatar-output {
  top: 94px;
  width: 84px;
  height: 18px;
  margin-left: 28px;
  background: linear-gradient(90deg, rgba(93,220,192,0.28), rgba(93,220,192,0.02));
  filter: blur(5px);
  opacity: 0.72;
}
.agent-build-tag {
  position: absolute;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(17,33,41,0.72);
  border: 1px solid rgba(93,220,192,0.12);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
  animation: tagDrift 5.2s ease-in-out infinite;
  z-index: 5;
}
.agent-build-tag::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(93,220,192,0.24), rgba(93,220,192,0));
}
.agent-build-tag.is-active {
  background: rgba(46,196,160,0.16);
  border-color: rgba(93,220,192,0.36);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22), 0 0 0 1px rgba(93,220,192,0.08);
  transform: translateY(-4px) scale(1.03);
}
.agent-build-tag.is-active::before {
  background: linear-gradient(90deg, rgba(93,220,192,0.72), rgba(93,220,192,0));
}
.agent-build-tag-one {
  top: 84px;
  right: 18px;
  animation-delay: -0.8s;
}
.agent-build-tag-one::before {
  left: -14px;
}
.agent-build-tag-two {
  left: 18px;
  top: 154px;
  animation-delay: -2.2s;
}
.agent-build-tag-two::before {
  right: -14px;
  transform: scaleX(-1);
}
.agent-build-tag-three {
  right: 18px;
  bottom: 92px;
  animation-delay: -1.4s;
}
.agent-build-tag-three::before {
  left: -14px;
}
.agent-beam {
  position: absolute;
  left: 50%;
  top: 48px;
  width: 112px;
  height: 176px;
  margin-left: -56px;
  background: linear-gradient(180deg, rgba(93,220,192,0.22), rgba(93,220,192,0.02) 42%, rgba(93,220,192,0.18) 100%);
  clip-path: polygon(48% 0, 52% 0, 100% 100%, 0 100%);
  filter: blur(14px);
  opacity: 0.52;
  animation: beamLift 4.4s ease-in-out infinite;
  z-index: 1;
}
.hero-agent-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 10px;
}
.hero-agent-status {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.05);
}
.hero-agent-status-label,
.hero-agent-status-text {
  display: block;
}
.hero-agent-status-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 7px;
}
.hero-agent-ticker {
  position: relative;
  margin-bottom: 8px;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(93,220,192,0.08);
  border-bottom: 1px solid rgba(93,220,192,0.08);
  padding: 6px 0;
}
.hero-agent-ticker::before,
.hero-agent-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  z-index: 1;
  pointer-events: none;
}
.hero-agent-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(20,31,39,0.92), rgba(20,31,39,0));
}
.hero-agent-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(20,31,39,0.92), rgba(20,31,39,0));
}
.hero-agent-ticker-track {
  display: inline-block;
  padding-left: 100%;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  text-shadow: 0 0 12px rgba(93,220,192,0.18);
  animation: previewTicker 12s linear infinite, tickerGlow 2.8s ease-in-out infinite;
}
.hero-agent-meter {
  position: relative;
  margin-top: 0;
  margin-bottom: 8px;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}
.hero-agent-meter span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -38%;
  display: block;
  width: 38%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(93,220,192,0.42), var(--teal), rgba(255,255,255,0.96));
  box-shadow: 0 0 18px rgba(46,196,160,0.32);
  animation: meterSweep 4.6s ease-in-out infinite;
}
.hero-agent-status-text {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.hero-agent-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-agent-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(93,220,192,0.18);
  background: rgba(46,196,160,0.08);
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.hero-agent-link:hover {
  transform: translateY(-1px);
  background: rgba(46,196,160,0.14);
  border-color: rgba(93,220,192,0.3);
  color: var(--white);
}
.hero-agent-card.agent-focus-0 .agent-avatar-shell,
.hero-agent-card.agent-focus-1 .agent-avatar-shell {
  transform: translate(-10px, -2px);
  filter: drop-shadow(0 0 18px rgba(93,220,192,0.16));
}
.hero-agent-card.agent-focus-2 .agent-avatar-shell,
.hero-agent-card.agent-focus-3 .agent-avatar-shell {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 16px rgba(93,220,192,0.14));
}
.hero-agent-card.agent-focus-4 .agent-avatar-shell,
.hero-agent-card.agent-focus-5 .agent-avatar-shell {
  transform: translate(10px, -2px);
  filter: drop-shadow(0 0 18px rgba(93,220,192,0.16));
}
.hero-agent-card.agent-focus-0 .agent-avatar-face,
.hero-agent-card.agent-focus-1 .agent-avatar-face {
  transform: translateX(-8px);
}
.hero-agent-card.agent-focus-2 .agent-avatar-face,
.hero-agent-card.agent-focus-3 .agent-avatar-face {
  transform: translateX(0);
}
.hero-agent-card.agent-focus-4 .agent-avatar-face,
.hero-agent-card.agent-focus-5 .agent-avatar-face {
  transform: translateX(8px);
}
.hero-agent-card.agent-focus-2 .agent-work-result-line strong,
.hero-agent-card.agent-focus-4 .agent-work-result-line strong,
.hero-agent-card.agent-focus-5 .agent-work-result-line strong {
  color: var(--teal-light);
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes orbitSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@keyframes scanSweep {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(148px); opacity: 0.8; }
}
@keyframes auraPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.68; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes avatarFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes eyeBlink {
  0%, 44%, 48%, 100% { transform: scaleY(1); opacity: 1; }
  46% { transform: scaleY(0.18); opacity: 0.85; }
}
@keyframes tagDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes beamLift {
  0%, 100% { transform: translateY(0); opacity: 0.38; }
  50% { transform: translateY(12px); opacity: 0.68; }
}
@keyframes meterSweep {
  0% { left: -38%; }
  100% { left: 100%; }
}
@keyframes previewTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes tickerGlow {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 1; }
}
@keyframes corePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 0 12px rgba(93,220,192,0.04),
      0 22px 46px rgba(0,0,0,0.24),
      0 0 38px rgba(93,220,192,0.24),
      inset 0 1px 0 rgba(255,255,255,0.18);
  }
  50% {
    transform: scale(1.04);
    box-shadow:
      0 0 0 16px rgba(93,220,192,0.06),
      0 24px 50px rgba(0,0,0,0.26),
      0 0 46px rgba(93,220,192,0.32),
      inset 0 1px 0 rgba(255,255,255,0.2);
  }
}
@keyframes haloPulse {
  0%, 100% { transform: scale(0.94); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes processPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(93,220,192,0.38), 0 0 0 6px rgba(93,220,192,0.08); }
  50% { box-shadow: 0 0 24px rgba(93,220,192,0.5), 0 0 0 10px rgba(93,220,192,0.12); }
}
@keyframes screenLines {
  0%, 100% { transform: scaleX(0.94); opacity: 0.74; }
  50% { transform: scaleX(1); opacity: 1; }
}
@keyframes workerBreathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes armLift {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 14px rgba(93,220,192,0.12); }
  50% { transform: translateY(8px); box-shadow: 0 0 18px rgba(93,220,192,0.24); }
}
@keyframes layerFloatTop {
  0%, 100% { transform: translateY(0); opacity: 0.88; }
  50% { transform: translateY(-10px); opacity: 1; }
}
@keyframes layerFloatMid {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-5px); opacity: 1; }
}
@keyframes layerFloatCore {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
@keyframes layerFloatBase {
  0%, 100% { transform: translateY(0); opacity: 0.78; }
  50% { transform: translateY(7px); opacity: 0.92; }
}
@keyframes responseBars {
  0%, 100% { transform: scaleY(0.72); opacity: 0.84; }
  50% { transform: scaleY(1.18); opacity: 1; }
}
@keyframes widgetFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
@keyframes sparkDrift {
  0%, 100% { transform: translateY(0) scale(0.9); opacity: 0.7; }
  50% { transform: translateY(-10px) scale(1.08); opacity: 1; }
}

/* ── Buttons ───────────────────────────────────────── */
.btn-primary {
  background: var(--teal); color: var(--navy-deep);
  font-weight: 700; font-size: 15px; padding: 14px 30px;
  border-radius: var(--radius-sm); display: inline-flex;
  align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.btn-primary::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 12px; background: var(--teal);
  filter: blur(12px); opacity: 0; z-index: -1; transition: opacity 0.3s;
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(46,196,160,0.3); }
.btn-primary:hover::after { opacity: 0.4; }
.btn-secondary {
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.8);
  font-size: 15px; font-weight: 400; padding: 14px 26px;
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.btn-dark {
  background: var(--navy-deep); color: var(--white);
  font-weight: 600; font-size: 15px; padding: 15px 34px;
  border-radius: var(--radius-sm); display: inline-flex;
  align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btn-dark:hover { background: #0D1820; transform: translateY(-2px); }

/* ── Trust bar ─────────────────────────────────────── */
.trust-bar {
  background: rgba(28,43,53,0.88);
  border-top: 1px solid rgba(46,196,160,0.1);
  border-bottom: 1px solid rgba(46,196,160,0.1);
  padding: 16px 5%;
  display: flex; align-items: center; justify-content: center; justify-content: center; gap: 28px; flex-wrap: wrap;
  backdrop-filter: blur(10px);
}
.trust-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.28);
  text-transform: uppercase; white-space: nowrap;
}
.trust-items { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,0.48); font-weight: 300;
}
.trust-check { color: var(--teal); font-size: 11px; font-weight: 700; }

/* ── Shared section styles ─────────────────────────── */
.section { padding: 96px 5%; overflow: hidden; isolation: isolate; }
.section-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.eyebrow {
  font-family: var(--font-mono); font-size: 20px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px; display: block;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.1; margin-bottom: 16px; color: var(--white);
  text-shadow: 2px 3px 0 rgba(0,0,0,0.2), 0 0 40px rgba(46,196,160,0.06);
}
.section-sub {
  font-size: 16px; color: rgba(255,255,255,0.5);
  font-weight: 300; line-height: 1.75; max-width: 520px; margin-bottom: 52px;
}

/* Light sections */
.section-light { background: var(--off-white); }
.section-light .eyebrow      { color: var(--teal-dark); font-size: 20px; }
.section-light .section-h2   { color: var(--text-dark); text-shadow: 2px 3px 0 rgba(46,196,160,0.1), 4px 6px 0 rgba(0,0,0,0.04); }
.section-light .section-sub  { color: var(--text-body); }
#services-section,
#about-section {
  background: rgba(20,31,39,0.88) !important;
  backdrop-filter: blur(8px);
}
#how-it-works-section.section-light,
#insights-section.section-light {
  background: var(--off-white);
  backdrop-filter: none;
}

/* ── Problem / Scenario cards ──────────────────────── */
.scenario-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
}
.scenario-card {
  border-radius: var(--radius-md); padding: 26px 22px;
  border: 1px solid transparent;
  transform-style: preserve-3d; will-change: transform;
  transition: transform 0.5s var(--ease), box-shadow 0.25s;
  opacity: 1; transform: scale(1) translateZ(0);
}
.js-ready .scenario-card { opacity: 0; transform: scale(0.88) translateZ(-20px); }
.js-ready .scenario-card.entered { opacity: 1; transform: scale(1) translateZ(0); }
.scenario-card:nth-child(1) { background: rgba(30,47,60,0.85); border-color: rgba(46,196,160,0.25); }
.scenario-card:nth-child(2) { background: rgba(28,43,53,0.90); border-color: rgba(46,196,160,0.25); }
.scenario-card:nth-child(3) { background: rgba(30,47,60,0.80); border-color: rgba(46,196,160,0.25); }
.scenario-card:nth-child(4) { background: rgba(20,31,39,0.90); border-color: rgba(46,196,160,0.25); }
.scenario-icon { font-size: 22px; margin-bottom: 12px; display:inline-flex; width:40px; height:40px; align-items:center; justify-content:center; background:rgba(46,196,160,0.15); border-radius:8px; }
.scenario-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.scenario-desc  { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.65; }
.scenario-stat  {
  margin-top: 12px; font-family: var(--font-mono); font-size: 10px;
  color: var(--teal-light); background: rgba(46,196,160,0.18);
  padding: 4px 10px; border-radius: 20px; display: inline-block; letter-spacing: 0.06em;
}

/* ── Services / Phase cards ────────────────────────── */
.phases-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  perspective: 1200px;
}
.phase-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 30px 24px; position: relative; overflow: hidden;
  transform-style: preserve-3d; will-change: transform;
  opacity: 1; transform: perspective(800px) rotateX(0deg) translateY(0);
  transition: border-color 0.25s, transform 0.5s var(--ease), box-shadow 0.25s, opacity 0.5s;
}
.js-ready .phase-card { opacity: 0; transform: perspective(800px) rotateX(15deg) translateY(30px); }
.js-ready .phase-card.entered { opacity: 1; transform: perspective(800px) rotateX(0deg) translateY(0); }
.phase-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  opacity: 0; transition: opacity 0.25s;
}
.phase-card.featured { border-color: rgba(46,196,160,0.35); background: rgba(46,196,160,0.07); }
.phase-card.featured::before { opacity: 1; }
.phase-card:hover::before { opacity: 1; }
.phase-badge {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 4px; display: block;
}
.phase-badge-rec {
  display: inline-block; background: var(--teal); color: var(--navy-deep);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em;
  padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
  margin-bottom: 10px; font-weight: 700;
}
.phase-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; margin-bottom: 4px; }
.phase-price { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--teal); letter-spacing: -0.03em; margin-bottom: 4px; line-height: 1; }
.phase-price-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.phase-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 18px; }
.phase-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.phase-features li { font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.phase-features li::before { content: '→'; color: var(--teal); font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.phase-note { font-size: 11px; color: rgba(255,255,255,0.3); font-style: italic; margin: 8px 0 16px; padding: 0; background: transparent; border-radius: 0; }
.phase-cta {
  display: block; text-align: center; background: var(--teal); color: var(--navy-deep);
  font-weight: 600; font-size: 14px; padding: 11px 18px;
  border-radius: var(--radius-sm); transition: background 0.2s, transform 0.15s;
}
.phase-cta:hover { background: var(--teal-light); transform: translateY(-1px); }
.phase-cta-ghost {
  display: block; text-align: center; background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65); font-size: 14px; padding: 11px 18px;
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
}
.phase-cta-ghost:hover { background: rgba(255,255,255,0.11); }

/* ── Sprint section ────────────────────────────────── */
.sprint-track {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 12px;
}
.day-card {
  border-radius: var(--radius-md); padding: 20px 14px; text-align: center;
  transform-style: preserve-3d; will-change: transform;
  opacity: 1; transform: perspective(600px) rotateY(0deg);
  transition: transform 0.5s var(--ease), box-shadow 0.25s;
}
.js-ready .day-card { opacity: 0; transform: perspective(600px) rotateY(-25deg); }
.js-ready .day-card.entered { opacity: 1; transform: perspective(600px) rotateY(0deg); }
.day-card.onsite  { background: var(--white); border: 1px solid rgba(46,196,160,0.25); box-shadow: 0 4px 18px rgba(0,0,0,0.06); }
.day-card.offsite { background: rgba(28,43,53,0.07); border: 1px dashed rgba(28,43,53,0.22); }
.day-badge { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; margin-bottom: 10px; display: inline-block; }
.day-badge.on  { background: var(--teal-mist); color: var(--teal-dark); }
.day-badge.off { background: #E5E7EB; color: #4B5563; }
.day-num   { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.day-title { font-size: 12px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.day-points { text-align: left; }
.day-points li { font-size: 11px; color: var(--text-body); padding: 2px 0; display: flex; align-items: flex-start; gap: 5px; }
.day-points li::before { content: '·'; color: var(--teal-dark); flex-shrink: 0; }

/* Deliverables grid */
.deliverables-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 14px; margin-top: 44px; }
.deliverable-card {
  background: var(--white); border-radius: 12px; padding: 18px 16px;
  border: 1px solid rgba(46,196,160,0.14);
  display: flex; gap: 12px; align-items: flex-start;
  transform-style: preserve-3d; will-change: transform;
  transition: transform 0.3s var(--ease), box-shadow 0.25s;
}
.deliverable-card:hover { transform: translateY(-3px) translateZ(4px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.deliverable-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--teal-mist); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.deliverable-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; line-height: 1.3; }
.deliverable-desc { font-size: 11px; color: var(--text-body); line-height: 1.55; }

/* ── ROI section ───────────────────────────────────── */
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.roi-calc {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 30px;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.roi-calc:hover {
  transform: rotateY(-4deg) rotateX(2deg) translateZ(10px);
  box-shadow: 12px 12px 40px rgba(0,0,0,0.3), -4px -4px 20px rgba(46,196,160,0.08);
}
.roi-calc-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.roi-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 13px; }
.roi-row:last-of-type { border: none; }
.roi-key { color: rgba(255,255,255,0.5); }
.roi-val { font-family: var(--font-mono); font-weight: 700; color: var(--white); font-size: 13px; }
.roi-val.neg { color: #FC8181; }
.roi-val.pos { color: var(--teal); }
.roi-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 8px 0; }
.roi-total { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; font-family: var(--font-display); font-weight: 800; }
.roi-total .roi-key { color: rgba(255,255,255,0.75); font-size: 14px; }
.roi-total .roi-val { color: var(--teal); font-size: 24px; font-family: var(--font-mono); letter-spacing: -0.02em; }
.roi-footnote { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.22); letter-spacing: 0.04em; margin-top: 10px; }
.roi-text .section-h2 { color: var(--white); }
.roi-text p { font-size: 15px; color: rgba(255,255,255,0.52); line-height: 1.78; font-weight: 300; margin-bottom: 14px; }

/* ── About section ─────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-text .section-h2 { color: var(--white); }
.about-text p { font-size: 15px; color: rgba(255,255,255,0.52); line-height: 1.78; font-weight: 300; margin-bottom: 14px; }
.values-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.value-pill { background: rgba(46,196,160,0.1); border: 1px solid rgba(46,196,160,0.2); color: var(--teal); font-size: 12px; padding: 5px 13px; border-radius: 20px; font-weight: 500; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.founder-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md); padding: 22px 18px;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease), border-color 0.25s;
}
.founder-card:hover { transform: translateZ(12px) rotateX(-2deg); border-color: rgba(46,196,160,0.3); }
.founder-avatar {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  color: var(--navy-deep); margin-bottom: 12px;
}
.founder-label { font-family: var(--font-mono); font-size: 9px; color: var(--teal); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.founder-name  { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.founder-title { font-size: 12px; color: var(--teal); margin-bottom: 10px; font-weight: 500; }
.founder-bio   { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── Insights section ──────────────────────────────── */
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.insight-card {
  background: var(--white); border-radius: 14px; padding: 24px 20px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  transform-style: preserve-3d; will-change: transform;
  transition: transform 0.3s var(--ease), box-shadow 0.25s;
  display: block; color: inherit; text-decoration: none;
}
.insight-card:hover { transform: translateY(-4px) rotateX(-2deg); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.insight-tag { font-family: var(--font-mono); font-size: 9px; color: var(--teal-dark); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.insight-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.35; }
.insight-desc  { font-size: 12px; color: var(--text-body); line-height: 1.65; }
.insight-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: var(--font-mono); font-size: 10px; color: var(--teal-dark); letter-spacing: 0.08em; text-transform: uppercase; }
.insight-link::after { content: "↗"; }
.insights-actions { margin-top: 26px; display: flex; justify-content: center; }
#insights-section .btn-secondary {
  background: rgba(20,31,39,0.06);
  color: var(--teal-dark);
  border-color: rgba(20,31,39,0.12);
}
#insights-section .btn-secondary:hover {
  background: rgba(46,196,160,0.12);
  color: var(--navy-deep);
  border-color: rgba(46,196,160,0.22);
}
.insights-supporting-links { margin-top: 14px; text-align: center; font-size: 14px; color: var(--text-body); }
.insights-supporting-links a { color: var(--teal-dark); font-weight: 600; }
.insights-resource-panel {
  margin-top: 24px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #13242d 0%, #1a313b 100%);
  border: 1px solid rgba(46,196,160,0.18);
  box-shadow: 0 18px 36px rgba(10,26,33,0.12);
}
.insights-resource-copy h3 {
  font-size: 28px;
  line-height: 1.08;
  color: var(--white);
  margin: 12px 0 10px;
}
.insights-resource-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}
.insights-resource-links {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.insights-resource-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--teal-dark);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 10px 24px rgba(10,26,33,0.16);
}
.insights-resource-links a:hover {
  background: #f7fffc;
  transform: translateY(-2px);
}

/* ── Contact / Book form ───────────────────────────── */
.contact-section { background: linear-gradient(180deg, rgba(46,196,160,0.94) 0%, rgba(26,155,126,0.96) 100%); padding: 72px 5%; }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact-text h2 { font-family: var(--font-display); font-size: clamp(24px,3.5vw,38px); font-weight: 800; color: var(--navy-deep); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 10px; }
.contact-text p  { font-size: 15px; color: rgba(20,31,39,0.65); font-weight: 300; }
.contact-form { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: 0 20px 60px rgba(20,31,39,0.25); }
.form-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border: 1.5px solid #E5E7EB;
  border-radius: 8px; font-size: 14px; font-family: var(--font-body);
  color: var(--text-dark); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(46,196,160,0.12); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; background: var(--teal); color: var(--navy-deep);
  font-weight: 700; font-size: 15px; padding: 13px;
  border-radius: 8px; transition: background 0.2s, transform 0.15s;
  cursor: pointer; border: none; font-family: var(--font-body);
}
.form-submit:hover { background: var(--teal-light); transform: translateY(-1px); }
.form-submit:active { transform: translateY(1px); }
.form-note { font-size: 11px; color: var(--text-soft); text-align: center; margin-top: 10px; }
/* Form status messages */
.form-status { display: none; padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-top: 10px; text-align: center; }
.form-status.success { background: #D1FAE5; color: #065F46; display: block; }
.form-status.error   { background: #FEE2E2; color: #991B1B; display: block; }

/* ── Footer ────────────────────────────────────────── */
.footer { background: rgba(20,31,39,0.92); border-top: 1px solid rgba(255,255,255,0.05); padding: 60px 5% 28px; backdrop-filter: blur(10px); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer-brand img { height: 34px; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.28); line-height: 1.75; font-weight: 300; max-width: 220px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 7px;
  background: rgba(255,255,255,0.07); display: flex; align-items: center;
  justify-content: center; font-size: 12px; color: rgba(255,255,255,0.38);
  transition: background 0.2s, color 0.2s;
}
.footer-social a svg { width: 15px; height: 15px; display: block; }
.footer-social a:hover { background: rgba(46,196,160,0.15); color: var(--teal); }
.footer-col-title { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 14px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 10px; }
.footer-copy { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.2); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── Scroll to top ─────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none; box-shadow: 0 4px 14px rgba(46,196,160,0.35);
  cursor: pointer; border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--teal-light); }

/* ── 3D CSS Effects ────────────────────────────────── */
.phases-grid, .scenario-grid, .insights-grid { perspective: 1200px; }
.phase-card, .scenario-card, .founder-card, .insight-card, .roi-calc { transform-style: preserve-3d; }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 34px; }
  .hero-agent-stage { width: min(100%, 520px); justify-self: start; margin-top: 0; margin-right: 0; }
  .phases-grid     { grid-template-columns: 1fr 1fr; }
  .roi-grid        { grid-template-columns: 1fr; gap: 36px; }
  .about-grid      { grid-template-columns: 1fr; }
  .contact-inner   { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner    { grid-template-columns: 1fr 1fr; gap: 28px; }
  .js-ready .hero-agent-stage,
  .js-ready .hero-agent-stage.agent-stage-ready { opacity: 1; transform: none; }
  .js-ready .scenario-card,
  .js-ready .scenario-card.entered { opacity: 1; transform: none; transition: none; }
}
@media (min-width: 1025px) and (max-height: 900px) {
  .hero { padding: 92px 5% 44px; }
  .hero-inner { gap: 26px; }
  .hero-badge { margin-bottom: 18px; }
  .hero-h1 {
    font-size: clamp(34px, 4.4vw, 58px);
    margin-bottom: 16px;
    max-width: 680px;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.58;
    margin-bottom: 26px;
    max-width: 500px;
  }
  .hero-ctas { margin-bottom: 34px; }
  .hero-stats { gap: 28px; }
  .hero-stat-val { font-size: clamp(22px, 2.2vw, 30px); }
  .hero-stat-label { font-size: 11px; max-width: 118px; }
  .hero-agent-stage {
    width: min(100%, 380px);
    margin-right: -52px;
  }
  .hero-agent-card { padding: 16px; }
  .hero-agent-topline { margin-bottom: 12px; }
  .hero-agent-topline { margin: 0 0 12px; }
  .hero-agent-intro { margin-bottom: 10px; }
  .hero-agent-intro strong {
    font-size: clamp(20px, 2.1vw, 25px);
    margin-bottom: 5px;
  }
  .hero-agent-intro span {
    font-size: 11px;
    line-height: 1.5;
  }
  .hero-agent-viewport { min-height: 268px; }
  .agent-build-scene { inset: 50px 14px 14px; }
  .agent-work-screen {
    top: 34px;
    width: 136px;
    height: 104px;
    margin-left: -68px;
  }
  .agent-work-desk {
    width: 198px;
    height: 58px;
    margin-left: -99px;
    bottom: 54px;
  }
  .agent-worker {
    bottom: 62px;
    width: 52px;
    height: 104px;
  }
  .agent-worker-left { left: 28px; }
  .agent-worker-right { right: 28px; }
  .agent-work-caption {
    padding: 9px 10px;
  }
  .agent-work-caption strong { font-size: 12px; }
  .agent-work-caption small { font-size: 9px; }
  .agent-process-rail { top: 72px; height: 134px; }
  .agent-process-node { width: 114px; padding: 9px 10px; }
  .agent-process-node strong { font-size: 13px; }
  .agent-process-node small { font-size: 9px; }
  .agent-process-node-one { top: 18px; left: 14px; }
  .agent-process-node-two { top: 44px; right: 14px; }
  .agent-process-node-three { top: 96px; left: 20px; }
  .agent-process-node-four { top: 126px; right: 18px; }
  .agent-process-node-five { width: 140px; bottom: 66px; }
  .agent-process-core {
    top: 92px;
    width: 112px;
    height: 86px;
    margin-left: -56px;
  }
  .agent-build-progress {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 9px 10px;
  }
  .agent-build-progress strong { font-size: 12px; }
  .agent-build-progress small { font-size: 9px; }
  .agent-orb-stage { inset: 50px 14px 14px; }
  .agent-orb-shell {
    width: 184px;
    height: 184px;
    margin-left: -92px;
    margin-top: -70px;
  }
  .agent-orb-core { width: 84px; height: 84px; }
  .agent-console {
    inset: 52px 14px 14px;
    padding: 12px;
    gap: 10px;
  }
  .agent-console-grid {
    grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1fr);
    gap: 8px;
  }
  .agent-console-card {
    min-height: 68px;
    padding: 9px;
  }
  .agent-console-card strong { font-size: 12px; }
  .agent-console-card small { font-size: 9px; }
  .agent-console-core { min-height: 148px; padding: 12px 10px; }
  .agent-console-wave { height: 54px; }
  .agent-console-pipeline { margin-top: 12px; }
  .hero-agent-footer {
    gap: 10px;
    margin-top: 10px;
  }
  .hero-agent-copy strong { font-size: 15px; }
  .hero-agent-copy span {
    font-size: 12px;
    line-height: 1.48;
  }
  .hero-agent-status {
    padding: 10px 12px;
    border-radius: 14px;
  }
  .hero-agent-status-label { margin-bottom: 7px; }
  .hero-agent-meter { height: 8px; }
  .hero-agent-status-text {
    margin-top: 7px;
    font-size: 14px;
  }
  .hero-agent-actions { gap: 8px; }
  .hero-agent-link {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle   { display: flex; }
  .hero                { padding: 100px 5% 60px; }
  .hero-inner          { gap: 28px; }
  .hero-stats          { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .hero-stats > div    { max-width: min(100%, 280px); }
  .hero-stat-label     { max-width: none; }
  .hero-agent-stage    { width: 100%; margin-top: 0; margin-right: 0; }
  .hero-agent-card     { padding: 16px; border-radius: 24px; }
  .hero-agent-intro span { white-space: normal; }
  .hero-agent-viewport { min-height: 314px; }
  .agent-build-scene { inset: 54px 14px 14px; }
  .agent-work-screen {
    top: 40px;
    width: 146px;
    height: 108px;
    margin-left: -73px;
  }
  .agent-work-desk {
    width: 208px;
    height: 62px;
    margin-left: -104px;
    bottom: 58px;
  }
  .agent-worker {
    bottom: 68px;
    width: 54px;
    height: 108px;
  }
  .agent-worker-left { left: 30px; }
  .agent-worker-right { right: 30px; }
  .agent-work-caption {
    margin-top: 10px;
  }
  .agent-process-rail { top: 82px; height: 156px; }
  .agent-process-node-one { top: 22px; left: 18px; }
  .agent-process-node-two { top: 52px; right: 18px; }
  .agent-process-node-three { top: 114px; left: 24px; }
  .agent-process-node-four { top: 150px; right: 22px; }
  .agent-process-node-five { bottom: 80px; }
  .agent-process-core {
    top: 106px;
    width: 124px;
    height: 92px;
    margin-left: -62px;
  }
  .agent-build-progress {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .agent-orb-stage { inset: 54px 14px 14px; }
  .agent-orb-shell {
    width: 188px;
    height: 188px;
    margin-left: -94px;
    margin-top: -70px;
  }
  .hero-agent-topline  { flex-direction: column; align-items: flex-start; }
  .hero-agent-intro    { padding: 0; max-width: none; }
  .hero-agent-intro strong { max-width: none; }
  .agent-console {
    inset: 54px 14px 14px;
    padding: 12px;
  }
  .agent-console-grid {
    grid-template-columns: minmax(0, 1fr) 104px minmax(0, 1fr);
    gap: 8px;
  }
  .agent-console-card strong { font-size: 12px; }
  .agent-console-card small { font-size: 9px; }
  .agent-build-tag     { font-size: 9px; }
  .trust-bar           { gap: 12px; justify-content: center; }
  .phases-grid         { grid-template-columns: 1fr; }
  .sprint-track        { grid-template-columns: 1fr 1fr; }
  .insights-grid       { grid-template-columns: 1fr; }
  .founders-grid       { grid-template-columns: 1fr; }
  .footer-inner        { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .contact-inner       { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .section             { padding: 72px 5%; }
}
@media (max-width: 480px) {
  .sprint-track  { grid-template-columns: 1fr; }
  .hero-h1       { font-size: 34px; }
  .hero-stats    { gap: 20px; }
  .hero-agent-viewport { min-height: 286px; }
  .agent-build-scene { inset: 48px 10px 10px; }
  .agent-work-screen {
    top: 34px;
    width: 122px;
    height: 96px;
    margin-left: -61px;
    padding: 10px 10px 12px;
  }
  .agent-work-screen-top { margin-bottom: 8px; }
  .agent-work-desk {
    width: 182px;
    height: 54px;
    margin-left: -91px;
    bottom: 54px;
  }
  .agent-work-desk::before,
  .agent-work-desk::after {
    bottom: -16px;
    width: 14px;
    height: 16px;
  }
  .agent-worker {
    bottom: 66px;
    width: 46px;
    height: 94px;
  }
  .agent-worker span {
    width: 18px;
    height: 18px;
    margin-left: -9px;
  }
  .agent-worker::before {
    top: 15px;
    width: 34px;
    height: 52px;
    margin-left: -17px;
  }
  .agent-worker::after {
    width: 38px;
    height: 14px;
    margin-left: -19px;
    bottom: 10px;
  }
  .agent-worker-left { left: 16px; }
  .agent-worker-center { margin-left: -23px; }
  .agent-worker-right { right: 16px; }
  .agent-work-signal {
    bottom: 78px;
    width: 62px;
    margin-left: -31px;
    gap: 4px;
  }
  .agent-work-signal span { width: 5px; }
  .agent-work-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px 9px;
  }
  .agent-work-caption strong { font-size: 11px; }
  .agent-work-caption small { font-size: 9px; }
  .agent-process-rail { top: 70px; height: 138px; }
  .agent-process-pulse {
    top: 76px;
    width: 12px;
    height: 12px;
    margin-left: -6px;
  }
  .agent-process-node {
    width: 102px;
    min-height: 52px;
    padding: 8px 9px;
    border-radius: 14px;
  }
  .agent-process-node strong { font-size: 12px; }
  .agent-process-node small { font-size: 9px; line-height: 1.34; }
  .agent-process-node::before { width: 28px; }
  .agent-process-node-one { top: 18px; left: 10px; }
  .agent-process-node-one::before { right: -28px; }
  .agent-process-node-two { top: 44px; right: 10px; }
  .agent-process-node-two::before { left: -28px; }
  .agent-process-node-three { top: 96px; left: 14px; }
  .agent-process-node-three::before { right: -28px; }
  .agent-process-node-four { top: 126px; right: 12px; }
  .agent-process-node-four::before { left: -28px; }
  .agent-process-node-five { width: 128px; bottom: 68px; }
  .agent-process-core {
    top: 98px;
    width: 104px;
    height: 82px;
    margin-left: -52px;
    padding: 10px;
  }
  .agent-process-core-visual {
    left: 14px;
    right: 14px;
    bottom: 14px;
    height: 36px;
    gap: 5px;
  }
  .agent-process-core-visual span { width: 14px; }
  .agent-build-progress {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px 9px;
  }
  .agent-build-progress strong { font-size: 11px; }
  .agent-build-progress small { font-size: 9px; }
  .agent-orb-stage {
    inset: 48px 10px 10px;
  }
  .agent-orb-shell {
    width: 164px;
    height: 164px;
    margin-left: -82px;
    margin-top: -62px;
  }
  .agent-orb-core {
    width: 76px;
    height: 76px;
  }
  .agent-console {
    inset: 50px 10px 10px;
    padding: 10px;
    gap: 8px;
  }
  .agent-console-grid {
    grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
    gap: 6px;
  }
  .agent-console-badge,
  .agent-console-kicker,
  .agent-console-card-label,
  .agent-console-core-label {
    font-size: 7px;
  }
  .agent-console-card {
    min-height: 62px;
    padding: 8px;
    border-radius: 14px;
  }
  .agent-console-card strong { font-size: 10px; margin-top: 6px; }
  .agent-console-card small { font-size: 8px; margin-top: 4px; }
  .agent-console-core {
    min-height: 136px;
    padding: 10px 8px;
  }
  .agent-console-wave { height: 46px; gap: 4px; }
  .agent-console-wave span { width: 6px; }
  .agent-console-pipeline span,
  .agent-console-core-meta span {
    min-height: 21px;
    padding: 3px 7px;
    font-size: 7px;
  }
  .agent-avatar-shell {
    width: 166px;
    height: 188px;
    margin-left: -83px;
    margin-top: -56px;
  }
  .agent-avatar-core {
    width: 128px;
    height: 148px;
    margin-left: -64px;
  }
  .agent-avatar-visor {
    width: 88px;
    height: 74px;
    margin-left: -44px;
  }
  .agent-avatar-face {
    top: 46px;
    width: 78px;
    margin-left: -39px;
  }
  .agent-avatar-shoulders {
    width: 168px;
    height: 74px;
    margin-left: -84px;
  }
  .agent-orbit-one {
    width: 198px;
    height: 198px;
    margin-left: -99px;
  }
  .agent-orbit-two {
    width: 156px;
    height: 156px;
    top: 74px;
    margin-left: -78px;
  }
  .agent-build-tag-one { top: 74px; right: 10px; }
  .agent-build-tag-two { left: 10px; top: 130px; }
  .agent-build-tag-three { right: 10px; bottom: 84px; }
  .hero-agent-copy strong { font-size: 17px; }
  .hero-agent-copy span { font-size: 13px; }
  .hero-agent-status-text { font-size: 16px; }
  .hero-agent-actions { align-items: stretch; }
  .hero-agent-link { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .agent-work-halo,
  .agent-work-network-dot,
  .agent-work-screen-lines span,
  .agent-work-signal span,
  .agent-worker,
  .agent-process-pulse,
  .agent-process-core-visual span,
  .agent-orb-core,
  .agent-orb-signal span,
  .agent-console-wave span,
  .agent-orbit,
  .agent-scanline,
  .agent-avatar-aura,
  .agent-avatar-core,
  .agent-avatar-face span,
  .agent-avatar-response span,
  .agent-work-caption,
  .agent-build-tag,
  .agent-beam,
  .hero-agent-meter span,
  .hero-agent-ticker-track {
    animation: none !important;
  }
  .hero-agent-stage,
  .js-ready .hero-agent-stage,
  .js-ready .hero-agent-stage.agent-stage-ready {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Problem section is now dark — override light-section defaults */
.problem-section { background: rgba(20,31,39,0.9); backdrop-filter: blur(8px); }
.problem-section .eyebrow { color: var(--teal); }
.problem-section .section-h2 { color: var(--white); }
.problem-section .section-sub { color: rgba(255,255,255,0.55); }

/* ── REPLACED ── */
#webform125322000000543686,
[id^="webform"] {
  background: #ffffff !important;
  color: #141F27 !important;
}
[id^="webform"] .zf-templateWrapper,
[id^="webform"] .zf-tempContDiv,
[id^="webform"] .zf-tempFrmWrapper {
  background: #ffffff !important;
}
[id^="webform"] label,
[id^="webform"] .zf-labelName,
[id^="webform"] .zf-fldHint,
[id^="webform"] .heading,
[id^="webform"] h2,
[id^="webform"] h3,
[id^="webform"] p,
[id^="webform"] span:not(.zf-required) {
  color: #141F27 !important;
  font-family: var(--font-body), Arial, sans-serif !important;
}
[id^="webform"] input[type="text"],
[id^="webform"] input[type="email"],
[id^="webform"] input[type="tel"],
[id^="webform"] textarea,
[id^="webform"] select {
  color: #141F27 !important;
  background: #f8fafa !important;
  border: 1.5px solid #d0dde3 !important;
  border-radius: 7px !important;
  font-family: var(--font-body), Arial, sans-serif !important;
}
[id^="webform"] input[type="text"]:focus,
[id^="webform"] input[type="email"]:focus,
[id^="webform"] input[type="tel"]:focus,
[id^="webform"] textarea:focus {
  border-color: #2EC4A0 !important;
  outline: none !important;
}
[id^="webform"] input[type="submit"],
[id^="webform"] .zf-submitBtn {
  background: #2EC4A0 !important;
  color: #141F27 !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 28px !important;
  font-size: 14px !important;
  cursor: pointer !important;
  width: 100% !important;
}
[id^="webform"] input[type="submit"]:hover,
[id^="webform"] .zf-submitBtn:hover {
  background: #5DDCC0 !important;
}
[id^="webform"] .zf-required,
[id^="webform"] .zf-errorMessage {
  color: #e53e3e !important;
}

/* ── Page bottom bar — copyright & legal ─────────────────────────── */
.page-bottom-bar {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}
.page-bottom-bar .footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.page-bottom-bar .footer-separator {
  color: rgba(255,255,255,0.18);
  font-size: 11px;
  line-height: 1;
  flex: 0 0 auto;
}
.page-bottom-bar .footer-legal {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
  white-space: nowrap;
}
.page-bottom-bar .footer-legal a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.page-bottom-bar .footer-legal a:hover {
  color: var(--teal);
}
.page-bottom-bar .footer-cookie-note {
  flex: 0 1 auto;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.36);
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 980px) {
  .page-bottom-bar {
    flex-wrap: wrap;
    gap: 8px;
  }
  .page-bottom-bar .footer-separator {
    display: none;
  }
  .page-bottom-bar .footer-cookie-note {
    flex-basis: 100%;
    order: 3;
  }
  .page-bottom-bar .footer-legal {
    order: 2;
  }
}


/* ── Zoho webform — brand-aligned styles ─────────────────────────── */
#crmWebToEntityForm {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 0 !important;
  max-width: 100% !important;
}
#crmWebToEntityForm .zcwf_title {
  color: #141F27 !important;
  font-family: var(--font-display), Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 0 0 12px 0 !important;
}
#crmWebToEntityForm .zcwf_col_lab label {
  color: #141F27 !important;
  font-family: var(--font-body), Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}
#crmWebToEntityForm .zcwf_col_fld input[type=text],
#crmWebToEntityForm .zcwf_col_fld textarea {
  color: #141F27 !important;
  background: #f8fafa !important;
  border: 1.5px solid #d0dde3 !important;
  border-radius: 6px !important;
  font-family: var(--font-body), Arial, sans-serif !important;
  font-size: 13px !important;
  padding: 7px 10px !important;
  width: 100% !important;
  float: none !important;
}
#crmWebToEntityForm .zcwf_col_fld input[type=text]:focus,
#crmWebToEntityForm .zcwf_col_fld textarea:focus {
  border-color: #2EC4A0 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(46,196,160,0.12) !important;
}
#crmWebToEntityForm .zcwf_col_lab {
  width: 100% !important;
  float: none !important;
  margin-bottom: 3px !important;
}
#crmWebToEntityForm .zcwf_col_fld {
  width: 100% !important;
  float: none !important;
}
#crmWebToEntityForm .zcwf_row {
  margin: 10px 0 !important;
}
#crmWebToEntityForm .formsubmit.zcwf_button {
  background: #2EC4A0 !important;
  color: #141F27 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 11px 28px !important;
  cursor: pointer !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 8px !important;
}
#crmWebToEntityForm .formsubmit.zcwf_button:hover {
  background: #5DDCC0 !important;
}
#crmWebToEntityForm .zcwf_button[name=reset] {
  display: none !important;
}

/* ROI stat value — tabular numeric font */
.stat-val { font-family: 'DM Sans', sans-serif !important; font-feature-settings: 'tnum'; font-variant-numeric: tabular-nums; }

/* Year 1 ROI total — crisp tabular numeric */
.roi-total .roi-val {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-feature-settings: 'tnum';
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

/* ───────────────────────────────────────────────────
   STICKY CTA BUTTON (Phase 2D - CRO)
   ─────────────────────────────────────────────────── */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.1); padding: 14px 16px; box-shadow: 0 -8px 28px rgba(0,0,0,0.32); animation: slideUpCTA 0.5s var(--ease); }
@keyframes slideUpCTA { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }
.sticky-cta-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sticky-cta-text { display: flex; flex-direction: column; gap: 4px; }
.sticky-cta-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 0.05em; text-transform: uppercase; }
.sticky-cta-desc { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.92); }
.sticky-cta-btn { flex-shrink: 0; min-width: 170px; background: var(--white); color: var(--teal-dark); font-weight: 800; font-size: 15px; padding: 14px 24px; border-radius: 12px; transition: all 0.3s var(--ease); display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 2px solid rgba(255,255,255,0.92); box-shadow: 0 10px 24px rgba(10,26,33,0.22); cursor: pointer; }
.sticky-cta-btn:hover { background: #f7fffc; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(10,26,33,0.28); }
.sticky-cta-btn:active { transform: translateY(0); }
@media (max-width: 768px) { .sticky-cta { padding: 12px; } .sticky-cta-inner { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; } .sticky-cta-text { order: 1; } .sticky-cta-btn { order: 2; width: 100%; min-width: 0; justify-content: center; } .sticky-cta-label { font-size: 11px; } .sticky-cta-desc { font-size: 13px; } }
.sticky-cta.hidden { opacity: 0; pointer-events: none; }

/* ── Phase 2C content pages & FAQ ───────────────────────────────── */
.faq-section {
  background:
    radial-gradient(circle at top left, rgba(46,196,160,0.08), transparent 30%),
    linear-gradient(180deg, rgba(15,23,29,0.9) 0%, rgba(20,31,39,0.94) 100%);
  backdrop-filter: blur(8px);
}
.faq-section-inner { max-width: 1200px; margin: 0 auto; }
.faq-header { max-width: none; }
.faq-section .eyebrow { color: var(--teal); position: relative; padding-left: 18px; }
.faq-section .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}
.faq-section .section-h2 { color: var(--white); text-shadow: 2px 3px 0 rgba(93,220,192,0.18), 4px 6px 0 rgba(255,255,255,0.06); }
.faq-layout {
  margin-top: 48px;
  display: block;
}
.faq-grid {
  position: relative;
  margin-top: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
}
.faq-track {
  display: flex;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}
.faq-page {
  min-width: 100%;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.faq-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.faq-card:hover,
.faq-card.is-open {
  border-color: rgba(46,196,160,0.18);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 12px 26px rgba(0,0,0,0.14);
}
.faq-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.faq-toggle:focus-visible {
  outline: 3px solid rgba(46,196,160,0.24);
  outline-offset: -3px;
}
.faq-index {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-align: left;
  min-width: 28px;
}
.faq-question {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  text-align: left;
  max-width: none;
}
.faq-toggle-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  position: relative;
}
.faq-toggle-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,0.72);
  border-bottom: 2px solid rgba(255,255,255,0.72);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.faq-card:hover .faq-toggle-icon::before,
.faq-card.is-open .faq-toggle-icon::before {
  border-color: var(--teal);
}
.faq-card.is-open .faq-toggle-icon::before {
  transform: rotate(-135deg);
}
.faq-answer-wrap {
  padding: 0 20px 18px 62px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.faq-answer {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.76);
  text-align: left;
  max-width: 860px;
  margin: 0;
}
.faq-nav {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.faq-page-btn {
  min-height: 44px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.faq-page-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(46,196,160,0.28);
  transform: translateY(-1px);
}
.faq-page-btn:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
}
.faq-page-status {
  min-width: 120px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.54);
}

@media (max-width: 768px) {
  .faq-layout { margin-top: 32px; }
  .faq-nav {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .faq-page-btn {
    display: inline-flex !important;
    flex: 0 0 auto;
  }
  .faq-page-status { flex: 1 1 auto; }
}

@media (max-width: 640px) {
  .faq-page { padding: 10px; gap: 10px; }
  .faq-toggle { grid-template-columns: auto 1fr auto; gap: 12px; padding: 16px 14px; text-align: left; }
  .faq-index { min-width: 24px; font-size: 10px; }
  .faq-question { font-size: 15px; }
  .faq-answer-wrap { padding: 0 14px 16px 14px; }
  .faq-answer { font-size: 14px; }
  .faq-page-btn { padding: 10px 14px; font-size: 13px; }
  .faq-page-status { min-width: auto; flex: 1 1 auto; }
}

.article-shell { background: linear-gradient(180deg, rgba(20,31,39,0.04) 0%, rgba(20,31,39,0) 100%); min-height: 100vh; }
.article-scene-shell { color: var(--text-body); }
.article-scene-shell .article-hero,
.article-scene-shell .hub-hero {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.article-scene-shell .article-hero {
  background: radial-gradient(circle at top right, rgba(46,196,160,0.14), transparent 34%), linear-gradient(180deg, rgba(20,31,39,0.88) 0%, rgba(19,36,45,0.8) 100%);
}
.article-scene-shell .hub-hero {
  background: radial-gradient(circle at top left, rgba(46,196,160,0.14), transparent 36%), linear-gradient(180deg, rgba(20,31,39,0.88) 0%, rgba(19,36,45,0.8) 100%);
}
.article-scene-shell .article-content,
.article-scene-shell .section.section-light {
  position: relative;
  z-index: 2;
  background: var(--off-white);
}
.article-scene-shell .article-footer-cta,
.article-scene-shell .hub-card,
.article-scene-shell .article-related-card,
.article-scene-shell .hub-resource-strip a {
  backdrop-filter: blur(12px);
}
.article-scene-shell .article-footer-cta {
  background: rgba(20,31,39,0.86);
  border: 1px solid rgba(255,255,255,0.06);
}
.article-scene-shell .hub-card,
.article-scene-shell .article-related-card {
  background: rgba(255,255,255,0.98);
}
.article-scene-shell .hub-resource-strip a {
  background: rgba(255,255,255,0.86);
}
.article-scene-shell .page-bottom-bar {
  position: relative;
  z-index: 2;
  background: rgba(20,31,39,0.86);
  backdrop-filter: blur(10px);
}
.article-scene-shell .nav-logo {
  gap: 12px;
}
.article-scene-shell .nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}
.article-hero {
  padding: 150px 5% 72px;
  background: radial-gradient(circle at top right, rgba(46,196,160,0.16), transparent 34%), linear-gradient(180deg, var(--navy-deep) 0%, #13242d 100%);
  color: var(--white);
}
.article-hero-inner, .article-content, .article-footer-cta, .hub-hero-inner, .insights-hub-grid { max-width: 980px; margin: 0 auto; }
.article-kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.72); margin-bottom: 22px; }
.article-kicker::before { content: ""; width: 26px; height: 1px; background: rgba(93,220,192,0.72); }
.article-title { font-size: clamp(40px, 7vw, 68px); line-height: 0.96; letter-spacing: -0.04em; margin-bottom: 18px; }
.article-subtitle { max-width: 760px; font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.72); }
.article-meta { margin-top: 24px; display: flex; gap: 14px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.56); }
.article-content { padding: 56px 5% 88px; }
.article-lead { font-size: 20px; line-height: 1.8; color: var(--text-dark); margin-bottom: 34px; }
.article-section { margin-bottom: 34px; }
.article-section h2 { font-size: clamp(28px, 3vw, 38px); line-height: 1.04; letter-spacing: -0.03em; color: var(--text-dark); margin-bottom: 14px; }
.article-section p, .article-section li { font-size: 16px; line-height: 1.85; color: var(--text-body); }
.article-section a,
.article-lead a,
.hub-section-copy a,
.hub-card p a,
.article-related-card p a {
  color: var(--teal-dark);
}
.article-section a:hover,
.article-lead a:hover,
.hub-section-copy a:hover,
.hub-card p a:hover,
.article-related-card p a:hover {
  color: var(--navy-deep);
}
.article-section ul, .article-section ol { padding-left: 22px; }
.article-callout { margin: 26px 0; padding: 22px 24px; border-radius: 18px; border: 1px solid rgba(46,196,160,0.22); background: linear-gradient(180deg, rgba(46,196,160,0.12) 0%, rgba(46,196,160,0.04) 100%); }
.article-callout strong { display: block; margin-bottom: 8px; font-size: 14px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dark); }
.article-callout p { margin: 0; }
.article-footer-cta { margin-top: 40px; padding: 28px; border-radius: 20px; background: var(--navy-deep); color: rgba(255,255,255,0.82); }
.article-footer-cta h2 { font-size: 30px; line-height: 1.08; color: var(--white); margin-bottom: 10px; }
.article-footer-cta p { margin-bottom: 18px; }
.article-resource-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.article-related { margin-top: 48px; }
.article-related h2 { font-size: clamp(28px, 3vw, 38px); line-height: 1.04; letter-spacing: -0.03em; color: var(--text-dark); margin-bottom: 18px; }
.article-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.article-related-card {
  display: block; text-decoration: none; color: inherit; background: rgba(255,255,255,0.96);
  border: 1px solid rgba(20,31,39,0.08); border-radius: 18px; padding: 24px;
  box-shadow: 0 16px 36px rgba(10,26,33,0.05); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.article-related-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(10,26,33,0.08); }
.article-related-card h3 { font-size: 22px; line-height: 1.14; color: var(--text-dark); margin: 12px 0 10px; }
.article-related-card p { font-size: 15px; line-height: 1.8; color: var(--text-body); }
.thank-you-panel { max-width: 980px; margin: 0 auto; }
.thank-you-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-bottom: 36px; }
.thank-you-card { background: rgba(255,255,255,0.96); border: 1px solid rgba(20,31,39,0.08); border-radius: 18px; padding: 24px; box-shadow: 0 16px 36px rgba(10,26,33,0.05); }
.thank-you-card strong { display: block; margin-bottom: 10px; font-size: 14px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dark); }
.thank-you-card p, .thank-you-card a { font-size: 15px; line-height: 1.8; color: var(--text-body); }
.thank-you-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hub-hero {
  padding: 150px 5% 68px;
  background: radial-gradient(circle at top left, rgba(46,196,160,0.16), transparent 36%), linear-gradient(180deg, var(--navy-deep) 0%, #13242d 100%);
  color: var(--white);
}
.hub-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.hub-grid-secondary { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 8px; }
.hub-section-head { margin: 0 0 22px; }
.hub-section-title { font-size: clamp(28px, 3vw, 38px); line-height: 1.04; letter-spacing: -0.03em; color: var(--text-dark); margin: 10px 0 10px; }
.hub-section-copy { max-width: 760px; font-size: 16px; line-height: 1.8; color: var(--text-body); }
.hub-card {
  display: block; border-radius: 22px; padding: 28px; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid rgba(20,31,39,0.08); box-shadow: 0 18px 36px rgba(10,26,33,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hub-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(10,26,33,0.08); border-color: rgba(46,196,160,0.24); }
.hub-card h2 { font-size: 28px; line-height: 1.08; color: var(--text-dark); margin: 14px 0 10px; }
.hub-card p { font-size: 15px; line-height: 1.8; color: var(--text-body); }
.hub-card-meta { margin-top: 18px; display: flex; justify-content: space-between; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(20,31,39,0.5); }
.article-scene-shell .article-content {
  color: var(--text-body) !important;
}
.article-scene-shell .article-content .article-lead,
.article-scene-shell .article-content .article-section p,
.article-scene-shell .article-content .article-section li,
.article-scene-shell .article-content .article-callout p,
.article-scene-shell .article-content .article-related-card p,
.article-scene-shell .article-content .thank-you-card p,
.article-scene-shell .article-content .thank-you-card a,
.article-scene-shell .section.section-light .hub-section-copy,
.article-scene-shell .section.section-light .hub-card p,
.article-scene-shell .section.section-light .hub-card a {
  color: var(--text-body) !important;
}
.article-scene-shell .article-content .article-section h2,
.article-scene-shell .article-content .article-callout strong,
.article-scene-shell .article-content .article-related h2,
.article-scene-shell .article-content .article-related-card h3,
.article-scene-shell .section.section-light .hub-section-title,
.article-scene-shell .section.section-light .hub-card h2 {
  color: var(--text-dark) !important;
}
.article-scene-shell .section.section-light .hub-card-meta {
  color: rgba(20,31,39,0.58) !important;
}
.article-scene-shell .article-content a,
.article-scene-shell .section.section-light .hub-section-copy a,
.article-scene-shell .section.section-light .hub-card p a,
.article-scene-shell .article-content .article-related-card p a {
  color: var(--teal-dark) !important;
}
.hub-resource-strip { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.hub-resource-strip a {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 16px;
  border-radius: 999px; border: 1px solid rgba(20,31,39,0.1); background: rgba(255,255,255,0.92);
  text-decoration: none; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dark);
}
.hub-resource-strip a:hover { border-color: rgba(46,196,160,0.28); background: #f7fffc; }

@media (max-width: 980px) {
  .faq-grid, .hub-grid, .hub-grid-secondary, .thank-you-grid, .article-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .article-hero, .hub-hero { padding-top: 128px; }
  .article-content { padding-top: 42px; }
  .article-footer-cta { padding: 22px; }
  .thank-you-actions { flex-direction: column; align-items: stretch; }
  .article-resource-actions, .hub-resource-strip { flex-direction: column; align-items: stretch; }
  .insights-resource-links { grid-template-columns: 1fr; }
}
