/* ============================================
   CYBERSUPREMACY AI — Revenue Intelligence
   Precision-engineered dark aesthetic
   ============================================ */

:root {
  --bg-0: #06060a;
  --bg-1: #0c0c10;
  --bg-2: #121216;
  --bg-3: #1a1a20;
  --bg-4: #222229;

  --text-0: #f0f0f2;
  --text-1: #b8b8c4;
  --text-2: #7a7a8a;
  --text-3: #4e4e5c;

  --accent-teal: #00d4aa;
  --accent-teal-dim: rgba(0, 212, 170, 0.10);
  --accent-teal-glow: rgba(0, 212, 170, 0.25);
  --accent-orange: #ff7a3d;
  --accent-orange-dim: rgba(255, 122, 61, 0.10);
  --accent-orange-glow: rgba(255, 122, 61, 0.25);

  --border: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(255, 255, 255, 0.10);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --container: 1200px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font-family: inherit; border: none; outline: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.mono { font-family: var(--font-mono); font-size: 0.85em; }
.accent { color: var(--accent-teal); }

/* ---- NOISE TEXTURE OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ---- SECTION STYLES ---- */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--text-3);
}
.section-label--teal { color: var(--accent-teal); }
.section-label--teal::before { background: var(--accent-teal); }
.section-label--orange { color: var(--accent-orange); }
.section-label--orange::before { background: var(--accent-orange); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--text-0);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  position: relative;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--text-0);
  color: var(--bg-0);
  font-weight: 600;
}
.btn--primary:hover {
  background: #fff;
  box-shadow: 0 0 40px rgba(255,255,255,0.12), 0 4px 20px rgba(255,255,255,0.08);
  transform: translateY(-1px);
}
.btn--ghost {
  border: 1px solid var(--border-hover);
  color: var(--text-1);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--text-3);
  color: var(--text-0);
  background: rgba(255,255,255,0.02);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-0);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-0);
  letter-spacing: 0.01em;
}
.nav__logo-icon { display: flex; }
.nav__logo-ai {
  color: var(--accent-teal);
  font-weight: 600;
  margin-left: 0;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__link {
  font-size: 0.82rem;
  color: var(--text-2);
  transition: color 0.25s;
  letter-spacing: 0.02em;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-0);
  transition: width 0.3s var(--ease);
}
.nav__link:hover { color: var(--text-0); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 20px;
  border: 1px solid var(--border-hover);
  border-radius: 5px;
  color: var(--text-1);
  transition: all 0.25s;
}
.nav__cta:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.08);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  width: 20px;
  height: 1.5px;
  background: var(--text-1);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-1);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 100px;
}
/* Subtle radial gradient atmosphere */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
}
.hero__content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  z-index: 2;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-teal);
  padding: 7px 18px;
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 100px;
  margin-bottom: 36px;
  background: rgba(0, 212, 170, 0.06);
  backdrop-filter: blur(8px);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 7.5vw, 5.2rem);
  color: var(--text-0);
  line-height: 1.15;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  padding-top: 0.05em;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--accent-teal) 0%, #00b4d8 50%, var(--accent-teal) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease-in-out infinite;
  padding-right: 0.05em;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 44px;
}
.hero__sub strong { color: var(--text-0); font-weight: 600; }
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  max-width: 540px;
  margin-bottom: 44px;
}
.hero__stat {
  background: var(--bg-1);
  padding: 28px 24px;
  text-align: center;
  position: relative;
}
.hero__stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,170,0.3), transparent);
}
.hero__stat-num {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--accent-teal);
}
.hero__stat-pct {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--accent-teal);
  opacity: 0.7;
}
.hero__stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-2);
  margin-top: 8px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .hero__stats { grid-template-columns: 1fr; }
  .hero { padding-top: 100px; }
}

/* ============ CHOOSER ============ */
.chooser {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.chooser__hint {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-3);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.chooser__hint::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-teal);
  display: inline-block;
  animation: hint-pulse 2s ease-in-out infinite;
}
@keyframes hint-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,212,170,0.3); }
  50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(0,212,170,0); }
}
.chooser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.chooser__card {
  background: var(--bg-1);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  text-align: left;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}
.chooser__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  transition: opacity 0.4s;
  opacity: 0;
}
.chooser__card[data-accent="teal"]::before {
  background: linear-gradient(90deg, var(--accent-teal), transparent);
}
.chooser__card[data-accent="orange"]::before {
  background: linear-gradient(90deg, transparent, var(--accent-orange));
}
.chooser__card--both::before {
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-orange));
}
.chooser__card:hover::before { opacity: 1; }
.chooser__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 56px rgba(0,0,0,0.4);
}
.chooser__card[data-accent="teal"]:hover {
  border-color: rgba(0, 212, 170, 0.2);
  box-shadow: 0 12px 48px rgba(0,0,0,0.35), 0 0 40px rgba(0, 212, 170, 0.06);
}
.chooser__card[data-accent="orange"]:hover {
  border-color: rgba(255, 122, 61, 0.2);
  box-shadow: 0 12px 48px rgba(0,0,0,0.35), 0 0 40px rgba(255, 122, 61, 0.06);
}
.chooser__card--both:hover {
  border-color: var(--border-hover);
  box-shadow: 0 12px 48px rgba(0,0,0,0.35), 0 0 40px rgba(0, 212, 170, 0.04), 0 0 40px rgba(255, 122, 61, 0.04);
}

/* Active/selected state */
.chooser__card:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}

.chooser__card--both {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
}
.chooser__card--both .chooser__card-text {
  margin-bottom: 0;
  flex: 1;
}
.chooser__card--both .chooser__card-solution {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

/* Radio selection indicator */
.chooser__card-radio {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  opacity: 0.5;
}
.chooser__card-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.25s var(--ease);
}
.chooser__card:hover .chooser__card-radio { opacity: 1; }
.chooser__card[data-accent="teal"]:hover .chooser__card-radio { border-color: var(--accent-teal); }
.chooser__card[data-accent="orange"]:hover .chooser__card-radio { border-color: var(--accent-orange); }
.chooser__card--both:hover .chooser__card-radio { border-color: var(--text-1); }
.chooser__card[data-accent="teal"]:hover .chooser__card-radio-dot { background: var(--accent-teal); transform: scale(1); }
.chooser__card[data-accent="orange"]:hover .chooser__card-radio-dot { background: var(--accent-orange); transform: scale(1); }
.chooser__card--both:hover .chooser__card-radio-dot { background: var(--text-1); transform: scale(1); }

/* Active/selected state */
.chooser__card--active .chooser__card-radio { opacity: 1; }
.chooser__card--active[data-accent="teal"] .chooser__card-radio { border-color: var(--accent-teal); }
.chooser__card--active[data-accent="orange"] .chooser__card-radio { border-color: var(--accent-orange); }
.chooser__card--active .chooser__card-radio-dot { transform: scale(1); }
.chooser__card--active[data-accent="teal"] .chooser__card-radio-dot { background: var(--accent-teal); }
.chooser__card--active[data-accent="orange"] .chooser__card-radio-dot { background: var(--accent-orange); }
.chooser__card--active.chooser__card--both .chooser__card-radio { border-color: var(--text-1); }
.chooser__card--active.chooser__card--both .chooser__card-radio-dot { background: var(--text-1); }

.chooser__card-icon {
  color: var(--text-3);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.chooser__card[data-accent="teal"]:hover .chooser__card-icon { color: var(--accent-teal); }
.chooser__card[data-accent="orange"]:hover .chooser__card-icon { color: var(--accent-orange); }
.chooser__card--both .chooser__card-icon { margin-bottom: 0; flex-shrink: 0; }
.chooser__card--both .chooser__card-radio { display: none; }

.chooser__card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-0);
  margin-bottom: 12px;
  line-height: 1.3;
}
.chooser__card--both .chooser__card-title { margin-bottom: 4px; }
.chooser__card-text {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.chooser__card-metric {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.chooser__card-metric-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 500;
}
.chooser__card[data-accent="teal"] .chooser__card-metric-num { color: var(--accent-teal); }
.chooser__card[data-accent="orange"] .chooser__card-metric-num { color: var(--accent-orange); }
.chooser__card-metric-dim {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-3);
}
.chooser__card-arrow {
  color: var(--text-3);
  margin: 0 4px;
}
.chooser__card-metric-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 6px;
}

.chooser__card-solution {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.chooser__card-solution-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.chooser__card[data-accent="teal"] .chooser__card-solution-name { color: var(--accent-teal); }
.chooser__card[data-accent="orange"] .chooser__card-solution-name { color: var(--accent-orange); }
.chooser__card--both .chooser__card-solution-name {
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.chooser__card-solution-arrow {
  font-size: 1.1rem;
  color: var(--text-3);
  transition: transform 0.3s var(--ease), color 0.3s;
}
.chooser__card:hover .chooser__card-solution-arrow {
  transform: translateX(4px);
  color: var(--text-1);
}

/* Dimmed product sections */
.product.dimmed {
  opacity: 0.15;
  pointer-events: none;
  max-height: 200px;
  overflow: hidden;
  transition: all 0.6s var(--ease);
  position: relative;
}
.product.dimmed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-0));
  pointer-events: none;
}
.product.highlighted {
  transition: all 0.6s var(--ease);
}

@media (max-width: 768px) {
  .chooser__grid { grid-template-columns: 1fr; }
  .chooser__card { padding: 28px; }
  .chooser__card--both {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 28px;
  }
  .chooser__card--both .chooser__card-icon { margin-bottom: 0; }
  .chooser__card--both .chooser__card-solution {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 12px;
    width: 100%;
  }
}

/* ============ PLATFORM ============ */
.platform {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

/* ---- Pipeline visualization ---- */
.pipeline {
  margin-bottom: 64px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 48px 28px;
  overflow: hidden;
  position: relative;
}
/* Subtle ambient glow */
.pipeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 25%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.pipeline::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 200px;
  height: 200px;
  transform: translate(-25%, -50%);
  background: radial-gradient(circle, rgba(255, 122, 61, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pipeline__zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.pipeline__zones::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--border);
}
.pipeline__zone {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
  border-bottom: 2px solid transparent;
}
.pipeline__zone--teal { border-bottom-color: var(--accent-teal); }
.pipeline__zone--orange { border-bottom-color: var(--accent-orange); }
.pipeline__zone-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.pipeline__zone--teal .pipeline__zone-name { color: var(--accent-teal); }
.pipeline__zone--orange .pipeline__zone-name { color: var(--accent-orange); }

/* Flow diagram — FIXED ALIGNMENT */
.pipeline__diagram {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 0 0 12px;
}

/* Nodes */
.pipeline__node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}
.pipeline__node--lead,
.pipeline__node--customer { width: 80px; }
.pipeline__node--qual { width: 60px; }

/* Visual part of the node (fixed height container) */
.pipeline__node-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  opacity: 0.25;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pipeline__node--lead .pipeline__node-ring,
.pipeline__node--customer .pipeline__node-ring {
  width: 72px;
  height: 72px;
  top: 0px;
}
.pipeline__node--qual .pipeline__node-ring {
  width: 40px;
  height: 40px;
  top: 16px;
}
.pipeline__node-ring--teal { border-color: var(--accent-teal); }
.pipeline__node-ring--orange { border-color: var(--accent-orange); }
.pipeline__node-ring--white { border-color: rgba(255, 255, 255, 0.2); }

.pipeline__node-core {
  position: relative;
  z-index: 2;
  border-radius: 50%;
}
.pipeline__node--lead .pipeline__node-core,
.pipeline__node--customer .pipeline__node-core {
  width: 40px;
  height: 40px;
  margin-top: 16px;
}
.pipeline__node--qual .pipeline__node-core {
  width: 24px;
  height: 24px;
  margin-top: 24px;
}
.pipeline__node-core--teal {
  background: radial-gradient(circle at 35% 35%, rgba(0,212,170,0.8), rgba(0,212,170,0.15));
  box-shadow:
    0 0 20px rgba(0,212,170,0.35),
    0 0 50px rgba(0,212,170,0.12),
    inset 0 0 10px rgba(0,212,170,0.2);
}
.pipeline__node-core--orange {
  background: radial-gradient(circle at 35% 35%, rgba(255,122,61,0.8), rgba(255,122,61,0.15));
  box-shadow:
    0 0 20px rgba(255,122,61,0.35),
    0 0 50px rgba(255,122,61,0.12),
    inset 0 0 10px rgba(255,122,61,0.2);
}
.pipeline__node-core--white {
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.55), rgba(255,255,255,0.08));
  box-shadow: 0 0 14px rgba(255,255,255,0.15), 0 0 30px rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
}

/* Pulse rings — centered on the core */
.pipeline__node-pulse {
  position: absolute;
  border-radius: 50%;
  top: 36px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.pipeline__node-pulse--teal {
  border: 1px solid var(--accent-teal);
  animation: node-pulse 3s ease-out infinite;
}
.pipeline__node-pulse--orange {
  border: 1px solid var(--accent-orange);
  animation: node-pulse 3s ease-out 1.5s infinite;
}
@keyframes node-pulse {
  0% { width: 40px; height: 40px; opacity: 0.5; }
  100% { width: 100px; height: 100px; opacity: 0; }
}

/* Node labels */
.pipeline__node-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
  gap: 2px;
}
.pipeline__node-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-1);
  font-weight: 500;
}
.pipeline__node-sub {
  font-size: 0.62rem;
  color: var(--text-3);
  white-space: nowrap;
}

/* Beams connecting nodes */
.pipeline__beam {
  flex: 1;
  position: relative;
  height: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}
.pipeline__beam-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}
.pipeline__beam--teal .pipeline__beam-line {
  background: linear-gradient(90deg, var(--accent-teal) 0%, rgba(255,255,255,0.1) 100%);
}
.pipeline__beam--orange .pipeline__beam-line {
  background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, var(--accent-orange) 100%);
}

.pipeline__beam-glow {
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 24px;
  pointer-events: none;
  border-radius: 12px;
}
.pipeline__beam--teal .pipeline__beam-glow {
  background: linear-gradient(90deg, rgba(0,212,170,0.08), transparent 80%);
}
.pipeline__beam--orange .pipeline__beam-glow {
  background: linear-gradient(90deg, transparent 20%, rgba(255,122,61,0.08));
}

/* Animated particles */
.pipeline__beam-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  filter: blur(0.5px);
}
.pipeline__beam--teal .pipeline__beam-particle {
  background: var(--accent-teal);
  box-shadow: 0 0 6px var(--accent-teal), 0 0 12px rgba(0,212,170,0.3);
  animation: particle-flow 3.5s linear infinite;
}
.pipeline__beam--orange .pipeline__beam-particle {
  background: var(--accent-orange);
  box-shadow: 0 0 6px var(--accent-orange), 0 0 12px rgba(255,122,61,0.3);
  animation: particle-flow 3.5s linear infinite;
}
.pipeline__beam-particle--1 { animation-delay: 0s !important; }
.pipeline__beam-particle--2 { animation-delay: -1.2s !important; }
.pipeline__beam-particle--3 { animation-delay: -2.4s !important; }

@keyframes particle-flow {
  0% { left: -2%; opacity: 0; }
  8% { opacity: 0.9; }
  85% { opacity: 0.4; }
  100% { left: 102%; opacity: 0; }
}

.pipeline__beam-label {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.78rem;
  color: var(--text-2);
  font-weight: 500;
  white-space: nowrap;
  background: none;
  padding: 0;
}

/* Bottom accent bars */
.pipeline__accents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 16px;
}
.pipeline__accent {
  height: 2px;
  border-radius: 2px;
}
.pipeline__accent--teal { background: linear-gradient(90deg, var(--accent-teal), transparent); }
.pipeline__accent--orange { background: linear-gradient(90deg, transparent, var(--accent-orange)); }

@media (max-width: 768px) {
  .pipeline { padding: 24px 16px 20px; }
  .pipeline__zones { margin-bottom: 28px; }
  .pipeline__zone-name { font-size: 0.72rem; letter-spacing: 0.1em; }
  .pipeline__node--lead,
  .pipeline__node--customer { width: 56px; }
  .pipeline__node--qual { width: 44px; }
  .pipeline__node--lead .pipeline__node-core,
  .pipeline__node--customer .pipeline__node-core { width: 32px; height: 32px; margin-top: 14px; }
  .pipeline__node--qual .pipeline__node-core { width: 18px; height: 18px; margin-top: 21px; }
  .pipeline__node--lead .pipeline__node-ring,
  .pipeline__node--customer .pipeline__node-ring { width: 52px; height: 52px; top: 0; }
  .pipeline__node--qual .pipeline__node-ring { width: 30px; height: 30px; top: 15px; }
  .pipeline__node-pulse { top: 30px; }
  @keyframes node-pulse {
    0% { width: 32px; height: 32px; opacity: 0.5; }
    100% { width: 72px; height: 72px; opacity: 0; }
  }
  .pipeline__beam { margin-top: 30px; }
  .pipeline__beam-label { font-size: 0.6rem; top: -24px; }
  .pipeline__beam-particle { width: 3px; height: 3px; }
  .pipeline__node-title { font-size: 0.56rem; }
  .pipeline__node-sub { font-size: 0.48rem; }
}

/* ---- Synergy cards ---- */
.platform__synergy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.platform__synergy-item {
  display: flex;
  gap: 16px;
  padding: 28px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.35s var(--ease);
}
.platform__synergy-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.platform__synergy-icon {
  font-size: 1.3rem;
  color: var(--text-3);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.platform__synergy-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.platform__synergy-item p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .platform__synergy { grid-template-columns: 1fr; }
}

/* ============ PRODUCT SECTIONS ============ */
.product {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.product--teal { background: linear-gradient(180deg, var(--bg-0) 0%, rgba(0, 212, 170, 0.015) 50%, var(--bg-0) 100%); }
.product--orange { background: linear-gradient(180deg, var(--bg-0) 0%, rgba(255, 122, 61, 0.015) 50%, var(--bg-0) 100%); }

/* Decorative side line */
.product--teal::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent-teal), transparent);
  opacity: 0.15;
}
.product--orange::before {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent-orange), transparent);
  opacity: 0.15;
}

.product__capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.product__cap {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.product__cap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0;
  transition: opacity 0.35s;
}
.product--teal .product__cap::before { background: linear-gradient(90deg, transparent, var(--accent-teal), transparent); }
.product--orange .product__cap::before { background: linear-gradient(90deg, transparent, var(--accent-orange), transparent); }
.product__cap:hover::before { opacity: 1; }
.product__cap:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.product__cap-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.product__cap-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.12em;
}
.product__cap-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-0);
}
.product__cap p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 20px;
}
.product__cap p strong { color: var(--text-0); }
.product__cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product__cap-tags span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  border: 1px solid var(--border);
  color: var(--text-3);
  transition: all 0.25s;
}
.product--teal .product__cap-tags span { background: var(--accent-teal-dim); border-color: rgba(0,212,170,0.06); color: var(--accent-teal); }
.product--orange .product__cap-tags span { background: var(--accent-orange-dim); border-color: rgba(255,122,61,0.06); color: var(--accent-orange); }
.product__cap:hover .product__cap-tags span {
  border-color: var(--border-hover);
}

.product__hitl {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s;
}
.product__hitl:hover { border-color: var(--border-hover); }
.product__hitl-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 14px;
  border: 1px solid var(--border-hover);
  border-radius: 4px;
  color: var(--text-2);
  white-space: nowrap;
  flex-shrink: 0;
}
.product__hitl p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .product__capabilities { grid-template-columns: 1fr; }
  .product__cap { padding: 24px; }
  .product__hitl { flex-direction: column; gap: 12px; }
}

/* ============ DASHBOARD MOCKUPS ============ */
.dashboard {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.4s;
}
.dashboard:hover {
  border-color: var(--border-hover);
}
.dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  border-radius: 14px 14px 0 0;
}
.dashboard__header-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard__header-period {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-3);
}
.dashboard__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.dashboard__dot--green { background: var(--accent-teal); box-shadow: 0 0 8px var(--accent-teal-glow); }
.dashboard__dot--orange { background: var(--accent-orange); box-shadow: 0 0 8px var(--accent-orange-glow); }

.dashboard__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dashboard__metrics-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.dashboard__metric-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  transition: border-color 0.3s;
}
.dashboard__metric-card:hover { border-color: var(--border-hover); }
.dashboard__metric-label {
  font-size: 0.68rem;
  color: var(--text-3);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dashboard__metric-value {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-0);
}
.dashboard__metric-change {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  margin-top: 4px;
  color: var(--text-3);
}
.dashboard__metric-change--up { color: var(--accent-teal); }
.dashboard__metric-change--down { color: var(--accent-teal); }

.dashboard__charts-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.dashboard__chart-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  min-width: 0;
}
.dashboard__chart-card--wide { grid-column: 1 / -1; }
.dashboard__chart-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

/* Funnel */
.dashboard__funnel { display: flex; flex-direction: column; gap: 8px; }
.dashboard__funnel-bar {
  height: 30px;
  width: var(--w);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  color: var(--text-0);
  position: relative;
  transition: width 1.2s var(--ease);
}
[data-accent="teal"] .dashboard__funnel-bar { background: var(--accent-teal-dim); border-left: 2px solid var(--accent-teal); }
[data-accent="orange"] .dashboard__funnel-bar { background: var(--accent-orange-dim); border-left: 2px solid var(--accent-orange); }
.dashboard__funnel-bar::before {
  content: attr(data-label);
  margin-right: 8px;
  color: var(--text-2);
}
.dashboard__funnel-bar::after {
  content: attr(data-val);
  color: var(--text-0);
  font-weight: 500;
}

/* Bars */
.dashboard__bars { display: flex; flex-direction: column; gap: 10px; }
.dashboard__bar-item {
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  gap: 10px;
  align-items: center;
}
.dashboard__bar-label {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  color: var(--text-3);
}
.dashboard__bar-track {
  height: 5px;
  background: rgba(255,255,255,0.03);
  border-radius: 3px;
  overflow: hidden;
}
.dashboard__bar-fill {
  height: 100%;
  width: var(--w);
  border-radius: 3px;
  transition: width 1.2s var(--ease);
}
[data-accent="teal"] .dashboard__bar-fill { background: var(--accent-teal); }
[data-accent="orange"] .dashboard__bar-fill { background: var(--accent-orange); }
.dashboard__bar-val {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  color: var(--text-2);
  text-align: right;
}

/* Table */
.dashboard__table { font-size: 0.75rem; }
.dashboard__table-head {
  display: grid;
  grid-template-columns: 1fr 80px 80px 50px;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
}
.dashboard__table-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px 50px;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.78rem;
  transition: background 0.2s;
}
.dashboard__table-row:hover { background: rgba(255,255,255,0.015); }
.dashboard__table-row:last-child { border-bottom: none; }

/* QA Rings */
.dashboard__qa {
  display: flex;
  gap: 32px;
  justify-content: center;
  padding: 12px 0;
}
.dashboard__qa-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.dashboard__qa-ring svg { width: 80px; height: 80px; }
.dashboard__qa-ring-val {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-0);
}
.dashboard__qa-ring-label {
  font-size: 0.67rem;
  color: var(--text-3);
}

/* Heatmap */
.dashboard__heatmap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--bg-4) transparent;
  padding-bottom: 8px;
}
.dashboard__heatmap-header,
.dashboard__heatmap-row {
  display: grid;
  grid-template-columns: 100px repeat(6, 1fr) 60px;
  gap: 4px;
  min-width: 550px;
}
.dashboard__heatmap-header {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-3);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.dashboard__heatmap-header span { text-align: center; }
.dashboard__heatmap-header span:first-child { text-align: left; }
.dashboard__heatmap-name {
  font-size: 0.72rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
}
.dashboard__heatmap-row { padding: 4px 0; }
.heat {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  border-radius: 4px;
  padding: 6px 4px;
}
.heat--none { background: rgba(255,255,255,0.015); color: var(--text-3); }
.heat--low { background: rgba(255, 122, 61, 0.06); color: rgba(255, 122, 61, 0.65); }
.heat--med { background: rgba(255, 122, 61, 0.15); color: var(--accent-orange); }
.heat--high { background: rgba(255, 122, 61, 0.28); color: #ffaa80; }
.heat--total { font-weight: 500; }

/* Sparklines */
.dashboard__sparklines { display: flex; flex-direction: column; gap: 16px; }
.dashboard__sparkline-row {
  display: grid;
  grid-template-columns: 120px 1fr 70px;
  gap: 12px;
  align-items: center;
}
.dashboard__sparkline-label { font-size: 0.68rem; color: var(--text-3); }
.dashboard__sparkline { height: 30px; }
.dashboard__sparkline svg { width: 100%; height: 100%; }
.dashboard__sparkline-val {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-align: right;
}
.dashboard__sparkline-val.up { color: var(--accent-teal); }
.dashboard__sparkline-val.down { color: var(--accent-orange); }

/* Reduction */
.dashboard__reduction { display: flex; flex-direction: column; gap: 12px; }
.dashboard__reduction-item {
  display: grid;
  grid-template-columns: 140px 1fr 50px;
  gap: 10px;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-2);
}
.dashboard__reduction-bar {
  height: 7px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.dashboard__reduction-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--w);
  border-radius: 4px;
  background: rgba(255, 122, 61, 0.12);
}
.dashboard__reduction-fill--after {
  background: var(--accent-teal);
  z-index: 2;
}

@media (max-width: 768px) {
  .dashboard__metrics-row { grid-template-columns: repeat(2, 1fr); }
  .dashboard__metrics-row .dashboard__metric-card:last-child { grid-column: 1 / -1; }
  .dashboard__charts-row { grid-template-columns: 1fr; }
  .dashboard__chart-card--wide { grid-column: auto; }
  .dashboard__funnel-bar { font-size: 0.58rem; height: 26px; }
  .dashboard__sparkline-row { grid-template-columns: 80px 1fr 60px; }
  .dashboard__reduction-item { grid-template-columns: 100px 1fr 44px; }
  /* Heatmap: wider min-width so it scrolls properly with readable text */
  .dashboard__heatmap-header,
  .dashboard__heatmap-row {
    min-width: 640px;
    grid-template-columns: 90px repeat(6, 1fr) 56px;
  }
  .dashboard__heatmap-header { font-size: 0.52rem; }
  .dashboard__heatmap-name { font-size: 0.65rem; }
  .heat { font-size: 0.6rem; padding: 5px 3px; }
}

/* ============ SYNERGY (ALONE VS TOGETHER) ============ */
.synergy {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.synergy__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.synergy__col {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.synergy__col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0.7;
}
.synergy__col--teal::before { background: var(--accent-teal); }
.synergy__col--orange::before { background: var(--accent-orange); }
.synergy__col--combined::before { background: linear-gradient(90deg, var(--accent-teal), var(--accent-orange)); }
.synergy__col:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.synergy__col--combined {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
}

.synergy__col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.synergy__col-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-0);
}
.synergy__col-icon { color: var(--text-3); flex-shrink: 0; }
.synergy__col--teal .synergy__col-icon { color: var(--accent-teal); }
.synergy__col--orange .synergy__col-icon { color: var(--accent-orange); }

.synergy__col-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 28px;
  flex: 1;
}

.synergy__col-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.synergy__metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.synergy__metric-val {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-0);
  min-width: 70px;
}
.synergy__col--teal .synergy__metric-val { color: var(--accent-teal); }
.synergy__col--orange .synergy__metric-val { color: var(--accent-orange); }
.synergy__metric--hero .synergy__metric-val {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.synergy__metric-label {
  font-size: 0.78rem;
  color: var(--text-3);
}

.synergy__col-bonus {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.6;
}
.synergy__col-bonus span {
  font-weight: 600;
  color: var(--text-0);
}

.synergy__col-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s var(--ease);
}
.synergy__col-cta--teal { color: var(--accent-teal); }
.synergy__col-cta--orange { color: var(--accent-orange); }
.synergy__col-cta--combined {
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.synergy__col-cta:hover { gap: 12px; }

@media (max-width: 768px) {
  .synergy__columns { grid-template-columns: 1fr; }
  .synergy__col { padding: 28px; }
}

/* ============ RESULTS ============ */
.results {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 56px;
}
.results__stat {
  background: var(--bg-1);
  padding: 52px 32px;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
.results__stat:hover { background: var(--bg-2); }
.results__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.results__stat:nth-child(1) .results__stat-num,
.results__stat:nth-child(2) .results__stat-num,
.results__stat:nth-child(3) .results__stat-num,
.results__stat:nth-child(4) .results__stat-num { color: var(--accent-teal); }
.results__stat-label {
  font-size: 0.85rem;
  color: var(--text-2);
}
.results__quote {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 640px;
}
.results__quote-line {
  width: 3px;
  min-height: 60px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, var(--accent-teal), var(--accent-orange));
  border-radius: 2px;
}
.results__quote p {
  font-size: 1.08rem;
  color: var(--text-1);
  line-height: 1.75;
  font-style: italic;
}

@media (max-width: 768px) {
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .results__stat { padding: 36px 20px; }
}
@media (max-width: 480px) {
  .results__grid { grid-template-columns: 1fr; }
}

/* ============ ARCHITECTURE ============ */
.arch {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.arch__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.arch__item {
  padding: 32px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.arch__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.arch__item:hover::before { opacity: 1; }
.arch__item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.arch__item-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-0);
  margin-bottom: 10px;
}
.arch__item p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .arch__grid { grid-template-columns: 1fr; }
}

/* ============ CTA ============ */
.cta {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Ambient glow behind CTA */
.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--text-0);
  margin-bottom: 16px;
  position: relative;
}
.cta__sub {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 44px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta__form {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto 24px;
  position: relative;
}
.cta__input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-0);
  font-size: 0.92rem;
  transition: all 0.25s;
}
.cta__input::placeholder { color: var(--text-3); }
.cta__input:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.08);
}
.cta__btn { flex-shrink: 0; }
.cta__alt {
  font-size: 0.82rem;
  color: var(--text-3);
  position: relative;
}
.cta__alt a {
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: all 0.25s;
}
.cta__alt a:hover {
  color: var(--accent-teal);
  border-bottom-color: var(--accent-teal);
}

@media (max-width: 480px) {
  .cta__form { flex-direction: column; }
}

/* ============ FOOTER ============ */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-0);
}
.footer__copy {
  font-size: 0.75rem;
  color: var(--text-3);
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.dashboard__dot--green,
.dashboard__dot--orange {
  animation: pulse-dot 2.5s ease-in-out infinite;
}
