/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #060d1f;
  --bg-secondary: #0a1228;
  --bg-card: rgba(10, 18, 40, 0.8);
  --bg-card-hover: rgba(16, 28, 56, 0.9);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text-primary: #f0f0f2;
  --text-secondary: rgba(255, 255, 255, 0.86);
  --text-muted: rgba(255, 255, 255, 0.72);
  --accent-cyan: #00b7ff;
  --accent-cyan-glow: rgba(0, 183, 255, 0.4);
  --accent-cyan-dim: rgba(0, 183, 255, 0.12);
  --accent-mint: #00ffd1;
  --accent-mint-dim: rgba(0, 255, 209, 0.12);
  --accent-green: #5cff8f;
  --accent-green-dim: rgba(92, 255, 143, 0.12);
  --accent-orange: #f59e0b;
  --accent-orange-dim: rgba(245, 158, 11, 0.12);
  --accent-purple: #a78bfa;
  --accent-purple-dim: rgba(167, 139, 250, 0.12);
  --font-sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'SF Mono', 'Fira Code', monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --container-max: 1200px;
  --px: clamp(16px, 3vw, 32px);
  --section-y: clamp(56px, 8vw, 96px);
  --brand: #00b7ff;
  --brand-2: #00ffd1;
  --ink-1: #eef6ff;
  --ink-3: #bdd0ec;
  --shadow-soft: 0 20px 44px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 26px 56px rgba(0, 0, 0, 0.34);
  --radius-pill: 999px;
  --radius-card: 20px;
  --radius-panel: 24px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.68;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
}

body::before,
body::after,
.ambient-burst::before,
.ambient-burst::after {
  content: "";
  position: fixed;
  inset: -12%;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(0, 183, 255, 0.18), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(0, 255, 209, 0.12), transparent 22%),
    radial-gradient(circle at 54% 82%, rgba(0, 183, 255, 0.1), transparent 24%);
  filter: blur(48px);
  animation: dcAmbientFloat 18s ease-in-out infinite alternate;
}

body::after {
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.04), transparent 26%, transparent 74%, rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 42%);
  opacity: 0.38;
  mix-blend-mode: screen;
  animation: dcAmbientShift 24s linear infinite;
}

@keyframes dcAmbientFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, -1.5%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(-2%, 2%, 0) scale(1.06);
  }
}

@keyframes dcAmbientShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-3%, 2%, 0);
  }
}

.ambient-burst {
  position: fixed;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}

.ambient-burst::before {
  inset: auto;
  left: 50%;
  top: 92px;
  width: min(78vw, 1040px);
  height: min(78vw, 1040px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 238, 255, 0.36) 0%, rgba(84, 189, 255, 0.19) 18%, rgba(0, 183, 255, 0.09) 34%, transparent 58%);
  filter: blur(34px);
  opacity: 0.96;
  animation: dcBurstBreathe 8s ease-in-out infinite;
}

.ambient-burst::after {
  inset: auto;
  left: 50%;
  top: 138px;
  width: min(60vw, 760px);
  height: min(60vw, 760px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(209, 239, 255, 0.16) 15%, rgba(0, 183, 255, 0.07) 35%, transparent 56%);
  mix-blend-mode: screen;
  filter: blur(22px);
  opacity: 0.88;
  animation: dcBurstPulse 6s ease-in-out infinite;
}

@keyframes dcBurstBreathe {
  0%, 100% {
    transform: translateX(-50%) scale(0.96);
    opacity: 0.72;
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    opacity: 0.96;
  }
}

@keyframes dcBurstPulse {
  0%, 100% {
    transform: translateX(-50%) scale(0.98);
    opacity: 0.66;
  }
  50% {
    transform: translateX(-50%) scale(1.08);
    opacity: 0.92;
  }
}

main,
footer {
  position: relative;
  z-index: 20;
}

h1, h2, h3, h4, .nav-logo, .hero-card-tag, .proof-case-metric, .case-metric, .stat-value {
  font-family: var(--font-display);
}

.btn {
  font-family: var(--font-sans);
}

body.menu-open { overflow: hidden; }

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

.container {
  width: min(var(--container-max), calc(100% - 2 * var(--px)));
  margin-inline: auto;
  max-width: calc(100% - 2 * var(--px));
}

/* ===== CANVAS LAYERS ===== */
.grain-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

.particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(circle, rgba(0, 183, 255, 0.07) 0%, rgba(0, 255, 209, 0.03) 30%, transparent 70%);
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  transition: opacity 0.4s ease;
}

.cursor-glow.active { opacity: 1; }

/* ===== SHIMMER BORDER ===== */
.shimmer-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.shimmer-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--shimmer-angle, 0deg) at 50% 50%,
    transparent 0%,
    transparent 25%,
    rgba(0, 183, 255, 0.5) 30%,
    rgba(0, 255, 209, 0.5) 35%,
    transparent 40%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: shimmerRotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

*:hover > .shimmer-border::before {
  opacity: 1;
}

.shimmer-mint::before {
  background: conic-gradient(
    from var(--shimmer-angle, 0deg) at 50% 50%,
    transparent 0%, transparent 25%,
    rgba(0, 255, 209, 0.5) 30%, rgba(92, 255, 143, 0.5) 35%,
    transparent 40%, transparent 100%
  );
}

.shimmer-green::before {
  background: conic-gradient(
    from var(--shimmer-angle, 0deg) at 50% 50%,
    transparent 0%, transparent 25%,
    rgba(92, 255, 143, 0.5) 30%, rgba(0, 255, 209, 0.5) 35%,
    transparent 40%, transparent 100%
  );
}

.shimmer-orange::before {
  background: conic-gradient(
    from var(--shimmer-angle, 0deg) at 50% 50%,
    transparent 0%, transparent 25%,
    rgba(245, 158, 11, 0.5) 30%, rgba(249, 115, 22, 0.5) 35%,
    transparent 40%, transparent 100%
  );
}

.shimmer-purple::before {
  background: conic-gradient(
    from var(--shimmer-angle, 0deg) at 50% 50%,
    transparent 0%, transparent 25%,
    rgba(167, 139, 250, 0.5) 30%, rgba(139, 92, 246, 0.5) 35%,
    transparent 40%, transparent 100%
  );
}

@property --shimmer-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes shimmerRotate {
  to { --shimmer-angle: 360deg; }
}

/* ===== SHIMMER TEXT ===== */
.shimmer-text {
  background: linear-gradient(
    110deg,
    var(--text-muted) 0%,
    var(--text-muted) 40%,
    rgba(255, 255, 255, 0.8) 50%,
    var(--text-muted) 60%,
    var(--text-muted) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shineLeftToRight 4s ease-in-out infinite;
}

@keyframes shineLeftToRight {
  0% { background-position-x: 100%; }
  100% { background-position-x: -100%; }
}

/* ===== CARD RADAR SWEEP ===== */
.card-radar {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.card-radar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0%,
    transparent 70%,
    rgba(0, 183, 255, 0.04) 80%,
    rgba(0, 183, 255, 0.08) 90%,
    transparent 100%
  );
  animation: radarSweep 6s linear infinite;
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

/* ===== DIFF RADAR ===== */
.diff-radar {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.diff-radar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 209, 0.06), transparent);
  animation: diffRadar 3s ease-in-out infinite;
}

@keyframes diffRadar {
  0% { left: -50%; opacity: 0; }
  15% { opacity: 0.8; }
  100% { left: 150%; opacity: 0; }
}

/* ===== NAVIGATION ===== */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px var(--px);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(6, 13, 31, 0.75);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 620;
  font-size: 18px;
  letter-spacing: -0.025em;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  position: relative;
}

.nav-utility-controls {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(9, 18, 34, 0.82), rgba(6, 12, 24, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 8px 22px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
}

.nav-utility-controls::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(132, 223, 255, 0.08), rgba(255, 255, 255, 0.01) 42%, rgba(155, 255, 220, 0.04));
  opacity: 0.72;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.nav-utility-controls::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 1px;
  height: 42%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  opacity: 0.55;
  pointer-events: none;
}

.nav-utility-btn {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font: 600 0.76rem/1 var(--font-sans);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background 0.24s var(--ease-premium),
    color 0.24s var(--ease-premium),
    transform 0.24s var(--ease-premium),
    box-shadow 0.24s var(--ease-premium);
  box-shadow: none;
}

.nav-utility-btn--switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-utility-switch__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  min-width: 76px;
  height: 34px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(4, 10, 20, 0.54);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition:
    background 0.24s var(--ease-premium),
    box-shadow 0.24s var(--ease-premium);
}

.nav-utility-switch__track--lang {
  min-width: 88px;
}

.nav-utility-switch__indicator {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(28, 45, 70, 0.94), rgba(14, 24, 40, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 14px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.24s var(--ease-premium),
    background 0.24s var(--ease-premium),
    box-shadow 0.24s var(--ease-premium);
}

.nav-utility-switch__option {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
  color: rgba(220, 232, 247, 0.48);
  transition:
    color 0.24s var(--ease-premium),
    opacity 0.24s var(--ease-premium);
}

.nav-utility-switch__option--lang {
  font: 700 0.68rem/1 var(--font-sans);
  letter-spacing: 0.08em;
}

.nav-utility-switch__glyph {
  position: relative;
  display: block;
  flex: 0 0 auto;
}

.nav-utility-switch__glyph--moon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 34%, rgba(245, 249, 255, 1) 0%, rgba(218, 230, 248, 0.98) 58%, rgba(194, 210, 233, 0.95) 100%);
  box-shadow:
    3px 0 0 0 rgba(7, 17, 31, 0.88) inset,
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotate(-18deg);
}

.nav-utility-switch__glyph--sun {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 232, 123, 1) 0%, rgba(255, 196, 71, 0.98) 62%, rgba(255, 163, 43, 0.94) 100%);
  box-shadow: 0 0 0 1px rgba(255, 219, 122, 0.12);
}

.nav-utility-switch__glyph--sun::before,
.nav-utility-switch__glyph--sun::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 206, 92, 0.56);
}

.nav-utility-switch__glyph--sun::after {
  inset: -7px;
  opacity: 0.3;
}

.nav-utility-btn:hover {
  transform: translateY(-1px);
}

.nav-utility-btn:hover .nav-utility-switch__track {
  background: rgba(5, 12, 24, 0.64);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 8px 18px rgba(0, 0, 0, 0.14);
}

.nav-utility-btn:active {
  transform: translateY(0);
}

.nav-utility-btn:active .nav-utility-switch__indicator {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.16);
}

.nav-utility-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(126, 220, 255, 0.22),
    0 10px 18px rgba(0, 0, 0, 0.12);
}

.nav-utility-btn--switch.is-active {
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.nav-utility-btn--theme[data-theme-mode="night"] .nav-utility-switch__indicator,
.nav-utility-btn--lang[data-language="en"] .nav-utility-switch__indicator {
  transform: translateX(0);
}

.nav-utility-btn--theme[data-theme-mode="day"] .nav-utility-switch__indicator,
.nav-utility-btn--lang[data-language="es"] .nav-utility-switch__indicator {
  transform: translateX(calc(100% - 0px));
}

.nav-utility-btn--theme[data-theme-mode="night"] .nav-utility-switch__option--moon,
.nav-utility-btn--theme[data-theme-mode="day"] .nav-utility-switch__option--sun,
.nav-utility-btn--lang[data-language="en"] .nav-utility-switch__option--en,
.nav-utility-btn--lang[data-language="es"] .nav-utility-switch__option--es {
  color: rgba(244, 250, 255, 0.98);
}

.nav-utility-btn--theme[data-theme-mode="day"] .nav-utility-switch__indicator {
  background: linear-gradient(180deg, rgba(78, 58, 24, 0.94), rgba(55, 40, 17, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 170, 0.12),
    0 6px 14px rgba(0, 0, 0, 0.22);
}

.nav-utility-btn--lang[data-language="es"] .nav-utility-switch__indicator {
  background: linear-gradient(180deg, rgba(26, 57, 54, 0.96), rgba(13, 34, 32, 0.94));
}

.nav-utility-btn--theme[data-theme-mode="night"] .nav-utility-switch__option--moon .nav-utility-switch__glyph--moon,
.nav-utility-btn--theme[data-theme-mode="day"] .nav-utility-switch__option--sun .nav-utility-switch__glyph--sun {
  filter: brightness(1.05);
}

.nav-utility-btn--lang[data-language="en"] .nav-utility-btn__lang-code--en,
.nav-utility-btn--lang[data-language="es"] .nav-utility-btn__lang-code--es {
  color: rgba(243, 250, 255, 0.98);
  text-shadow: 0 0 14px rgba(150, 219, 255, 0.26);
  transform: translateY(-0.5px);
}

.nav-link {
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: color 0.2s ease, opacity 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  opacity: 0.9;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-mint));
  transition: width 0.3s ease;
}

.nav-link:hover { color: var(--text-primary); opacity: 1; }
.nav-link:hover::after { width: 100%; }

.nav-link:focus-visible {
  outline: 2px solid rgba(0, 183, 255, 0.75);
  outline-offset: 2px;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  color: var(--text-primary);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn:focus-visible {
  outline: 2px solid rgba(0, 183, 255, 0.8);
  outline-offset: 2px;
}

.btn::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.btn:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.btn:active {
  transform: translateY(1px) scale(0.985);
  transition-duration: 0.08s;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 10px 20px;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:active {
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.12);
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-mint));
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.3s ease;
}

.btn-glow:hover::before { opacity: 0.6; }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 20px;
  border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-secondary:active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-nav { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-md); }
.btn-xl { padding: 18px 40px; font-size: 16px; border-radius: var(--radius-md); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 140px var(--px) 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-lights {
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 900px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

.hero-light {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.hero-light-1 {
  background: conic-gradient(
    from 180deg at 50% 40%,
    transparent 0deg,
    transparent 140deg,
    rgba(0, 183, 255, 0.12) 160deg,
    rgba(0, 183, 255, 0.18) 180deg,
    rgba(0, 183, 255, 0.12) 200deg,
    transparent 220deg,
    transparent 360deg
  );
  animation: lightBeam1 8s ease-in-out infinite;
}

.hero-light-2 {
  background: conic-gradient(
    from 180deg at 50% 40%,
    transparent 0deg,
    transparent 200deg,
    rgba(0, 255, 209, 0.1) 220deg,
    rgba(0, 255, 209, 0.16) 240deg,
    rgba(0, 255, 209, 0.1) 260deg,
    transparent 280deg,
    transparent 360deg
  );
  animation: lightBeam2 8s ease-in-out infinite 1s;
}

.hero-light-3 {
  background: conic-gradient(
    from 180deg at 50% 40%,
    transparent 0deg,
    transparent 100deg,
    rgba(92, 255, 143, 0.08) 120deg,
    rgba(92, 255, 143, 0.14) 140deg,
    rgba(92, 255, 143, 0.08) 160deg,
    transparent 180deg,
    transparent 360deg
  );
  animation: lightBeam3 8s ease-in-out infinite 2s;
}

@keyframes lightBeam1 {
  0%, 100% { opacity: 0; }
  10%, 30% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes lightBeam2 {
  0%, 100% { opacity: 0; }
  15%, 35% { opacity: 1; }
  55% { opacity: 0; }
}

@keyframes lightBeam3 {
  0%, 100% { opacity: 0; }
  20%, 40% { opacity: 1; }
  60% { opacity: 0; }
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 700px at 50% 30%, rgba(6, 13, 31, 0.12) 20%, var(--bg-primary) 74%);
  pointer-events: none;
  z-index: 0;
}

/* Hero reveal animations */
.hero-reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
  animation: heroReveal 0.8s ease-out forwards;
  animation-delay: calc(var(--delay) * 0.12s + 0.1s);
  position: relative;
  z-index: 3;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  border-radius: 100px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.hero-badge:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-1px) !important;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan-glow);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 28px rgba(0, 0, 0, 0.42);
}

.hero-title-line { display: block; }

.gradient-text {
  background: linear-gradient(135deg, #00b7ff 0%, #00ffd1 40%, #5cff8f 80%, #00b7ff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
}

.gradient-text-inline {
  background: linear-gradient(135deg, #00b7ff 0%, #00ffd1 40%, #5cff8f 80%, #00b7ff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(17px, 2vw, 19px);
  color: #e4f0ff;
  max-width: 34ch;
  margin-bottom: 28px;
  line-height: 1.72;
  font-weight: 700;
}

.hero-cta {
  margin-bottom: 54px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stat {
  padding: 16px 16px 15px;
  border-radius: 18px;
  border: 1px solid rgba(84, 127, 203, 0.22);
  background: linear-gradient(160deg, rgba(8, 20, 43, 0.78), rgba(11, 29, 61, 0.62));
  box-shadow: var(--shadow-soft);
}

.hero-stat strong {
  display: block;
  color: var(--ink-1);
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.hero-stat span {
  display: block;
  color: #d2e2fb;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Hero Card */
.hero-card {
  position: relative;
  width: 100%;
  max-width: 760px;
  border-radius: 24px;
  border: 1px solid rgba(84, 127, 203, 0.22);
  background: linear-gradient(180deg, rgba(8, 20, 43, 0.92), rgba(9, 21, 46, 0.78));
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.3s ease;
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
}

.hero-card:hover { border-color: var(--border-hover); }

.hero-card-content {
  padding: 18px 18px 26px;
  position: relative;
  z-index: 3;
}

.hero-card-windowbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-card-windowbar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.hero-card-windowbar span:nth-child(1) { background: #ff6b6b; }
.hero-card-windowbar span:nth-child(2) { background: #ffd166; }
.hero-card-windowbar span:nth-child(3) { background: #5cff8f; }

.hero-card-windowbar strong {
  margin-left: auto;
  color: rgba(232, 241, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card-header {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
}

.hero-card-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--accent-green);
  font-weight: 500;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px rgba(92, 255, 143, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

/* Dashboard Mockup */
.dashboard-mockup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-app-shell {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.hero-app-sidebar {
  display: grid;
  gap: 8px;
  align-content: start;
}

.hero-app-sidebar-item {
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(232, 241, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
}

.hero-app-sidebar-item-active {
  color: var(--ink-1);
  background: linear-gradient(135deg, rgba(8, 29, 56, 0.92), rgba(9, 21, 46, 0.7));
  border: 1px solid rgba(80, 208, 255, 0.18);
}

.hero-app-main {
  display: grid;
  gap: 10px;
}

.hero-app-topbar,
.hero-app-activity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-app-topbar {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(232, 241, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-app-topbar strong {
  color: #9dffbc;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-app-activity {
  display: grid;
  gap: 8px;
}

.hero-app-activity-row {
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(232, 241, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-app-activity-row strong {
  color: var(--ink-1);
  font-size: 0.78rem;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dashboard-kpi {
  padding: 14px 16px 13px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kpi-label {
  font-size: 10px;
  color: rgba(232, 241, 255, 0.56);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kpi-value {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.kpi-value.accent { color: var(--accent-cyan); }
.kpi-value.success { color: var(--accent-green); }

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
}

.mini-bar {
  flex: 1;
  height: var(--h);
  border-radius: 2px;
  background: linear-gradient(to top, rgba(0, 183, 255, 0.3), rgba(0, 183, 255, 0.1));
  transition: all 0.3s ease;
}

.mini-bar.active {
  background: linear-gradient(to top, var(--accent-cyan), rgba(0, 183, 255, 0.4));
  box-shadow: 0 0 10px rgba(0, 183, 255, 0.2);
}

.hero-conversation-strip {
  display: grid;
  gap: 8px;
}

.hero-message {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-message-inbound {
  justify-self: start;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(232, 241, 255, 0.8);
}

.hero-message-ai {
  justify-self: end;
  background: linear-gradient(135deg, rgba(14, 60, 95, 0.9), rgba(8, 29, 56, 0.7));
  border-color: rgba(80, 208, 255, 0.2);
  color: var(--ink-1);
}

.hero-message-booked {
  justify-self: start;
  background: linear-gradient(135deg, rgba(12, 45, 33, 0.86), rgba(7, 28, 23, 0.72));
  border-color: rgba(92, 255, 143, 0.18);
  color: #d8ffe5;
}

.dashboard-note {
  font-size: 13px;
  color: #d8ecff;
  font-style: normal;
  font-weight: 600;
  padding: 0 4px;
}

.hero-live-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.hero-live-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.hero-live-card-accent {
  background: linear-gradient(165deg, rgba(8, 29, 56, 0.9), rgba(9, 21, 46, 0.68));
  border-color: rgba(80, 208, 255, 0.2);
}

.hero-live-label {
  color: #9fe6ff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-live-card strong {
  color: var(--ink-1);
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero-live-card p {
  color: rgba(232, 241, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 600;
}

/* Resolution Stats */
.resolution-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.stat-item { display: flex; flex-direction: column; gap: 2px; flex: 1; text-align: center; }
.stat-label { font-size: 11px; font-weight: 500; color: var(--text-muted); }
.stat-value { font-size: 18px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.stat-value.accent { color: var(--accent-cyan); }
.stat-divider { width: 1px; height: 32px; background: var(--border-color); }

/* ===== SCROLL REVEAL ===== */
.reveal-up,
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(2px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, filter 0.7s ease-out;
}

.reveal-up.visible,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.integration-card.reveal-up {
  transition-delay: calc(var(--i) * 0.06s);
}

/* Offer Clarity Block */
.offer {
  margin-top: 84px;
}

.offer-head,
.after-head {
  max-width: 70ch;
  margin-bottom: 18px;
}

.offer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #66d0ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.offer-sub {
  color: var(--ink-3);
  margin: 10px 0 0;
  font-size: 1.02rem;
}

/* 3-card grid */
.offer-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.offer-card {
  background: linear-gradient(165deg, rgba(9, 21, 46, 0.86), rgba(9, 21, 46, 0.72));
  border: 1px solid rgba(67, 116, 187, 0.38);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(100, 255, 226, 0.16), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.35);
}

.offer-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #e9f7ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  background: rgba(17, 53, 108, 0.6);
  border: 1px solid rgba(80, 208, 255, 0.35);
}

.offer-card h3 {
  margin: 0;
  color: var(--ink-1);
  font-size: 1.05rem;
  line-height: 1.15;
}

.offer-card p {
  margin: 0;
  color: var(--ink-3);
  position: relative;
  z-index: 1;
}

/* Built-for strip */
.offer-strip {
  margin-top: 16px;
  background: linear-gradient(140deg, rgba(8, 20, 43, 0.86), rgba(11, 29, 61, 0.74));
  border: 1px solid rgba(84, 127, 203, 0.34);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 18px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 1fr;
}

.offer-strip-copy h3 {
  margin: 0 0 6px;
  color: var(--ink-1);
  font-size: 1.1rem;
}

.offer-strip-copy p {
  margin: 0;
  color: var(--ink-3);
}

.offer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
  justify-content: flex-end;
}

.offer-chips span {
  background: rgba(17, 53, 108, 0.6);
  border: 1px solid #2d5da1;
  border-radius: 999px;
  color: #cfe8ff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 10px;
}

/* After booking */
.after {
  margin-top: 18px;
}

.after-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.after-step {
  background: linear-gradient(165deg, rgba(8, 22, 48, 0.86), rgba(8, 22, 48, 0.74));
  border: 1px solid rgba(67, 116, 187, 0.38);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.after-step::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 70% 10%, rgba(27, 180, 255, 0.18), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.after-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.35);
}

.after-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7ad9ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.after-meta {
  color: #9dbce2;
  font-weight: 500;
  font-size: 0.95em;
}

.after-step h3 {
  margin: 0 0 8px;
  color: var(--ink-1);
}

.after-step p {
  margin: 0;
  color: var(--ink-3);
}

/* ===== FEATURE SECTIONS ===== */
.feature-section {
  padding: var(--section-y) var(--px);
}

.feature-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.feature-tab:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.feature-tab.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.03);
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-content-reverse { direction: rtl; }
.feature-content-reverse > * { direction: ltr; }

.feature-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 22px rgba(0, 0, 0, 0.34);
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--accent-cyan-dim);
}

.section-label.label-mint { color: var(--accent-mint); background: var(--accent-mint-dim); }
.section-label.label-green { color: var(--accent-green); background: var(--accent-green-dim); }
.section-label.label-orange { color: var(--accent-orange); background: var(--accent-orange-dim); }
.section-label.label-purple { color: var(--accent-purple); background: var(--accent-purple-dim); }

.text-muted { color: var(--text-secondary); }
.text-muted { font-weight: 560; }

/* Feature Visual */
.feature-visual {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  min-height: 380px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.3s ease;
  backdrop-filter: blur(8px);
}

.feature-visual:hover { border-color: var(--border-hover); }

.card-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Impact Map */
.impact-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.node {
  position: absolute;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  z-index: 1;
  backdrop-filter: blur(8px);
}

.node:hover {
  border-color: var(--accent-cyan);
  color: var(--text-primary);
  background: var(--accent-cyan-dim);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 183, 255, 0.15);
}

.node-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-cyan-dim);
  border-color: rgba(0, 183, 255, 0.3);
  color: var(--text-primary);
}

.node-center:hover { transform: translate(-50%, -50%) scale(1.05); }

.node-pulse {
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent-cyan);
  animation: nodePulse 2.5s ease-in-out infinite;
}

@keyframes nodePulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.15); }
}

.node-1 { left: 15%; top: 15%; }
.node-2 { right: 15%; top: 15%; }
.node-3 { left: 10%; bottom: 20%; }
.node-4 { right: 10%; bottom: 20%; }
.node-5 { left: 50%; bottom: 5%; transform: translateX(-50%); }

/* PR List (auto-scrolling) — used for process steps */
.pr-list-wrapper {
  height: 380px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.pr-list-wrapper::before,
.pr-list-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}

.pr-list-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-card), transparent);
}

.pr-list-wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-card), transparent);
}

.pr-list-scroll {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px;
  animation: prScroll 20s linear infinite;
}

@keyframes prScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.pr-list-visual:hover .pr-list-scroll {
  animation-play-state: paused;
}

.pr-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.pr-item:hover { background: rgba(255, 255, 255, 0.04); }

.pr-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr-icon.merged { color: var(--accent-purple); }

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr-content { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.pr-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.pr-meta {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.pr-meta strong { color: var(--text-secondary); }

/* Prevent/Results Visual */
.prevent-visual { padding: 24px; position: relative; z-index: 2; }

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: 1px solid var(--border-color);
  border-bottom: none;
}

.browser-dots { display: flex; gap: 6px; }

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:last-child { background: #28ca41; }

.browser-url {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.uptime-graph {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 200px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.uptime-bar {
  flex: 1;
  height: 0;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--accent-cyan), rgba(0, 183, 255, 0.2));
  transition: height 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  box-shadow: 0 0 10px rgba(0, 183, 255, 0.1);
}

.uptime-bar:hover {
  filter: brightness(1.3);
  box-shadow: 0 0 20px rgba(0, 183, 255, 0.2);
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: var(--section-y) var(--px);
  text-align: center;
}

.stats-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.stats-text {
  font-size: 24px;
  color: var(--text-secondary);
}

.stats-highlight {
  margin: -16px 0;
}

.stats-number {
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-primary);
  margin: 8px 0;
  background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.percent {
  font-size: 0.6em;
}

.stats-label {
  font-size: 0.25em;
  font-weight: 400;
  -webkit-text-fill-color: var(--text-muted);
  vertical-align: middle;
}

/* ===== PRICING SECTION (inside knowledge layout) ===== */
.knowledge-section {
  padding: var(--section-y) var(--px);
}

.knowledge-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 40px;
}

.knowledge-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 22px rgba(0, 0, 0, 0.34);
}

.knowledge-visual {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.3s ease;
  backdrop-filter: blur(8px);
}

.knowledge-visual:hover { border-color: var(--border-hover); }

.pricing-mockup {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.pricing-card {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-card.featured {
  border-color: rgba(0, 183, 255, 0.3);
  background: var(--accent-cyan-dim);
}

.pricing-badge {
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 10px;
  border-radius: 100px;
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

.pricing-tier {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-family: var(--font-mono);
  display: block;
  margin-bottom: 4px;
}

.pricing-lift {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 8px;
}

.pricing-lift.accent { color: var(--accent-cyan); }

.pricing-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.pricing-list {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pricing-list li {
  font-size: 11px;
  color: var(--text-secondary);
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.knowledge-description { text-align: center; }

.knowledge-description p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--accent-cyan);
  font-weight: 500;
  transition: gap 0.3s ease;
}

.link-arrow:hover { gap: 12px; }

/* ===== INTEGRATIONS / CAPABILITIES ===== */
.integrations-section {
  padding: var(--section-y) var(--px);
  text-align: center;
}

.integrations-header { margin-bottom: 48px; }

.integrations-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 12px 0;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 48px;
}

.integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.integration-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.integration-card:hover::before { opacity: 1; }

.integration-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.integration-icon {
  width: 36px;
  height: 36px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.integration-icon svg { width: 100%; height: 100%; }

.integration-card:hover .integration-icon { color: var(--text-primary); }

.integration-card span {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: var(--section-y) var(--px);
}

.faq-container { max-width: 900px; margin: 0 auto; }

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 12px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 22px rgba(0, 0, 0, 0.34);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.faq-item {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: all 0.3s ease;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 560;
  line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--section-y) var(--px);
  text-align: center;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-container h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 22px rgba(0, 0, 0, 0.34);
}

.contact-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--section-y) var(--px) 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-light {
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
}

.cta-light-1 {
  bottom: -100px;
  left: 30%;
  background: rgba(0, 183, 255, 0.08);
  animation: ctaFloat 8s ease-in-out infinite;
}

.cta-light-2 {
  bottom: -80px;
  right: 30%;
  background: rgba(0, 255, 209, 0.06);
  animation: ctaFloat 8s ease-in-out infinite 2s;
}

@keyframes ctaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 22px rgba(0, 0, 0, 0.34);
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 560;
  margin-bottom: 32px;
  position: relative;
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border-color);
  padding: clamp(48px, 7vw, 72px) var(--px) 32px;
}

.footer-container { width: 100%; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px rgba(92, 255, 143, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.footer-compliance { font-size: 13px; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .offer-grid,
  .after-grid {
    grid-template-columns: 1fr;
  }

  .offer-strip {
    grid-template-columns: 1fr;
  }

  .offer-chips {
    justify-content: flex-start;
  }

}

@media (max-width: 900px) {
  .feature-content, .knowledge-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-content-reverse { direction: ltr; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .faq-grid { grid-template-columns: 1fr; }

  .hero-subtitle br,
  .feature-text h2 br,
  .knowledge-text h2 br,
  .knowledge-description p br,
  .faq-header h2 br,
  .contact-container p br {
    display: none;
  }

  .hero-subtitle,
  .knowledge-description p,
  .cta-subtitle,
  .contact-container .text-muted,
  .faq-item p {
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
  }

  .feature-text h2,
  .knowledge-text h2,
  .faq-header h2,
  .contact-container h2,
  .cta-section h2 {
    line-height: 1.28;
    letter-spacing: -0.015em;
  }

  .hero {
    position: relative;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(6, 13, 31, 0.68) 0%,
      rgba(6, 13, 31, 0.52) 35%,
      rgba(6, 13, 31, 0.75) 100%
    );
    pointer-events: none;
    z-index: 1;
  }

  .hero-reveal {
    z-index: 3;
  }

  .hero-badge,
  .hero-title,
  .hero-subtitle,
  .hero-cta,
  .stats-text,
  .feature-text h2,
  .knowledge-text h2,
  .knowledge-description p,
  .faq-header h2,
  .faq-item p,
  .contact-container .text-muted,
  .cta-subtitle {
    background: rgba(6, 13, 31, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

@media (max-width: 768px) {
  .btn-nav { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
  }

  .nav-logo {
    min-width: 0;
    gap: 10px;
  }

  .nav-logo span {
    min-width: 0;
    font-size: 0.92rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .nav-actions {
    margin-left: 0;
    min-width: 0;
  }

  .nav-utility-controls {
    gap: 6px;
    padding: 4px;
    max-width: 100%;
  }

  .nav-utility-btn {
    font-size: 0.74rem;
  }

  .nav-utility-switch__track {
    min-width: 68px;
    height: 32px;
  }

  .nav-utility-switch__track--lang {
    min-width: 80px;
  }

  .nav-utility-switch__indicator {
    width: calc(50% - 3px);
  }

  .nav-utility-switch__glyph--moon,
  .nav-utility-switch__glyph--sun {
    width: 13px;
    height: 13px;
  }

  .nav-utility-switch__option--lang {
    font-size: 0.64rem;
  }

  .rebuild-hero-copy,
  .rebuild-contact-copy,
  .rebuild-final-cta-shell {
    justify-items: center;
    text-align: center;
  }

  .rebuild-hero-copy h1,
  .rebuild-lead,
  .rebuild-intro-proof,
  .rebuild-contact-copy h2,
  .rebuild-contact-copy p,
  .rebuild-final-cta-shell h2,
  .rebuild-final-cta-shell p {
    margin-inline: auto;
  }

  .rebuild-cta-row,
  .rebuild-cta-row-center {
    width: 100%;
    justify-content: center;
  }

  .rebuild-cta-row .btn,
  .rebuild-cta-row-center .btn {
    margin-inline: auto;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: rgba(6, 13, 31, 0.96);
  }

  body.js-enabled .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.js-enabled .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
  }

  .nav-link::after { display: none; }
  .nav-link:hover,
  .nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
  }
}

@media (max-width: 560px) {
  .nav-container {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo menu"
      "actions actions";
  }

  .nav-logo {
    grid-area: logo;
  }

  .nav-toggle {
    grid-area: menu;
  }

  .nav-actions {
    grid-area: actions;
    justify-self: stretch;
  }

  .nav-utility-controls {
    width: 100%;
    justify-content: space-between;
  }

  .nav-utility-btn--theme,
  .nav-utility-btn--lang {
    flex: 1 1 0;
  }

  .nav-utility-btn--theme .nav-utility-switch__track,
  .nav-utility-btn--lang .nav-utility-switch__track {
    width: 100%;
  }

  .nav-logo span {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero { padding-top: 120px; }
  .stats-section,
  .feature-section,
  .knowledge-section,
  .integrations-section,
  .faq-section,
  .contact-section,
  .cta-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .cta-section { padding-bottom: 132px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card-content { padding: 20px; }
  .dashboard-row { grid-template-columns: 1fr; }
  .resolution-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 100%; height: 1px; }
  .hero-title { line-height: 1.14; letter-spacing: -0.025em; }
  .hero-subtitle { font-size: 17px; line-height: 1.8; max-width: 34ch; }
  .hero-title,
  .feature-text h2,
  .knowledge-text h2,
  .faq-header h2,
  .contact-container h2,
  .cta-section h2 {
    font-weight: 780;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24), 0 10px 26px rgba(0, 0, 0, 0.44);
  }
  .hero-subtitle,
  .knowledge-description p,
  .faq-item p,
  .contact-container .text-muted,
  .cta-subtitle,
  .pricing-desc,
  .pr-meta {
    font-weight: 650;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
  }
  .feature-text h2,
  .knowledge-text h2,
  .faq-header h2,
  .contact-container h2,
  .cta-section h2 {
    font-size: clamp(30px, 7vw, 38px);
    line-height: 1.3;
  }
  .feature-tab { font-size: 12px; padding: 8px 12px; }
  .particle-canvas { opacity: 0.25; }
  .grain-canvas { opacity: 0.01; }
  .cursor-glow { display: none; }
  .hero-lights { opacity: 0.35; filter: blur(12px); }
  .hero-light { opacity: 0.45 !important; }
  .hero-mask {
    background: radial-gradient(ellipse 780px 620px at 50% 30%, rgba(6, 13, 31, 0.45) 25%, var(--bg-primary) 76%);
  }
  main { padding-bottom: 88px; }
}

/* ===== SARA VOICE ASSISTANT ===== */
.sara-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border: 1px solid rgba(0, 183, 255, 0.3);
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(0, 183, 255, 0.15), rgba(0, 255, 209, 0.1));
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 183, 255, 0.2), 0 0 60px rgba(0, 183, 255, 0.05);
  animation: saraPulse 3s ease-in-out infinite;
}

.sara-toggle:hover {
  border-color: rgba(0, 183, 255, 0.5);
  background: linear-gradient(135deg, rgba(0, 183, 255, 0.25), rgba(0, 255, 209, 0.15));
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 183, 255, 0.3), 0 0 80px rgba(0, 183, 255, 0.08);
}

.sara-toggle.sara-toggle-hidden {
  transform: translateY(calc(140% + env(safe-area-inset-bottom)));
  opacity: 0;
  pointer-events: none;
}

@keyframes saraPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(0, 183, 255, 0.2), 0 0 60px rgba(0, 183, 255, 0.05); }
  50% { box-shadow: 0 4px 30px rgba(0, 183, 255, 0.35), 0 0 80px rgba(0, 183, 255, 0.1); }
}

/* Overlay */
.sara-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(2, 6, 16, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  animation: saraFadeIn 0.35s ease-out;
}

.sara-overlay[hidden] { display: none !important; }

@keyframes saraFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.sara-call-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.sara-call-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
}

.sara-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

.sara-back-btn:hover { color: var(--text-primary); }

.sara-powered {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  opacity: 0.4;
}

.sara-call-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.sara-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  opacity: 0.7;
  margin-bottom: 20px;
}

.sara-title {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sara-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.5;
  margin-bottom: 48px;
}

/* Orb */
.sara-orb-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 32px;
}

.sara-orb-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.sara-orb-glow-outer {
  inset: -40px;
  background: rgba(0, 183, 255, 0.15);
  filter: blur(30px);
}

.sara-orb-glow-inner {
  inset: -20px;
  background: rgba(0, 183, 255, 0.12);
  filter: blur(20px);
}

.sara-orb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s ease;
  position: relative;
}

.sara-orb.connected {
  background: linear-gradient(135deg, rgba(0, 183, 255, 0.15), rgba(0, 255, 209, 0.08));
  border-color: rgba(0, 183, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 183, 255, 0.1);
}

.sara-orb.connecting {
  animation: orbPulseConnect 1.2s ease-in-out infinite;
}

@keyframes orbPulseConnect {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.sara-orb.speaking {
  animation: orbPulseSpeaking 1s ease-in-out infinite;
}

@keyframes orbPulseSpeaking {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* Speaking glow animation */
.sara-orb-wrap.speaking .sara-orb-glow-outer {
  opacity: 1;
  animation: glowOuter 2s ease-in-out infinite;
}

.sara-orb-wrap.speaking .sara-orb-glow-inner {
  opacity: 1;
  animation: glowInner 1.5s ease-in-out infinite 0.3s;
}

.sara-orb-wrap.connected .sara-orb-glow-outer { opacity: 0.3; }
.sara-orb-wrap.connected .sara-orb-glow-inner { opacity: 0.2; }

@keyframes glowOuter {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.4); opacity: 0; }
}

@keyframes glowInner {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.25); opacity: 0.05; }
}

.sara-mic-icon { color: var(--text-muted); transition: color 0.3s ease; }
.sara-orb.connected .sara-mic-icon { color: var(--accent-cyan); }

.sara-call-status {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  height: 16px;
  margin-bottom: 32px;
  transition: color 0.3s ease;
  color: var(--text-muted);
  opacity: 0.5;
}

.sara-call-status.connecting { color: var(--accent-cyan); opacity: 0.7; }
.sara-call-status.speaking { color: var(--accent-cyan); opacity: 1; }
.sara-call-status.listening { color: var(--text-muted); opacity: 0.5; }

/* Call buttons */
.sara-call-actions {
  display: flex;
  justify-content: center;
}

.sara-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.sara-start-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.2);
}

.sara-start-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 14px rgba(255, 255, 255, 0.18);
}

.sara-start-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.sara-end-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sara-end-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  transform: scale(1.04);
}

.sara-end-btn:active {
  transform: scale(0.98);
}

.sara-error {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #f87171;
  opacity: 0.8;
  max-width: 320px;
  text-align: center;
  min-height: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cursor-glow,
  .particle-canvas { display: none !important; }
  .shimmer-border::before,
  .shimmer-text,
  .hero-light,
  .card-radar::before,
  .diff-radar::before {
    animation: none !important;
  }
  [data-tilt],
  .reveal-up,
  .nav-links,
  .sara-toggle {
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .cursor-glow,
  .grain-canvas { display: none !important; }
  .particle-canvas {
    display: block !important;
    opacity: 0.16 !important;
  }

  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  .btn:hover {
    transform: none;
    box-shadow: none;
  }

  .btn:active {
    transform: scale(0.98);
  }
}

/* Hero trust strip */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: -28px 0 28px;
}

.hero-trust-strip span {
  background: rgba(17, 53, 108, 0.46);
  border: 1px solid rgba(84, 127, 203, 0.28);
  border-radius: 999px;
  color: #cfe8ff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
}

/* AI Revenue Offer */
.ai-offer {
  margin-top: 84px;
  display: grid;
  gap: 18px;
}

.ai-offer-head {
  max-width: 78ch;
}

.offer-kicker {
  color: #66d0ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.offer-lead,
.offer-subcopy {
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.6;
  margin: 10px 0 0;
  max-width: 70ch;
}

.ai-problem-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.problem-pill,
.fit-chips span {
  background: rgba(17, 53, 108, 0.58);
  border: 1px solid #2d5da1;
  border-radius: 999px;
  color: #cfe8ff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 12px;
}

.ai-summary-grid,
.ai-positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.summary-card,
.stack-card,
.positioning-card,
.after-card {
  background: linear-gradient(165deg, rgba(9, 21, 46, 0.86), rgba(9, 21, 46, 0.72));
  border: 1px solid rgba(67, 116, 187, 0.38);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.summary-card::before,
.stack-card::before,
.positioning-card::before,
.after-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 10%, rgba(27, 180, 255, 0.14), transparent 52%);
  pointer-events: none;
}

.summary-card:hover,
.positioning-card:hover,
.after-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.34);
}

.stack-card:hover {
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.34);
}

.summary-label,
.after-step {
  color: #7ad9ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.summary-card h3,
.stack-card h3,
.positioning-card h3,
.after-card h3,
.ai-fit-copy h2,
.ai-includes h2,
.ai-positioning h2,
.after-booking h2 {
  margin: 0 0 8px;
  color: var(--ink-1);
}

.summary-card p,
.stack-card p,
.positioning-card p,
.after-card p,
.ai-fit-copy p {
  margin: 0;
  color: var(--ink-3);
}

.ai-includes,
.ai-fit,
.ai-positioning,
.after-booking {
  margin-top: 4px;
}

.ai-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.stack-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.stack-card {
  min-height: 100%;
  padding: 24px;
  border-radius: 20px;
  will-change: transform;
}

.stack-card h3 {
  font-size: 1.08rem;
  line-height: 1.28;
}

.stack-card p {
  font-size: 0.96rem;
  line-height: 1.66;
}

.stack-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(17, 53, 108, 0.58);
  border: 1px solid rgba(80, 208, 255, 0.35);
  color: #eaf7ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}

@media (min-width: 1280px) {
  .ai-stack-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ai-fit {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  background: linear-gradient(140deg, rgba(8, 20, 43, 0.86), rgba(11, 29, 61, 0.74));
  border: 1px solid rgba(84, 127, 203, 0.34);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.fit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.after-booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.offer-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* Mini case study band */
.case-band {
  margin-top: 84px;
  display: grid;
  gap: 18px;
}

.case-band-head {
  max-width: 74ch;
}

.case-band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-band-card {
  background: linear-gradient(165deg, rgba(9, 21, 46, 0.86), rgba(9, 21, 46, 0.72));
  border: 1px solid rgba(67, 116, 187, 0.38);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.case-band-card::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: radial-gradient(circle at 15% 10%, rgba(27, 180, 255, 0.16), transparent 52%);
  pointer-events: none;
}

.case-band-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.34);
}

.case-industry {
  display: inline-block;
  margin-bottom: 12px;
  color: #7ad9ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-metric {
  color: var(--ink-1);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.case-band-card h3 {
  margin: 0 0 8px;
  color: var(--ink-1);
}

.case-band-card p {
  margin: 0;
  color: #d7e6ff;
  line-height: 1.68;
  font-size: 1rem;
  font-weight: 500;
}

/* Premium timeline */
.how-it-works {
  margin-top: 84px;
  display: grid;
  gap: 22px;
}

.how-head {
  max-width: 74ch;
}

.process-box-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-box {
  background: linear-gradient(165deg, rgba(9, 21, 46, 0.9), rgba(9, 21, 46, 0.74));
  border: 1px solid rgba(67, 116, 187, 0.38);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.process-box::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 15% 10%, rgba(27, 180, 255, 0.16), transparent 52%);
  pointer-events: none;
}

.process-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.34);
  border-color: rgba(96, 164, 255, 0.42);
}

.process-box-featured {
  border-color: rgba(80, 208, 255, 0.42);
  box-shadow: 0 0 0 1px rgba(80, 208, 255, 0.08) inset, var(--shadow-soft);
}

.process-box-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.process-box-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(17, 53, 108, 0.76), rgba(9, 21, 46, 0.9));
  border: 1px solid rgba(80, 208, 255, 0.3);
  color: #eff8ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.process-box-label {
  color: #9fe6ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
}

.process-box h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--ink-1);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.process-box p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #dbe9ff;
  line-height: 1.68;
  font-size: 1rem;
  font-weight: 500;
}

.process-visual {
  position: relative;
  z-index: 1;
  height: 92px;
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(84, 127, 203, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(10, 18, 40, 0.12));
  overflow: hidden;
}

.process-visual > span {
  position: absolute;
  display: block;
}

.process-visual-window {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  display: flex;
  gap: 6px;
}

.process-visual-window span {
  position: static;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240, 246, 255, 0.22);
}

.visual-app-bar {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  z-index: 2;
}

.visual-app-bar span {
  position: static;
  color: rgba(232, 241, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
}

.visual-app-bar strong {
  color: var(--ink-1);
  font-size: 0.78rem;
  font-weight: 700;
}

.lead-flow-chip,
.ai-channel-pill,
.ai-response-bubble,
.lead-pipeline-card,
.lead-feed-card,
.ai-transcript-card,
.close-chart-card,
.close-confirm-card,
.close-metric-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 17, 36, 0.78);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.lead-flow-chip,
.ai-channel-pill,
.ai-response-bubble {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-1);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 700;
}

.lead-pipeline-card,
.lead-feed-card,
.ai-transcript-card,
.close-chart-card,
.close-confirm-card,
.close-metric-card {
  padding: 14px;
  border-radius: 16px;
}

.lead-pipeline-card strong,
.lead-feed-card strong,
.ai-transcript-card strong,
.close-chart-card strong,
.close-confirm-card strong,
.close-metric-card strong {
  display: block;
  color: var(--ink-1);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.lead-pipeline-card span,
.lead-feed-card span,
.ai-transcript-card span,
.close-chart-card span,
.close-confirm-card span,
.close-metric-card span {
  display: block;
  color: rgba(232, 241, 255, 0.74);
  font-size: 0.76rem;
  line-height: 1.4;
  font-weight: 600;
}

.process-visual-leads > span:nth-of-type(1),
.process-visual-leads > span:nth-of-type(2),
.process-visual-leads > span:nth-of-type(3) {
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #c6fbff, #55d8ff 70%);
  box-shadow: 0 0 16px rgba(85, 216, 255, 0.18);
  animation: peoplePulse 2s ease-in-out infinite;
}

.process-visual-leads > span:nth-of-type(4),
.process-visual-leads > span:nth-of-type(5),
.process-visual-leads > span:nth-of-type(6) {
  top: 38px;
  width: 26px;
  height: 24px;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(180deg, rgba(0, 255, 209, 0.95), rgba(0, 183, 255, 0.26));
  animation: peoplePulse 2s ease-in-out infinite;
}

.process-visual-leads > span:nth-of-type(1) { left: 24px; animation-delay: 0s; }
.process-visual-leads > span:nth-of-type(2) { left: 64px; animation-delay: 0.18s; }
.process-visual-leads > span:nth-of-type(3) { left: 104px; animation-delay: 0.36s; }
.process-visual-leads > span:nth-of-type(4) { left: 20px; animation-delay: 0s; }
.process-visual-leads > span:nth-of-type(5) { left: 60px; animation-delay: 0.18s; }
.process-visual-leads > span:nth-of-type(6) { left: 100px; animation-delay: 0.36s; }

.lead-flow-chip-a {
  left: 20px;
  top: 76px;
}

.lead-flow-chip-b {
  left: 52px;
  top: 116px;
}

.lead-pipeline-card {
  right: 18px;
  bottom: 16px;
  width: 170px;
}

.lead-feed-card {
  left: 150px;
  top: 84px;
  width: 132px;
}

.process-visual-ai > span:nth-of-type(1) {
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 1px solid rgba(126, 238, 255, 0.2);
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 252, 255, 0.98) 0 16%, rgba(113, 230, 255, 0.62) 22%, rgba(113, 230, 255, 0.14) 42%, rgba(113, 230, 255, 0.04) 58%, rgba(113, 230, 255, 0) 70%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 44px rgba(113, 230, 255, 0.14);
  animation: aiHalo 4.6s ease-in-out infinite;
}

.ai-channel-pill-call {
  left: 20px;
  top: 82px;
}

.ai-channel-pill-sms {
  right: 22px;
  top: 90px;
}

.ai-channel-pill-chat {
  left: 30px;
  bottom: 34px;
}

.ai-response-bubble {
  right: 20px;
  bottom: 24px;
  background: rgba(10, 33, 56, 0.84);
}

.ai-transcript-card {
  left: 16px;
  bottom: 16px;
  width: 152px;
}

.process-visual-close > span:nth-of-type(1) {
  left: 20px;
  top: 54px;
  width: 170px;
  height: 60px;
  border-radius: 16px;
  border: 1px solid rgba(80, 208, 255, 0.16);
  background: linear-gradient(180deg, rgba(17, 53, 108, 0.42), rgba(10, 18, 40, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.process-visual-close > span:nth-of-type(2) {
  left: 36px;
  top: 30px;
  width: 86px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(80, 208, 255, 0.9), rgba(80, 208, 255, 0.22));
}

.process-visual-close > span:nth-of-type(3) {
  left: 36px;
  top: 44px;
  width: 52px;
  height: 6px;
  border-radius: 999px;
  background: rgba(171, 193, 228, 0.4);
}

.process-visual-close > span:nth-of-type(4) {
  right: 20px;
  top: 54px;
  width: 118px;
  height: 60px;
  border-radius: 16px;
  border: 1px solid rgba(92, 255, 143, 0.18);
  background: linear-gradient(180deg, rgba(11, 42, 31, 0.74), rgba(8, 21, 45, 0.74));
  box-shadow: 0 0 24px rgba(92, 255, 143, 0.08);
}

.process-visual-close > span:nth-of-type(5) {
  right: 48px;
  top: 25px;
  width: 24px;
  height: 20px;
  border-right: 4px solid #5cff8f;
  border-bottom: 4px solid #5cff8f;
  transform: rotate(40deg);
  animation: closeCheck 2.2s ease-in-out infinite;
}

.close-chart-card {
  left: 18px;
  top: 34px;
  width: 164px;
  min-height: 82px;
}

.close-confirm-card {
  right: 18px;
  top: 54px;
  width: 138px;
  min-height: 78px;
  border-color: rgba(92, 255, 143, 0.18);
  background: rgba(10, 29, 26, 0.78);
}

.close-metric-card {
  left: 26px;
  bottom: 16px;
  width: 134px;
}

@keyframes peoplePulse {
  0%, 100% { transform: translateY(0); opacity: 0.78; }
  50% { transform: translateY(-3px); opacity: 1; }
}

@keyframes aiPulse {
  0% { box-shadow: 0 0 0 0 rgba(126, 238, 255, 0.42); }
  70% { box-shadow: 0 0 0 18px rgba(126, 238, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 238, 255, 0); }
}

@keyframes aiHalo {
  0%, 100% { transform: translate(-50%, -50%) scale(0.98); opacity: 0.82; }
  50% { transform: translate(-50%, -50%) scale(1.02); opacity: 1; }
}

.calculator-section {
    width: min(var(--container-max), calc(100% - 2 * var(--px)));
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(64px, 7vw, 84px);
}

.calculator-card {
    display: grid;
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(84, 127, 203, 0.24);
    background: linear-gradient(160deg, rgba(8, 20, 43, 0.82), rgba(11, 29, 61, 0.68));
    box-shadow: var(--shadow-soft);
}

.calculator-copy {
    max-width: 72ch;
}

.calculator-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
}

.calculator-inputs,
.calculator-results {
    display: grid;
    gap: 14px;
}

.calculator-field {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(9, 21, 46, 0.68);
    border: 1px solid rgba(67, 116, 187, 0.24);
}

.calculator-field span {
    color: #d8ecff;
    font-size: 0.92rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(120, 210, 255, 0.12);
    border: 1px solid rgba(120, 210, 255, 0.2);
}

.calculator-field input {
    width: 100%;
    border: 1px solid rgba(84, 127, 203, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: var(--ink-1);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    outline: none;
}

.calculator-field input:focus {
    border-color: rgba(80, 208, 255, 0.48);
    box-shadow: 0 0 0 3px rgba(80, 208, 255, 0.12);
}

.calculator-result {
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(9, 21, 46, 0.86), rgba(9, 21, 46, 0.72));
    border: 1px solid rgba(67, 116, 187, 0.3);
}

.calculator-result-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #9fe6ff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(120, 210, 255, 0.12);
    border: 1px solid rgba(120, 210, 255, 0.2);
}

.calculator-result strong {
    display: block;
    color: var(--ink-1);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.calculator-result p {
    margin: 0;
    color: var(--ink-3);
    line-height: 1.6;
    font-size: 0.96rem;
    font-weight: 500;
}

@keyframes closeCheck {
  0%, 100% { transform: rotate(40deg) scale(0.95); opacity: 0.76; }
  50% { transform: rotate(40deg) scale(1.06); opacity: 1; }
}

.process-box-note {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(84, 127, 203, 0.18);
}

.process-box-note strong {
  color: #eff8ff;
  font-size: 0.95rem;
  font-weight: 700;
}

.process-box-note span {
  color: var(--ink-3);
  line-height: 1.55;
  font-size: 0.95rem;
  font-weight: 500;
}

.process-box-cta {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.section-inline-cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.trust-marquee-section,
.ghl-section {
  width: min(var(--container-max), calc(100% - 2 * var(--px)));
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(44px, 6vw, 72px);
}

.trust-marquee-section {
  display: grid;
  gap: 18px;
  position: relative;
  padding: 18px 0 8px;
}

.trust-marquee-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 30%, rgba(87, 199, 255, 0.09), transparent 34%),
    radial-gradient(circle at 80% 60%, rgba(118, 255, 214, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(9, 20, 40, 0.16), rgba(9, 20, 40, 0));
  pointer-events: none;
  z-index: 0;
}

.trust-marquee-section > * {
  position: relative;
  z-index: 1;
}

.calculator-panel-bar,
.trust-panel-bar,
.calculator-panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.trust-panel-bar span,
.calculator-panel-bar span {
  color: rgba(232, 241, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
}

.trust-panel-bar strong,
.calculator-panel-bar strong {
  color: var(--ink-1);
  font-size: 0.78rem;
  font-weight: 700;
}

.trust-summary-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-summary-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.trust-summary-card span {
  color: #9fe6ff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-summary-card strong {
  color: var(--ink-1);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
}

.trust-marquee-head {
  max-width: 46ch;
  margin: 0 auto;
  text-align: center;
}

.trust-marquee-head h2,
.ghl-copy h2 {
  color: var(--ink-1);
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 10px 0 0;
}

.marquee-shell {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  border-radius: 34px;
  border: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(87, 199, 255, 0.09), transparent 58%),
    linear-gradient(180deg, rgba(8, 20, 43, 0.24), rgba(9, 21, 46, 0.16));
  box-shadow: none;
  padding: 44px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  max-width: none;
  gap: 42px;
  padding-left: 42px;
  animation: trustMarquee 48s linear infinite;
  will-change: transform;
}

.marquee-shell:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 172px;
  height: 102px;
  padding: 0;
  opacity: 0.92;
}

.marquee-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

.marquee-logo img {
  max-width: 190px;
  max-height: 64px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.98;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.16));
}

.marquee-item--icon .marquee-logo img {
  max-width: 54px;
  max-height: 54px;
}

.marquee-item--codex .marquee-logo img,
.marquee-item--gohighlevel .marquee-logo img {
  mix-blend-mode: screen;
  opacity: 0.98;
}

.marquee-item--gohighlevel .marquee-logo img {
  max-width: 190px;
  max-height: 58px;
  object-position: center;
}

.marquee-item--gemini .marquee-logo img {
  max-width: 186px;
  max-height: 58px;
  border-radius: 0;
  opacity: 0.98;
}

.marquee-item--google-ads .marquee-logo img {
  max-width: 184px;
  max-height: 58px;
}

.marquee-item--retell .marquee-logo img {
  max-width: 54px;
  max-height: 54px;
}

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 128px;
  z-index: 2;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(90deg, rgba(6, 13, 31, 0.82), rgba(6, 13, 31, 0));
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(270deg, rgba(6, 13, 31, 0.82), rgba(6, 13, 31, 0));
}

@keyframes trustMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 7px)); }
}

.how-it-works,
.proof-plus,
.case-band {
  margin-top: clamp(64px, 8vw, 92px);
}

.case-band,
.how-it-works,
.proof-plus {
  padding: clamp(26px, 4vw, 34px);
  border-radius: 28px;
  border: 1px solid rgba(84, 127, 203, 0.2);
  background: linear-gradient(165deg, rgba(8, 20, 43, 0.74), rgba(9, 21, 46, 0.58));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.results-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.results-panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.results-panel-bar span {
  color: rgba(232, 241, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
}

.results-panel-bar strong {
  color: var(--ink-1);
  font-size: 0.78rem;
  font-weight: 700;
}

.results-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.results-panel-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.results-panel-card span {
  color: #9fe6ff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.results-panel-card strong {
  color: var(--ink-1);
  font-size: 0.96rem;
  line-height: 1.45;
  font-weight: 700;
}

.process-box {
  min-height: 100%;
  background: linear-gradient(165deg, rgba(9, 21, 46, 0.78), rgba(9, 21, 46, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.process-box::before {
  background: radial-gradient(circle at 18% 14%, rgba(27, 180, 255, 0.12), transparent 50%);
}

.process-box-featured {
  background: linear-gradient(165deg, rgba(11, 27, 59, 0.88), rgba(11, 27, 59, 0.72));
  border-color: rgba(80, 208, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(80, 208, 255, 0.08) inset, 0 18px 36px rgba(0, 0, 0, 0.2);
}

.process-box h3 {
  font-size: clamp(1.45rem, 2.1vw, 1.82rem);
}

.process-box p,
.case-band-card p,
.proof-case p,
.proof-case-title,
.offer-subcopy,
.calculator-result p,
.calculator-field span,
.process-box-note span,
.ghl-points span,
.calculator-compare-item span,
.calculator-compare-item strong,
.calculator-cta-copy p {
  color: rgba(232, 241, 255, 0.82);
}

.process-box-note,
.calculator-result,
.case-band-card,
.proof-case {
  background: linear-gradient(165deg, rgba(10, 24, 52, 0.66), rgba(9, 21, 46, 0.56));
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.process-visual {
  height: 168px;
  margin-top: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(10, 18, 40, 0.1));
}

.process-visual-leads::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 140px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, rgba(80, 208, 255, 0), rgba(80, 208, 255, 0.42), rgba(80, 208, 255, 0));
}

.process-visual-leads > span:nth-of-type(1),
.process-visual-leads > span:nth-of-type(2),
.process-visual-leads > span:nth-of-type(3) {
  top: 44px;
}

.process-visual-leads > span:nth-of-type(4),
.process-visual-leads > span:nth-of-type(5),
.process-visual-leads > span:nth-of-type(6) {
  top: 68px;
}

.process-visual-ai > span:nth-of-type(1) {
  width: 150px;
  height: 150px;
}

.process-visual-ai::before,
.process-visual-ai::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(126, 238, 255, 0.16);
  transform: translate(-50%, -50%);
}

.process-visual-ai::after {
  width: 116px;
  height: 116px;
  border-color: rgba(126, 238, 255, 0.08);
}

.process-visual-close::before {
  content: "";
  position: absolute;
  left: 160px;
  right: 112px;
  top: 84px;
  height: 2px;
  background: linear-gradient(90deg, rgba(80, 208, 255, 0.16), rgba(92, 255, 143, 0.44));
}

.process-visual-close::after {
  content: "Confirmed";
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: #9dffbc;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-card {
  gap: 22px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 28px;
  border: 1px solid rgba(84, 127, 203, 0.2);
  background: linear-gradient(165deg, rgba(8, 20, 43, 0.74), rgba(9, 21, 46, 0.58));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.calculator-grid {
  align-items: start;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.calculator-input-panel,
.calculator-results-panel {
  display: grid;
  gap: 14px;
}

.calculator-inputs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.calculator-results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.calculator-field,
.calculator-result,
.calculator-compare-item,
.ghl-panel {
  backdrop-filter: blur(10px);
}

.calculator-field {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.calculator-field input {
  background: rgba(255, 255, 255, 0.02);
  font-size: 1.06rem;
}

.calculator-mini-note {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.calculator-mini-note span,
.calculator-preview-card span {
  color: #9fe6ff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calculator-mini-note strong,
.calculator-preview-card strong {
  color: var(--ink-1);
  font-size: 0.96rem;
  line-height: 1.5;
  font-weight: 700;
}

.calculator-result strong,
#calcReadySave {
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.calculator-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.calculator-preview-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.calculator-preview-card {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.calculator-preview-card-accent {
  border-color: rgba(80, 208, 255, 0.2);
  background: linear-gradient(165deg, rgba(8, 29, 56, 0.9), rgba(9, 21, 46, 0.68));
}

.calculator-compare-item {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.calculator-compare-item span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calculator-compare-item strong {
  color: var(--ink-1);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
}

.calculator-compare-item-accent {
  border-color: rgba(116, 211, 255, 0.28);
  background:
    linear-gradient(155deg, rgba(151, 221, 255, 0.08), rgba(0, 255, 209, 0.05) 40%, rgba(255, 255, 255, 0.012) 100%),
    linear-gradient(165deg, rgba(8, 29, 56, 0.94), rgba(9, 21, 46, 0.74));
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(116, 211, 255, 0.08) inset,
    0 0 32px rgba(0, 183, 255, 0.1);
}

.calculator-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(80, 208, 255, 0.18);
  background: linear-gradient(90deg, rgba(11, 27, 59, 0.88), rgba(8, 20, 43, 0.74));
  box-shadow: 0 0 0 1px rgba(80, 208, 255, 0.06) inset;
}

.calculator-cta-copy {
  display: grid;
  gap: 6px;
}

.calculator-cta-copy strong {
  color: var(--ink-1);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.ghl-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 22px;
  align-items: center;
}

.ghl-copy {
  display: grid;
  gap: 18px;
}

.ghl-support-copy {
  color: rgba(232, 241, 255, 0.78);
  line-height: 1.65;
  font-size: 0.98rem;
  font-weight: 600;
  max-width: 54ch;
}

.ghl-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ghl-points span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  font-weight: 600;
}

.platform-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-logo-row span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-1);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
}

.ghl-mockup {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(84, 127, 203, 0.2);
  background: linear-gradient(165deg, rgba(8, 20, 43, 0.78), rgba(9, 21, 46, 0.62));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.ghl-mockup::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 82% 16%, rgba(80, 208, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.ghl-window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.ghl-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.ghl-mockup-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 14px;
}

.ghl-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.ghl-panel strong {
  color: var(--ink-1);
  font-size: 1rem;
  font-weight: 700;
}

.ghl-panel span {
  color: rgba(232, 241, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 600;
}

.ghl-panel-pipeline {
  grid-row: span 2;
}


/* Active nav link */
.nav-link {
  position: relative;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 16px rgba(33, 226, 207, 0.35);
  width: auto;
}

/* Premium desktop nav dropdown */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: var(--text-secondary);
  line-height: 1.2;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown-toggle[aria-expanded="true"] {
  color: var(--text-primary);
}

.nav-mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 760px;
  padding: 14px;
  border: 1px solid rgba(84, 127, 203, 0.24);
  border-radius: 22px;
  background: rgba(8, 21, 45, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 60;
}

.nav-dropdown:hover .nav-mega,
.nav-dropdown:focus-within .nav-mega,
.nav-dropdown.is-open .nav-mega,
.nav-dropdown-toggle[aria-expanded="true"] + .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 16px;
}

.nav-mega-col {
  padding: 10px;
}

.nav-mega-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #7ad9ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-mega-col a {
  display: block;
  margin-bottom: 10px;
  color: #d8ecff;
  font-size: 0.92rem;
}

.nav-mega-col a:hover {
  color: var(--ink-1);
}

.nav-mega-featured {
  border-left: 1px solid rgba(84, 127, 203, 0.16);
  padding: 16px 16px 16px 20px;
  border-radius: 14px;
  background: linear-gradient(160deg, #f2f7ff, #e8f1ff);
  border: 1px solid rgba(18, 36, 74, 0.16);
}

.nav-mega-featured h4 {
  margin: 0 0 8px;
  color: #0c1a34;
  font-size: 1rem;
}

.nav-mega-featured p {
  margin: 0 0 14px;
  color: #2c3f63;
  line-height: 1.55;
  font-size: 0.9rem;
}

.nav-mega-featured .nav-mega-label {
  color: #365484;
}

.nav-mega-featured .btn-small {
  background: #0d1f41;
  color: #f4f8ff;
  border: 1px solid rgba(13, 31, 65, 0.55);
  box-shadow: none;
}

.nav-mega-featured .btn-small:hover {
  background: #122a56;
}

.btn-small {
  padding: 9px 14px;
  font-size: 0.82rem;
}

.nav-mega-featured .btn-small {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* FAQ details accordion */
.faq-accordion {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-detail {
  border: 1px solid rgba(84, 127, 203, 0.24);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(8, 20, 43, 0.76), rgba(11, 29, 61, 0.62));
  overflow: hidden;
}

.faq-detail summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  color: var(--ink-1);
  font-weight: 600;
}

.faq-detail summary::-webkit-details-marker {
  display: none;
}

.faq-detail p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--ink-3);
}

/* Premium footer */
.footer-premium {
  margin-top: 72px;
  border-top: 1px solid rgba(84, 127, 203, 0.18);
  padding: 0 16px 36px;
}

.footer-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  padding: 26px;
  border: 1px solid rgba(84, 127, 203, 0.24);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(8, 20, 43, 0.76), rgba(11, 29, 61, 0.62));
  box-shadow: var(--shadow-soft);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #eef7ff;
}

.footer-logo img {
  border-radius: 10px;
}

.footer-logo strong {
  display: block;
  font-size: 1rem;
  color: var(--ink-1);
}

.footer-logo span {
  display: block;
  margin-top: 2px;
  font-size: 0.84rem;
  color: var(--ink-3);
}

.footer-brand-copy {
  max-width: 52ch;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 16px 0 18px;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 53, 108, 0.44);
  border: 1px solid rgba(80, 208, 255, 0.20);
  color: #d8ecff;
  font-size: 0.84rem;
  font-weight: 600;
}

.footer-brand-panel {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.footer-brand-panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-brand-panel-bar span {
  color: #9fe6ff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand-panel-bar strong {
  color: var(--ink-1);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-brand-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.footer-brand-metric {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.footer-brand-metric span {
  color: rgba(232, 241, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 700;
}

.footer-brand-metric strong {
  color: var(--ink-1);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col h4 {
  margin: 0 0 12px;
  color: var(--ink-1);
  font-size: 0.92rem;
}

.footer-col a {
  display: block;
  color: var(--ink-3);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--ink-1);
  transform: none;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 4px 0;
  color: #89a8d3;
  font-size: 0.82rem;
}

/* ===== EXPANDED PROOF / COMPARISON / IMPLEMENTATION ===== */
.case-study-section,
.comparison-section,
.implementation-section {
  width: min(var(--container-max), calc(100% - 2 * var(--px)));
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(64px, 8vw, 92px);
  display: grid;
  gap: 18px;
}

.case-study-head,
.comparison-head,
.implementation-head {
  max-width: 72ch;
  display: grid;
  gap: 10px;
}

.case-study-grid,
.comparison-grid,
.implementation-grid {
  display: grid;
  gap: 16px;
}

.case-study-grid,
.comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.implementation-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.case-study-card,
.comparison-card,
.implementation-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(10, 18, 40, 0.78), rgba(10, 18, 40, 0.6));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s var(--ease-premium), border-color 0.28s var(--ease-premium), box-shadow 0.28s var(--ease-premium);
}

.case-study-card:hover,
.comparison-card:hover,
.implementation-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
}

.case-study-tag,
.comparison-label,
.implementation-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #9fe6ff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-card h3,
.comparison-card h3,
.implementation-card h3 {
  color: var(--ink-1);
  font-size: 1.18rem;
  line-height: 1.18;
}

.case-study-card p,
.comparison-card p,
.implementation-card p {
  color: var(--text-secondary);
}

.case-study-list,
.comparison-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.case-study-list li,
.comparison-list li {
  position: relative;
  padding-left: 16px;
  color: var(--text-secondary);
}

.case-study-list li::before,
.comparison-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(0, 255, 209, 0.08);
}

.comparison-card-featured {
  border-color: rgba(0, 183, 255, 0.22);
  background: linear-gradient(180deg, rgba(8, 22, 46, 0.92), rgba(8, 22, 46, 0.72));
}

.comparison-card-featured .comparison-label {
  background: rgba(0, 183, 255, 0.12);
  color: #d9f3ff;
}

.implementation-step {
  min-width: 40px;
  padding-inline: 0;
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(84, 127, 203, 0.28);
  background: rgba(8, 21, 45, 0.92);
  backdrop-filter: blur(14px);
}

.mobile-sticky-cta .btn {
  flex: 1;
  min-height: 42px;
}

.page-shell {
  width: min(var(--container-max), calc(100% - 2 * var(--px)));
  margin: 0 auto;
  padding-top: 132px;
  padding-bottom: 48px;
}

.page-hero {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 34px);
  border-radius: 28px;
  border: 1px solid rgba(84, 127, 203, 0.2);
  background: linear-gradient(165deg, rgba(8, 20, 43, 0.74), rgba(9, 21, 46, 0.58));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 20px;
  align-items: center;
}

.page-media-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(165deg, rgba(9, 21, 46, 0.78), rgba(9, 21, 46, 0.64));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.page-media-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.page-media-meta {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.page-media-meta span {
  color: #9fe6ff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-media-meta strong {
  color: var(--ink-1);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
}

.page-media-meta p {
  color: rgba(232, 241, 255, 0.8);
  line-height: 1.6;
  font-weight: 600;
}

.page-media-card img[src$=".webp"] {
  background:
    radial-gradient(circle at top, rgba(98, 225, 255, 0.16), transparent 58%),
    linear-gradient(165deg, rgba(7, 17, 38, 0.96), rgba(6, 16, 36, 0.82));
  padding: clamp(18px, 3vw, 28px);
  object-fit: contain;
  min-height: 280px;
}

.page-grid,
.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.page-card,
.auth-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(165deg, rgba(9, 21, 46, 0.78), rgba(9, 21, 46, 0.64));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.page-card h3,
.auth-card h3 {
  color: var(--ink-1);
  font-size: 1.2rem;
  line-height: 1.25;
}

.page-card p,
.auth-card p,
.page-card li {
  color: rgba(232, 241, 255, 0.8);
  line-height: 1.65;
  font-weight: 600;
}

.page-card ul {
  margin: 0;
  padding-left: 18px;
}

.placeholder-note {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(80, 208, 255, 0.32);
  background: rgba(80, 208, 255, 0.06);
  color: #d8ecff;
  font-size: 0.86rem;
  font-weight: 600;
}

.auth-form {
  display: grid;
  gap: 12px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-1);
  font-weight: 700;
}

.auth-form input,
.auth-form select,
.auth-form textarea {
  width: 100%;
  border: 1px solid rgba(84, 127, 203, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink-1);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
}

.auth-form textarea {
  min-height: 120px;
  resize: vertical;
}

.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
  border-color: rgba(80, 208, 255, 0.48);
  box-shadow: 0 0 0 3px rgba(80, 208, 255, 0.12);
}

.auth-success {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(92, 255, 143, 0.22);
  background: rgba(92, 255, 143, 0.08);
  color: #d8ffe5;
  font-weight: 700;
}

.auth-success.is-visible {
  display: block;
}

@media (max-width: 980px) {
  .page-hero-split,
  .page-grid,
  .auth-grid {
    grid-template-columns: 1fr;
  }

  .ai-summary-grid,
  .ai-stack-grid,
  .ai-positioning-grid,
  .after-booking-grid,
  .case-band-grid {
    grid-template-columns: 1fr;
  }

  .ai-fit {
    grid-template-columns: 1fr;
  }

  .fit-chips {
    justify-content: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-mega { display: none; }
}

@media (max-width: 768px) {
  .page-shell {
    padding-top: 116px;
  }

  .page-hero,
  .page-card,
  .auth-card,
  .page-media-card {
    padding: 18px;
  }

  .page-media-card img[src$=".webp"] {
    min-height: 220px;
  }

  .hero-trust-strip {
    margin: -50px 0 30px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text-secondary);
  }

  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle:focus-visible,
  .nav-dropdown-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-mega {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 6px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(84, 127, 203, 0.24);
    background: rgba(8, 21, 45, 0.94);
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .nav-dropdown.is-open .nav-mega,
  .nav-dropdown-toggle[aria-expanded="true"] + .nav-mega {
    display: block;
  }

  .nav-mega-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav-mega-col {
    padding: 8px;
  }

  .nav-mega-featured {
    border-left: 0;
    border-top: 1px solid rgba(84, 127, 203, 0.16);
    padding: 14px 10px 10px;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  main {
    padding-bottom: 124px;
  }
}

@media (max-width: 740px) {
  .how-step {
    grid-template-columns: 56px 1fr;
    gap: 12px;
  }

  .how-step-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 0.82rem;
  }

  .how-step-line {
    left: 27px;
    top: 36px;
  }

  .how-step-card {
    padding: 18px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
  }
}

/* Real proof section */
.proof-plus {
    margin-top: 84px;
    display: grid;
    gap: 18px;
}

.proof-plus-head {
    max-width: 74ch;
}

.trusted-strip {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(84, 127, 203, 0.24);
    background: linear-gradient(160deg, rgba(8, 20, 43, 0.72), rgba(11, 29, 61, 0.58));
    box-shadow: var(--shadow-soft);
}

.trusted-label {
    color: #7ad9ff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trusted-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trusted-chips span {
    background: rgba(17, 53, 108, 0.48);
    border: 1px solid rgba(80, 208, 255, 0.18);
    border-radius: 999px;
    color: #d8ecff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 12px;
}

.proof-cases {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.proof-case {
    background: linear-gradient(165deg, rgba(9, 21, 46, 0.86), rgba(9, 21, 46, 0.72));
    border: 1px solid rgba(67, 116, 187, 0.38);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 22px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.proof-case:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 52px rgba(0, 0, 0, 0.34);
}

.proof-case-tag {
    color: #7ad9ff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proof-case h3 {
    margin: 10px 0 8px;
    color: var(--ink-1);
    font-size: 1.35rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.proof-case-metric {
    color: var(--ink-1);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.proof-case-title {
    color: #d8ecff;
    font-weight: 600;
    margin: 4px 0 10px;
    font-size: 0.98rem;
}

.proof-case p:last-child {
    color: var(--ink-3);
    margin: 0;
    line-height: 1.7;
    font-size: 0.98rem;
    font-weight: 500;
}

.review-proof-band {
    margin-top: 84px;
}

.review-proof-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 18px;
    align-items: stretch;
}

.review-proof-copy,
.review-proof-visual {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(84, 127, 203, 0.22);
    background: linear-gradient(160deg, rgba(8, 20, 43, 0.8), rgba(11, 29, 61, 0.64));
    box-shadow: var(--shadow-soft);
}

.review-proof-copy {
    display: grid;
    gap: 14px;
}

.review-proof-copy h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--ink-1);
}

.review-proof-points {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.review-proof-point {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.review-proof-point strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink-1);
    font-size: 0.98rem;
}

.review-proof-point span {
    color: rgba(232, 241, 255, 0.78);
    line-height: 1.65;
    font-weight: 600;
    font-size: 0.92rem;
}

.review-proof-visual {
    display: grid;
    gap: 14px;
}

.review-proof-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    min-height: 280px;
    background: rgba(7, 17, 38, 0.82);
}

.review-proof-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.review-proof-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: grid;
    gap: 5px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(6, 18, 38, 0.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(84, 127, 203, 0.2);
}

.review-proof-overlay span,
.review-proof-quote span {
    color: #9fe6ff;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.review-proof-overlay strong {
    color: var(--ink-1);
    font-size: 1rem;
    line-height: 1.45;
}

.review-proof-quotes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.review-proof-quote {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.review-proof-quote p {
    margin: 8px 0 0;
    color: rgba(232, 241, 255, 0.82);
    line-height: 1.65;
    font-weight: 600;
    font-size: 0.9rem;
}

/* System visual */
.system-visual {
    margin-top: 84px;
    display: grid;
    gap: 18px;
}

.system-visual-head {
    max-width: 74ch;
}

.system-panel {
    border: 1px solid rgba(84, 127, 203, 0.24);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(8, 20, 43, 0.82), rgba(11, 29, 61, 0.68));
    box-shadow: var(--shadow-strong);
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.system-panel::before {
    content: "";
    position: absolute;
    inset: -35%;
    background: radial-gradient(circle at 20% 10%, rgba(27, 180, 255, 0.14), transparent 48%);
    pointer-events: none;
}

.system-panel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.system-window-title {
    color: #eef7ff;
    font-size: 0.96rem;
    font-weight: 700;
}

.system-live {
    color: #9dffd9;
    background: rgba(35, 199, 153, 0.18);
    border: 1px solid rgba(35, 199, 153, 0.32);
    border-radius: 999px;
    padding: 6px 10px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    position: relative;
    z-index: 1;
}

.system-column {
    background: rgba(7, 13, 29, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px;
}

.system-col-label {
    margin: 0 0 12px;
    color: #7ad9ff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.system-node {
    padding: 12px;
    border-radius: 14px;
    background: rgba(17, 53, 108, 0.34);
    border: 1px solid rgba(80, 208, 255, 0.14);
    margin-bottom: 10px;
}

.system-node:last-child {
    margin-bottom: 0;
}

.system-node strong {
    display: block;
    color: #eff7ff;
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.system-node span {
    color: var(--ink-3);
    font-size: 0.82rem;
    line-height: 1.45;
}

.system-node-accent {
    border-color: rgba(80, 208, 255, 0.34);
    box-shadow: 0 0 0 1px rgba(80, 208, 255, 0.08) inset;
}

.system-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.system-metric {
    padding: 14px;
    border-radius: 16px;
    background: rgba(9, 21, 46, 0.72);
    border: 1px solid rgba(67, 116, 187, 0.24);
}

.system-metric-value {
    display: block;
    color: var(--ink-1);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.system-metric-label {
    color: var(--ink-3);
    font-size: 0.8rem;
}

/* Founder trust band */
.founder-band {
    margin-top: 84px;
}

.founder-band-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    align-items: stretch;
}

.founder-band-copy,
.founder-band-panel {
    background: linear-gradient(160deg, rgba(8, 20, 43, 0.82), rgba(11, 29, 61, 0.68));
    border: 1px solid rgba(84, 127, 203, 0.24);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.founder-band-copy h2 {
    margin: 0 0 12px;
}

.founder-band-copy p {
    color: var(--ink-3);
    line-height: 1.65;
    margin: 0 0 12px;
}

.founder-points {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.founder-point {
    padding: 14px;
    border-radius: 16px;
    background: rgba(17, 53, 108, 0.28);
    border: 1px solid rgba(80, 208, 255, 0.12);
}

.founder-point strong {
    display: block;
    color: var(--ink-1);
    margin-bottom: 4px;
}

.founder-point span {
    color: var(--ink-3);
    font-size: 0.92rem;
    line-height: 1.5;
}

.founder-panel-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #7ad9ff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.founder-mini-card {
    padding: 16px;
    border-radius: 18px;
    background: rgba(9, 21, 46, 0.68);
    border: 1px solid rgba(67, 116, 187, 0.24);
    margin-bottom: 12px;
}

.founder-mini-card h3 {
    margin: 0 0 8px;
    color: var(--ink-1);
    font-size: 1rem;
}

.founder-mini-card p {
    margin: 0;
    color: var(--ink-3);
    line-height: 1.55;
}

.founder-band-panel .btn {
    margin-top: 8px;
}

/* Booking handoff */
.booking-handoff {
    margin-top: 84px;
}

/* Keep major new sections aligned to the global container width */
.case-band,
.proof-plus,
.ai-offer,
.system-visual,
.how-it-works,
.founder-band,
.booking-handoff {
    width: min(var(--container-max), calc(100% - 2 * var(--px)));
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(64px, 7vw, 84px);
}

.how-head h2 {
    line-height: 1.24;
    text-wrap: balance;
    font-size: clamp(2.4rem, 4.4vw, 4.25rem);
    letter-spacing: -0.035em;
    font-weight: 700;
}

.how-head .offer-subcopy {
    max-width: 66ch;
    color: #d7e6ff;
    font-size: 1.05rem;
    line-height: 1.72;
    font-weight: 500;
}

.booking-handoff-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(84, 127, 203, 0.24);
    background: linear-gradient(160deg, rgba(8, 20, 43, 0.82), rgba(11, 29, 61, 0.68));
    box-shadow: var(--shadow-soft);
}

.booking-handoff-copy p {
    color: var(--ink-3);
    line-height: 1.65;
    margin: 10px 0 0;
}

.booking-handoff-points {
    display: grid;
    gap: 12px;
}

.handoff-point {
    padding: 16px;
    border-radius: 18px;
    background: rgba(9, 21, 46, 0.68);
    border: 1px solid rgba(67, 116, 187, 0.24);
}

.handoff-point strong {
    display: block;
    color: var(--ink-1);
    margin-bottom: 4px;
}

.handoff-point span {
    color: var(--ink-3);
    line-height: 1.55;
    font-size: 0.92rem;
}

/* Micro-interaction polish */
.reveal-up,
.reveal {
    transform: translateY(32px);
    transition: opacity 0.82s var(--ease-premium), transform 0.82s var(--ease-premium), filter 0.82s var(--ease-premium);
}

.summary-card,
.stack-card,
.positioning-card,
.after-card,
.case-band-card,
.proof-case,
.system-column,
.system-metric,
.founder-point,
.founder-mini-card,
.handoff-point {
    border-radius: var(--radius-card);
    transition: transform 0.28s var(--ease-premium), box-shadow 0.28s var(--ease-premium), border-color 0.28s var(--ease-premium);
}

.btn,
.problem-pill,
.fit-chips span,
.trusted-chips span,
.system-live {
    border-radius: var(--radius-pill);
}

@media (max-width: 980px) {
    .hero-stats,
    .hero-live-grid,
    .trust-summary-row,
    .results-panel-grid,
    .process-box-grid,
    .case-study-grid,
    .comparison-grid,
    .calculator-grid,
    .review-proof-shell,
    .review-proof-quotes,
    .proof-cases,
    .system-grid,
    .system-metrics,
    .founder-band-grid,
    .booking-handoff-card {
        grid-template-columns: 1fr;
    }

    .implementation-grid {
        grid-template-columns: 1fr 1fr;
    }

    .calculator-inputs,
    .calculator-results,
    .ghl-mockup-grid,
    .ghl-grid,
    .calculator-compare,
    .calculator-preview-row,
    .footer-brand-panel-grid {
        grid-template-columns: 1fr;
    }

    .calculator-cta-bar {
        align-items: flex-start;
        flex-direction: column;
    }

}

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

    .marquee-shell {
        padding: 24px 0;
    }

    .marquee-track {
        gap: 24px;
        padding-left: 24px;
    }

    .marquee-item {
        width: 132px;
        height: 76px;
    }

    .marquee-logo img {
        max-width: 144px;
        max-height: 46px;
    }

    .marquee-item--icon .marquee-logo img {
        max-width: 38px;
        max-height: 38px;
    }

    .marquee-fade {
        width: 72px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .proof-plus,
    .calculator-section,
    .system-visual,
    .founder-band,
    .booking-handoff,
    .ai-offer,
    .case-band,
    .how-it-works {
        width: min(var(--container-max), calc(100% - 40px));
        margin-top: 64px;
    }

    .system-panel,
    .calculator-card,
    .founder-band-copy,
    .founder-band-panel,
    .booking-handoff-card {
        padding: 18px;
    }

    .trust-marquee-section,
    .ghl-section {
        width: min(var(--container-max), calc(100% - 40px));
        margin-top: 64px;
    }

    .how-head h2,
    .proof-plus-head h2,
    .system-visual-head h2 {
        line-height: 1.3;
    }

    .marquee-item {
        padding: 11px 16px;
        font-size: 0.92rem;
    }

    .hero-live-card,
    .trust-summary-card {
        padding: 14px;
    }

    .hero-app-shell {
        grid-template-columns: 1fr;
    }

    .hero-message {
        max-width: 100%;
    }

    .process-visual {
        height: 148px;
    }

    .process-visual-ai > span:nth-of-type(1) {
        width: 124px;
        height: 124px;
    }

    .process-visual-close > span:nth-of-type(1) {
        left: 14px;
        width: 136px;
    }

    .process-visual-close > span:nth-of-type(4) {
        right: 14px;
        width: 100px;
    }

    .process-visual-close::before {
        left: 126px;
        right: 92px;
    }

    .lead-pipeline-card {
        width: 152px;
    }

    .lead-feed-card,
    .ai-transcript-card {
        width: 128px;
    }

    .close-chart-card {
        width: 142px;
    }

    .close-confirm-card {
        width: 116px;
    }

    .close-metric-card {
        width: 118px;
    }

    .calculator-grid {
        gap: 14px;
    }

    .calculator-result strong,
    .calculator-cta-copy strong {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .proof-plus,
    .system-visual,
    .founder-band,
    .booking-handoff,
    .ai-offer,
    .case-band,
    .how-it-works {
        width: min(var(--container-max), calc(100% - 32px));
        margin-top: 56px;
    }

    .trust-marquee-section,
    .ghl-section {
        width: min(var(--container-max), calc(100% - 32px));
        margin-top: 56px;
    }

    .process-box,
    .calculator-card,
    .ghl-mockup {
        padding: 16px;
    }

    .calculator-cta-bar {
        padding: 18px;
    }

    .lead-flow-chip,
    .ai-channel-pill,
    .ai-response-bubble {
        font-size: 0.7rem;
        padding: 7px 10px;
    }

    .lead-pipeline-card,
    .lead-feed-card,
    .ai-transcript-card,
    .close-chart-card,
    .close-confirm-card,
    .close-metric-card {
        padding: 12px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 11vw, 3.4rem);
    }

    .hero-live-card strong,
    .trust-summary-card strong {
        font-size: 0.92rem;
    }
}

.nav-logo img {
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero-card-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(84, 127, 203, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.hero-card-logo {
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.hero-card-brand strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-1);
  font-size: 1rem;
}

.hero-card-brand p {
  margin: 0;
  color: var(--ink-3);
  line-height: 1.55;
  font-size: 0.9rem;
}

/* ===== FULL REBUILD LAYER ===== */
.rebuild-main {
  display: grid;
  gap: clamp(68px, 9vw, 112px);
  padding: clamp(24px, 4vw, 40px) 0 clamp(96px, 11vw, 140px);
}

.rebuild-hero,
.rebuild-trust,
.rebuild-problem,
.rebuild-process,
.rebuild-proof,
.rebuild-comparison,
.rebuild-calculator,
.rebuild-integrations,
.rebuild-implementation,
.rebuild-faq,
.rebuild-contact,
.rebuild-final-cta {
  position: relative;
}

.rebuild-hero::before,
.rebuild-proof::before,
.rebuild-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 24%, rgba(0, 183, 255, 0.08), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(0, 255, 209, 0.05), transparent 24%);
  opacity: 0.82;
}

.rebuild-section-head {
  display: grid;
  gap: 12px;
  max-width: 72ch;
}

.rebuild-section-head-center {
  margin-inline: auto;
  text-align: center;
}

.rebuild-section-head h2,
.rebuild-hero-copy h1,
.rebuild-final-cta-shell h2 {
  color: var(--ink-1);
  font-size: clamp(2.15rem, 4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.28);
}

.rebuild-section-head h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.rebuild-section-head p,
.rebuild-sublead,
.rebuild-final-cta-shell p {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
}

.rebuild-hero-grid,
.rebuild-integrations-grid,
.rebuild-faq-grid,
.rebuild-footer-grid {
  width: min(var(--container-max), calc(100% - 2 * var(--px)));
  margin-inline: auto;
}

.rebuild-hero-grid,
.rebuild-integrations-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.rebuild-hero-copy,
.rebuild-contact-copy {
  display: grid;
  gap: 18px;
}

.rebuild-lead {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  color: #bfe9ff;
  letter-spacing: -0.03em;
}

.rebuild-cta-row,
.rebuild-chip-row,
.rebuild-trust-line {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rebuild-trust-line span,
.rebuild-chip-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--ink-3);
  font-size: 0.92rem;
}

.rebuild-metrics-bar,
.rebuild-proof-bar,
.rebuild-problem-grid,
.rebuild-proof-grid,
.rebuild-testimonial-grid,
.rebuild-case-grid,
.rebuild-compare-grid,
.rebuild-implementation-grid {
  display: grid;
  gap: 16px;
}

.rebuild-metrics-bar,
.rebuild-proof-bar,
.rebuild-problem-grid,
.rebuild-testimonial-grid,
.rebuild-case-grid,
.rebuild-compare-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rebuild-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rebuild-implementation-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.rebuild-metrics-bar article,
.rebuild-proof-bar article,
.rebuild-stat-card,
.rebuild-proof-card,
.rebuild-quote-card,
.rebuild-case-card,
.rebuild-compare-card,
.rebuild-calc-shell,
.rebuild-hero-shell,
.rebuild-contact-shell,
.rebuild-final-cta-shell,
.rebuild-implementation-card,
.rebuild-footer {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 18, 40, 0.8), rgba(10, 18, 40, 0.58));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.rebuild-metrics-bar article,
.rebuild-proof-bar article,
.rebuild-stat-card,
.rebuild-proof-card,
.rebuild-quote-card,
.rebuild-case-card,
.rebuild-compare-card,
.rebuild-implementation-card {
  padding: 22px;
  border-radius: 22px;
  backdrop-filter: blur(14px);
  transition: transform 0.28s var(--ease-premium), border-color 0.28s var(--ease-premium), box-shadow 0.28s var(--ease-premium), background 0.28s var(--ease-premium);
}

.rebuild-metrics-bar article:hover,
.rebuild-proof-bar article:hover,
.rebuild-stat-card:hover,
.rebuild-proof-card:hover,
.rebuild-quote-card:hover,
.rebuild-case-card:hover,
.rebuild-compare-card:hover,
.rebuild-implementation-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.26);
}

.rebuild-metrics-bar strong,
.rebuild-stat-card strong,
.rebuild-proof-card strong {
  display: block;
  color: var(--ink-1);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
  margin-top: 12px;
}

.rebuild-metrics-bar span,
.rebuild-proof-bar span,
.rebuild-stat-card span,
.rebuild-proof-card span,
.rebuild-quote-card span,
.rebuild-case-card span,
.rebuild-compare-card span,
.rebuild-implementation-card span {
  color: #9fe6ff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rebuild-hero-shell,
.rebuild-calc-shell,
.rebuild-contact-shell,
.rebuild-final-cta-shell {
  padding: 26px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.rebuild-hero-shell::before,
.rebuild-calc-shell::before,
.rebuild-final-cta-shell::before {
  content: "";
  position: absolute;
  inset: -22% auto auto -12%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 183, 255, 0.12), transparent 68%);
  pointer-events: none;
}

.rebuild-windowbar,
.rebuild-ui-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-3);
  font-size: 0.82rem;
  font-weight: 700;
}

.rebuild-windowbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.rebuild-windowbar {
  margin-bottom: 18px;
}

.rebuild-hero-top,
.rebuild-hero-bottom,
.rebuild-calc-grid,
.rebuild-integration-grid,
.rebuild-process-grid,
.rebuild-contact-shell,
.rebuild-footer-grid,
.rebuild-faq-grid {
  display: grid;
  gap: 14px;
}

.rebuild-hero-top,
.rebuild-hero-bottom,
.rebuild-integration-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rebuild-process-grid {
  width: min(var(--container-max), calc(100% - 2 * var(--px)));
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.rebuild-process-grid::before {
  content: "";
  position: absolute;
  top: 126px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 183, 255, 0.32), rgba(0, 255, 209, 0.24), transparent);
  pointer-events: none;
}

.rebuild-step-card,
.rebuild-status-card,
.rebuild-mini-panel,
.rebuild-ui-window,
.rebuild-flow-card,
.rebuild-calc-inputs,
.rebuild-calc-results,
.rebuild-calc-cta {
  display: grid;
  gap: 12px;
}

.rebuild-step-card,
.rebuild-status-card,
.rebuild-mini-panel,
.rebuild-ui-window,
.rebuild-flow-card,
.rebuild-calc-inputs,
.rebuild-calc-results,
.rebuild-calc-cta {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rebuild-step-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 18, 40, 0.8), rgba(10, 18, 40, 0.6));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.rebuild-step-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 183, 255, 0.12), transparent 72%);
  opacity: 0.7;
  pointer-events: none;
}

.rebuild-status-card-accent,
.rebuild-step-card-featured,
.rebuild-compare-card-featured {
  border-color: rgba(116, 211, 255, 0.26);
  background:
    linear-gradient(155deg, rgba(155, 224, 255, 0.08), rgba(0, 255, 209, 0.04) 36%, rgba(255, 255, 255, 0.015) 100%),
    linear-gradient(180deg, rgba(8, 22, 46, 0.94), rgba(8, 22, 46, 0.7));
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(116, 211, 255, 0.08) inset,
    0 0 28px rgba(0, 183, 255, 0.08);
}

.rebuild-transcript,
.rebuild-transcript-mini,
.rebuild-tag-row,
.rebuild-flow-row,
.rebuild-contact-actions,
.rebuild-footer-links,
.rebuild-footer-contact {
  display: grid;
  gap: 10px;
}

.rebuild-transcript-line {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rebuild-transcript-line-ai {
  background: rgba(0, 183, 255, 0.08);
  border-color: rgba(0, 183, 255, 0.14);
}

.rebuild-transcript-role,
.rebuild-step-eyebrow {
  color: #9fe6ff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rebuild-step-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rebuild-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-1);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 10px rgba(255, 255, 255, 0.015);
}

.rebuild-step-card h3,
.rebuild-compare-card h3,
.rebuild-case-card h3,
.rebuild-implementation-card h3 {
  color: var(--ink-1);
  font-size: 1.28rem;
  line-height: 1.14;
}

.rebuild-step-card small {
  color: var(--ink-3);
  font-size: 0.95rem;
}

.rebuild-metric-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.rebuild-metric-stack div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.rebuild-metric-stack strong {
  display: block;
  color: var(--ink-1);
  font-size: 1.8rem;
}

.rebuild-compare-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.rebuild-compare-card li {
  position: relative;
  padding-left: 16px;
  color: var(--text-secondary);
}

.rebuild-compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-2);
}

.rebuild-calc-grid {
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 18px;
}

.rebuild-calc-cta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-color: rgba(0, 183, 255, 0.16);
  background: linear-gradient(180deg, rgba(8, 22, 46, 0.76), rgba(8, 22, 46, 0.56));
}

.rebuild-calc-cta strong {
  display: block;
  color: var(--ink-1);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.rebuild-contact-shell,
.rebuild-footer-grid {
  grid-template-columns: 1.1fr 1fr;
}

.rebuild-faq-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.rebuild-final-cta-shell {
  width: min(var(--container-max), calc(100% - 2 * var(--px)));
  margin-inline: auto;
  text-align: center;
  display: grid;
  gap: 16px;
}

.rebuild-footer {
  width: min(var(--container-max), calc(100% - 2 * var(--px)));
  margin: 0 auto 36px;
  padding: 24px;
  border-radius: 28px;
}

.rebuild-footer-links a,
.rebuild-footer-contact a {
  transition: color 0.24s var(--ease-premium), transform 0.24s var(--ease-premium);
}

.rebuild-footer-links a:hover,
.rebuild-footer-contact a:hover {
  color: var(--ink-1);
  transform: translateX(2px);
}

.rebuild-inline-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.rebuild-marquee {
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .rebuild-hero-grid,
  .rebuild-integrations-grid,
  .rebuild-faq-grid,
  .rebuild-contact-shell,
  .rebuild-footer-grid,
  .rebuild-calc-grid,
  .rebuild-process-grid,
  .rebuild-proof-grid,
  .rebuild-testimonial-grid,
  .rebuild-case-grid,
  .rebuild-compare-grid,
  .rebuild-implementation-grid,
  .rebuild-metrics-bar,
  .rebuild-proof-bar,
  .rebuild-problem-grid {
    grid-template-columns: 1fr;
  }

  .rebuild-hero-top,
  .rebuild-hero-bottom,
  .rebuild-integration-grid {
    grid-template-columns: 1fr;
  }

  .rebuild-process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .rebuild-main {
    gap: 56px;
  }

  .rebuild-hero-copy h1,
  .rebuild-final-cta-shell h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .rebuild-cta-row,
  .rebuild-calc-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .rebuild-hero-shell,
  .rebuild-calc-shell,
  .rebuild-contact-shell,
  .rebuild-final-cta-shell,
  .rebuild-footer {
    padding: 20px;
  }
}

.rebuild-main .btn-primary,
.rebuild-main .btn-secondary,
.rebuild-footer .btn-primary,
.rebuild-footer .btn-secondary,
.btn-nav {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s var(--ease-premium),
    box-shadow 0.28s var(--ease-premium),
    border-color 0.28s var(--ease-premium),
    background 0.28s var(--ease-premium),
    color 0.28s var(--ease-premium);
}

.rebuild-main .btn-primary,
.rebuild-footer .btn-primary,
.btn-nav {
  box-shadow: 0 16px 36px rgba(0, 183, 255, 0.18);
}

.rebuild-main .btn-primary:hover,
.rebuild-footer .btn-primary:hover,
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0, 183, 255, 0.24);
}

.rebuild-main .btn-secondary,
.rebuild-footer .btn-secondary {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
}

.rebuild-main .btn-secondary:hover,
.rebuild-footer .btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--ink-1);
}

.nav-link.active::after {
  width: 100%;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
}

.offer-kicker {
  letter-spacing: 0.12em;
}

.rebuild-section-head h2 {
  max-width: 18ch;
}

.rebuild-section-head-center h2 {
  margin-inline: auto;
}

.rebuild-hero-copy h1 {
  max-width: 12ch;
}

.rebuild-sublead {
  max-width: 56ch;
}

.rebuild-hero-visual,
.rebuild-step-card,
.rebuild-proof-card,
.rebuild-compare-card,
.rebuild-case-card,
.rebuild-quote-card,
.rebuild-implementation-card {
  transform-style: preserve-3d;
}

.rebuild-hero-shell {
  transition: transform 0.34s var(--ease-premium), border-color 0.34s var(--ease-premium), box-shadow 0.34s var(--ease-premium);
}

.rebuild-hero-shell:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(0, 183, 255, 0.08) inset;
}

.rebuild-status-card,
.rebuild-mini-panel,
.rebuild-ui-window,
.calculator-result {
  position: relative;
  overflow: hidden;
}

.rebuild-status-card::before,
.rebuild-mini-panel::before,
.rebuild-ui-window::before,
.calculator-result::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.06) 50%, transparent 80%);
  transform: translateX(-125%);
  opacity: 0;
  pointer-events: none;
}

.rebuild-status-card:hover::before,
.rebuild-mini-panel:hover::before,
.rebuild-ui-window:hover::before,
.calculator-result:hover::before {
  opacity: 1;
  transform: translateX(125%);
  transition: transform 1.2s var(--ease-premium), opacity 0.4s var(--ease-premium);
}

.rebuild-windowbar strong,
.rebuild-ui-bar strong {
  color: var(--ink-2);
  font-weight: 600;
}

.rebuild-windowbar strong::before,
.rebuild-ui-bar strong::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #5cffc7;
  box-shadow: 0 0 0 0 rgba(92, 255, 199, 0.4);
  animation: rebuildPulseDot 2.4s ease-out infinite;
  vertical-align: middle;
}

.rebuild-transcript-line p,
.rebuild-transcript-mini p {
  position: relative;
}

.rebuild-transcript-line p.is-typing::after,
.rebuild-transcript-mini p.is-typing::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 4px;
  vertical-align: -0.14em;
  background: rgba(191, 233, 255, 0.9);
  animation: rebuildCaretBlink 0.9s steps(1) infinite;
}

.rebuild-step-card {
  transition: transform 0.34s var(--ease-premium), border-color 0.34s var(--ease-premium), box-shadow 0.34s var(--ease-premium), background 0.34s var(--ease-premium);
}

.rebuild-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(0, 183, 255, 0.06) inset;
}

.rebuild-step-card-featured {
  transform: translateY(-6px);
}

.rebuild-step-card-featured:hover {
  transform: translateY(-10px);
}

.rebuild-step-card-featured .rebuild-step-number {
  background: linear-gradient(180deg, rgba(0, 183, 255, 0.18), rgba(0, 255, 209, 0.1));
}

.rebuild-tag-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rebuild-tag-row span,
.rebuild-flow-row span {
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--ink-2);
  text-align: center;
  font-size: 0.84rem;
}

.rebuild-flow-card-success {
  border-color: rgba(92, 255, 199, 0.14);
  background: linear-gradient(180deg, rgba(11, 29, 34, 0.66), rgba(9, 24, 31, 0.54));
}

.rebuild-proof-grid .rebuild-proof-card,
.rebuild-testimonial-grid .rebuild-quote-card,
.rebuild-case-grid .rebuild-case-card,
.rebuild-compare-grid .rebuild-compare-card,
.rebuild-implementation-grid .rebuild-implementation-card {
  min-height: 100%;
}

.calculator-result strong,
#calcReadySave {
  transition: transform 0.32s var(--ease-premium), color 0.32s var(--ease-premium), text-shadow 0.32s var(--ease-premium);
}

.value-updated {
  animation: rebuildValueFlash 0.48s var(--ease-premium);
}

.rebuild-calc-cta .btn {
  flex-shrink: 0;
}

.rebuild-contact-actions .btn {
  justify-content: center;
}

@keyframes rebuildCaretBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes rebuildPulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(92, 255, 199, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(92, 255, 199, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(92, 255, 199, 0);
  }
}

@keyframes rebuildValueFlash {
  0% {
    transform: translateY(3px);
    color: #8df0ff;
    text-shadow: 0 0 0 rgba(141, 240, 255, 0);
  }
  55% {
    transform: translateY(0);
    color: #d8f7ff;
    text-shadow: 0 0 20px rgba(141, 240, 255, 0.2);
  }
  100% {
    color: inherit;
    text-shadow: none;
  }
}

@media (max-width: 768px) {
  .rebuild-section-head h2,
  .rebuild-hero-copy h1 {
    max-width: none;
  }

  .rebuild-tag-row {
    grid-template-columns: 1fr;
  }
}

.rebuild-hero {
  padding-bottom: 10px;
}

.rebuild-trust {
  margin-top: clamp(-34px, -4vw, -18px);
}

.rebuild-trust::before {
  content: "";
  position: absolute;
  inset: -8% 0 auto;
  height: 240px;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 32%, rgba(0, 183, 255, 0.08), transparent 26%),
    radial-gradient(circle at 78% 54%, rgba(0, 255, 209, 0.06), transparent 24%);
  opacity: 0.8;
}

.rebuild-trust .rebuild-section-head {
  max-width: 62ch;
  gap: 10px;
  margin-bottom: 14px;
}

.rebuild-trust .rebuild-section-head h2 {
  max-width: 14ch;
}

.rebuild-hero-copy {
  gap: 16px;
}

.rebuild-cta-row {
  padding-top: 2px;
}

.rebuild-trust-line {
  gap: 8px;
}

.rebuild-trust-line span {
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.028);
}

.rebuild-metrics-bar {
  margin-top: 4px;
}

.rebuild-metrics-bar article,
.rebuild-proof-bar article {
  min-height: 100%;
}

.rebuild-metrics-bar article {
  padding: 20px 20px 22px;
  background: linear-gradient(180deg, rgba(11, 18, 38, 0.7), rgba(9, 17, 35, 0.5));
}

.rebuild-metrics-bar article strong {
  letter-spacing: -0.05em;
}

.rebuild-proof-bar {
  margin-top: 16px;
  position: relative;
}

.rebuild-proof-bar article {
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.018));
}

.rebuild-proof-bar article strong {
  display: block;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.45;
  margin-top: 10px;
}

.rebuild-proof-bar article:nth-child(1) strong {
  color: rgba(198, 218, 236, 0.9);
}

.rebuild-proof-bar article:nth-child(2) strong,
.rebuild-proof-bar article:nth-child(3) strong {
  color: #b8eeff;
}

.rebuild-proof-bar::after {
  content: "Performance calculator below";
  display: block;
  margin: 12px auto 0;
  width: fit-content;
  color: rgba(184, 238, 255, 0.72);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rebuild-hero-shell {
  padding: 22px;
}

.rebuild-windowbar {
  margin-bottom: 14px;
  opacity: 0.92;
}

.rebuild-windowbar,
.rebuild-ui-bar {
  font-size: 0.76rem;
  color: rgba(233, 242, 250, 0.9);
}

.rebuild-windowbar strong,
.rebuild-ui-bar strong {
  color: rgba(248, 252, 255, 0.98);
  font-weight: 600;
}

.rebuild-step-card:nth-child(1) .rebuild-ui-bar strong,
.rebuild-step-card:nth-child(3) .rebuild-ui-bar strong {
  color: rgba(198, 218, 236, 0.86);
}

.rebuild-step-card:nth-child(2) .rebuild-ui-bar strong,
.rebuild-integrations .rebuild-ui-bar strong {
  color: #b8eeff;
}

.rebuild-windowbar span:nth-child(1) {
  background: rgba(255, 255, 255, 0.34);
}

.rebuild-windowbar span:nth-child(2) {
  background: rgba(255, 255, 255, 0.2);
}

.rebuild-windowbar span:nth-child(3) {
  background: rgba(255, 255, 255, 0.14);
}

.rebuild-hero-top {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.rebuild-status-card,
.rebuild-mini-panel {
  gap: 8px;
}

.rebuild-status-card:not(.rebuild-status-card-accent) strong,
.rebuild-mini-panel:nth-child(1) strong {
  color: rgba(198, 218, 236, 0.92);
}

.rebuild-status-card-accent strong,
.rebuild-mini-panel:nth-child(2) strong,
.rebuild-mini-panel:nth-child(3) strong {
  color: #b8eeff;
}

.rebuild-status-card-accent {
  border-color: rgba(116, 211, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(116, 211, 255, 0.06), rgba(0, 255, 209, 0.018)),
    rgba(255, 255, 255, 0.016);
}

.rebuild-status-card strong,
.rebuild-mini-panel strong {
  color: rgba(248, 252, 255, 0.98);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-size: 0.98rem;
}

.rebuild-status-card p,
.rebuild-mini-panel span + strong + p,
.rebuild-flow-card p {
  line-height: 1.46;
  color: rgba(232, 240, 248, 0.9);
  max-width: 30ch;
}

.rebuild-transcript {
  gap: 8px;
}

.rebuild-transcript-line {
  padding: 12px 14px;
}

.rebuild-transcript-line .rebuild-transcript-role {
  color: rgba(214, 228, 241, 0.92);
}

.rebuild-transcript-line-ai .rebuild-transcript-role {
  color: #b8eeff;
}

.rebuild-hero-bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.rebuild-mini-panel {
  padding: 14px;
}

.rebuild-marquee {
  margin-top: 14px;
}

.rebuild-marquee.marquee-shell {
  padding: 28px 0 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(87, 199, 255, 0.06), transparent 56%),
    linear-gradient(180deg, rgba(8, 20, 43, 0.14), rgba(9, 21, 46, 0.08));
}

.rebuild-marquee .marquee-track {
  gap: 54px;
  padding-left: 54px;
  animation-duration: 54s;
}

.rebuild-marquee .marquee-item {
  width: 188px;
  height: 88px;
  opacity: 0.96;
}

.rebuild-marquee .marquee-logo img {
  max-height: 58px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.12));
}

.rebuild-marquee .marquee-item--icon .marquee-logo img,
.rebuild-marquee .marquee-item--retell .marquee-logo img {
  max-width: 48px;
  max-height: 48px;
}

.rebuild-marquee .marquee-item--hospital-cima .marquee-logo img {
  max-width: 176px;
  max-height: 54px;
}

.rebuild-marquee .marquee-item--coldwell-banker .marquee-logo img {
  max-width: 170px;
  max-height: 58px;
}

.rebuild-marquee .marquee-item--colliers .marquee-logo img {
  max-width: 132px;
  max-height: 56px;
}

.rebuild-marquee .marquee-fade {
  width: 156px;
}

@media (max-width: 1100px) {
  .rebuild-trust {
    margin-top: 0;
  }

  .rebuild-hero-top,
  .rebuild-hero-bottom {
    grid-template-columns: 1fr;
  }
}

.rebuild-proof,
.rebuild-comparison,
.rebuild-implementation {
  isolation: isolate;
}

.rebuild-comparison::before,
.rebuild-implementation::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 28%, rgba(0, 183, 255, 0.06), transparent 26%),
    radial-gradient(circle at 82% 70%, rgba(0, 255, 209, 0.04), transparent 24%);
  opacity: 0.72;
}

.rebuild-proof .rebuild-section-head,
.rebuild-comparison .rebuild-section-head,
.rebuild-implementation .rebuild-section-head {
  margin-bottom: 18px;
}

.rebuild-proof-grid {
  gap: 14px;
}

.rebuild-proof-card,
.rebuild-quote-card,
.rebuild-case-card,
.rebuild-compare-card,
.rebuild-implementation-card {
  position: relative;
  overflow: hidden;
}

.rebuild-proof-card::before,
.rebuild-quote-card::before,
.rebuild-case-card::before,
.rebuild-compare-card::before,
.rebuild-implementation-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 183, 255, 0.5), rgba(0, 255, 209, 0.16), transparent 78%);
  opacity: 0.56;
}

.rebuild-proof-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 206px;
  background:
    linear-gradient(180deg, rgba(11, 20, 44, 0.84), rgba(9, 18, 38, 0.62));
}

.rebuild-proof-card strong {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  letter-spacing: -0.06em;
}

.rebuild-proof-card p {
  max-width: 24ch;
}

.rebuild-testimonial-grid,
.rebuild-case-grid {
  margin-top: 16px;
}

.rebuild-quote-card {
  min-height: 200px;
  padding-top: 26px;
}

.rebuild-quote-card::after {
  content: "“";
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: 4.8rem;
  line-height: 1;
}

.rebuild-quote-card p {
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.62;
  max-width: 30ch;
}

.rebuild-client-card {
  gap: 10px;
  align-content: start;
}

.rebuild-client-card::after {
  content: "";
}

.rebuild-client-card h3 {
  color: var(--ink-1);
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.rebuild-client-card-logo {
  align-content: start;
}

.rebuild-client-proof-head {
  display: grid;
  gap: 8px;
  margin: 20px 0 16px;
}

.rebuild-client-proof-head h3 {
  color: var(--ink-1);
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.rebuild-testimonial-grid-clients {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.rebuild-client-logo-wrap {
  min-height: 120px;
  display: grid;
  align-items: center;
  justify-items: center;
}

.rebuild-client-logo {
  width: auto;
  max-width: 220px;
  max-height: 72px;
  height: auto;
  display: block;
  margin: 0;
}

.rebuild-client-logo-coldwell {
  max-width: 230px;
  max-height: 82px;
}

.rebuild-client-logo-colliers {
  max-width: 170px;
  max-height: 78px;
}

.rebuild-client-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.rebuild-client-results div {
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 12px;
  align-content: start;
  min-height: 78px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.014);
  border: 1px solid rgba(255, 255, 255, 0.045);
}

.rebuild-client-results small {
  color: rgba(209, 225, 240, 0.58);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rebuild-client-results strong {
  color: rgba(244, 249, 253, 0.9);
  font-size: 0.92rem;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.rebuild-case-card {
  min-height: 210px;
  padding-bottom: 26px;
}

.rebuild-case-card h3 {
  max-width: 15ch;
}

.rebuild-case-card p {
  max-width: 31ch;
}

.rebuild-case-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent);
}

.rebuild-compare-grid {
  gap: 18px;
  align-items: stretch;
}

.rebuild-compare-card {
  min-height: 100%;
  display: grid;
  gap: 14px;
  padding-top: 24px;
}

.rebuild-compare-card h3 {
  max-width: 13ch;
}

.rebuild-compare-card ul {
  gap: 12px;
  margin-top: 2px;
}

.rebuild-compare-card li {
  padding-left: 18px;
  line-height: 1.55;
}

.rebuild-compare-card-featured {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(8, 24, 50, 0.92), rgba(8, 22, 46, 0.68));
}

.rebuild-compare-card-featured::before {
  height: 2px;
  opacity: 0.9;
}

.rebuild-compare-card-featured h3,
.rebuild-compare-card-featured li {
  color: var(--ink-1);
}

.rebuild-implementation-grid {
  position: relative;
  gap: 16px;
}

.rebuild-implementation-grid::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.rebuild-implementation-card {
  min-height: 210px;
  padding-top: 24px;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(11, 20, 44, 0.78), rgba(9, 18, 38, 0.56));
}

.rebuild-implementation-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rebuild-implementation-card p {
  max-width: 24ch;
  line-height: 1.58;
}

@media (min-width: 1101px) {
  .rebuild-compare-grid {
    grid-template-columns: 0.95fr 0.95fr 1.1fr;
  }

  .rebuild-proof-grid .rebuild-proof-card:nth-child(1),
  .rebuild-proof-grid .rebuild-proof-card:nth-child(4) {
    transform: translateY(10px);
  }
}

@media (max-width: 1100px) {
  .rebuild-implementation-grid::before {
    display: none;
  }

  .rebuild-compare-card-featured {
    transform: none;
  }
}

.rebuild-faq,
.rebuild-contact,
.rebuild-final-cta,
.rebuild-footer {
  isolation: isolate;
}

.rebuild-faq::before,
.rebuild-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(0, 183, 255, 0.05), transparent 24%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 209, 0.035), transparent 22%);
  opacity: 0.72;
}

.rebuild-faq .rebuild-section-head,
.rebuild-contact .rebuild-contact-copy {
  align-self: start;
}

.rebuild-faq .rebuild-section-head {
  max-width: 54ch;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-detail {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(11, 20, 44, 0.78), rgba(9, 18, 38, 0.54));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transition: border-color 0.28s var(--ease-premium), box-shadow 0.28s var(--ease-premium), transform 0.28s var(--ease-premium);
}

.faq-detail::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 183, 255, 0.45), rgba(0, 255, 209, 0.16), transparent 78%);
  opacity: 0.62;
}

.faq-detail[open],
.faq-detail:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.faq-detail summary {
  list-style: none;
  padding: 22px 56px 22px 22px;
  color: var(--ink-1);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  position: relative;
}

.faq-detail summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #9fe6ff;
  font-size: 1.4rem;
  font-weight: 500;
  transition: transform 0.24s var(--ease-premium), color 0.24s var(--ease-premium);
}

.faq-detail[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--ink-1);
}

.faq-detail p {
  padding: 0 22px 22px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 58ch;
}

.rebuild-contact-shell {
  padding: 28px;
  align-items: stretch;
  gap: 20px;
}

.rebuild-contact-copy h2 {
  color: var(--ink-1);
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.rebuild-contact-copy p {
  max-width: 50ch;
}

.rebuild-contact-actions {
  align-content: center;
  gap: 12px;
}

.rebuild-contact-actions .btn {
  min-height: 58px;
}

.rebuild-contact-actions .btn-primary {
  box-shadow: 0 20px 40px rgba(0, 183, 255, 0.18);
}

.rebuild-final-cta {
  padding-top: 8px;
}

.rebuild-final-cta-shell {
  padding: clamp(28px, 4vw, 40px);
  gap: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 183, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(10, 18, 40, 0.9), rgba(10, 18, 40, 0.64));
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.rebuild-final-cta-shell h2 {
  max-width: 11ch;
  margin-inline: auto;
}

.rebuild-final-cta-shell p {
  max-width: 54ch;
  margin-inline: auto;
}

.rebuild-cta-row-center {
  justify-content: center;
}

.rebuild-footer {
  position: relative;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(10, 18, 40, 0.86), rgba(10, 18, 40, 0.66));
}

.rebuild-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 183, 255, 0.06), transparent 34%, transparent 66%, rgba(0, 255, 209, 0.04));
  opacity: 0.85;
}

.rebuild-footer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.2fr 0.85fr 0.95fr;
  gap: 22px;
}

.rebuild-footer-brand,
.rebuild-footer-links,
.rebuild-footer-contact {
  display: grid;
  gap: 14px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.rebuild-footer-brand {
  max-width: none;
}

.rebuild-footer-brand p {
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 36ch;
}

.rebuild-footer-links,
.rebuild-footer-contact {
  gap: 12px;
  align-content: start;
}

.rebuild-footer .nav-logo {
  width: fit-content;
}

.rebuild-footer-links::before,
.rebuild-footer-contact::before {
  color: rgba(184, 238, 255, 0.78);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.rebuild-footer-links::before {
  content: attr(data-label);
}

.rebuild-footer-contact::before {
  content: attr(data-label);
}

.rebuild-footer-links a,
.rebuild-footer-contact a {
  color: var(--ink-3);
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.rebuild-footer-contact a:last-child {
  color: var(--ink-1);
  background: transparent;
}

@media (max-width: 1100px) {
  .rebuild-footer-grid {
    grid-template-columns: 1fr;
  }

  .rebuild-contact-copy h2,
  .rebuild-final-cta-shell h2 {
    max-width: none;
  }
}

.rebuild-main {
  --rebuild-shell-radius: 28px;
  --rebuild-card-radius: 22px;
  --rebuild-panel-radius: 18px;
  --rebuild-card-gap: 16px;
  --rebuild-section-gap: 18px;
  --rebuild-shell-padding: 24px;
  --rebuild-card-padding: 22px;
  --rebuild-soft-border: rgba(255, 255, 255, 0.075);
  --rebuild-soft-bg: linear-gradient(180deg, rgba(10, 18, 40, 0.78), rgba(10, 18, 40, 0.56));
  --rebuild-soft-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.rebuild-main > section {
  scroll-margin-top: 108px;
}

#hero { order: 1; }
#trust { order: 2; }
#calculator { order: 3; }
#results { order: 4; }
#process { order: 5; }
.rebuild-preview { order: 6; }
#gohighlevel { order: 7; }
#implementation { order: 8; }
#faq { order: 9; }
#contact { order: 10; }
.rebuild-final-cta { order: 11; }

.rebuild-section-head {
  gap: 10px;
}

.rebuild-section-head p,
.rebuild-sublead,
.rebuild-final-cta-shell p,
.rebuild-footer-brand p,
.faq-detail p,
.rebuild-case-card p,
.rebuild-quote-card p,
.rebuild-implementation-card p,
.rebuild-compare-card li {
  color: rgba(226, 236, 247, 0.72);
  line-height: 1.56;
}

.rebuild-metrics-bar,
.rebuild-proof-bar,
.rebuild-problem-grid,
.rebuild-proof-grid,
.rebuild-testimonial-grid,
.rebuild-case-grid,
.rebuild-compare-grid,
.rebuild-implementation-grid {
  gap: var(--rebuild-card-gap);
}

.rebuild-metrics-bar article,
.rebuild-proof-bar article,
.rebuild-stat-card,
.rebuild-proof-card,
.rebuild-quote-card,
.rebuild-case-card,
.rebuild-compare-card,
.rebuild-implementation-card {
  padding: var(--rebuild-card-padding);
  border-radius: var(--rebuild-card-radius);
  border-color: var(--rebuild-soft-border);
  backdrop-filter: blur(12px);
}

.rebuild-calc-shell,
.rebuild-hero-shell,
.rebuild-contact-shell,
.rebuild-final-cta-shell,
.rebuild-footer {
  padding: var(--rebuild-shell-padding);
  border-radius: var(--rebuild-shell-radius);
  border-color: var(--rebuild-soft-border);
  box-shadow: var(--rebuild-soft-shadow);
}

.rebuild-step-card,
.rebuild-status-card,
.rebuild-mini-panel,
.rebuild-ui-window,
.rebuild-flow-card,
.rebuild-calc-inputs,
.rebuild-calc-results,
.rebuild-calc-cta,
.calculator-field,
.calculator-result {
  border-radius: var(--rebuild-panel-radius);
}

.rebuild-step-card,
.rebuild-status-card,
.rebuild-mini-panel,
.rebuild-ui-window,
.rebuild-flow-card,
.rebuild-calc-inputs,
.rebuild-calc-results,
.rebuild-calc-cta {
  gap: 10px;
}

.rebuild-step-card h3,
.rebuild-compare-card h3,
.rebuild-case-card h3,
.rebuild-implementation-card h3,
.rebuild-contact-copy h2 {
  letter-spacing: -0.04em;
}

.rebuild-proof-card strong,
.rebuild-metrics-bar strong,
.rebuild-stat-card strong,
.rebuild-calc-cta strong,
#calcReadySave {
  letter-spacing: -0.06em;
}

.rebuild-proof-card:hover,
.rebuild-quote-card:hover,
.rebuild-case-card:hover,
.rebuild-compare-card:hover,
.rebuild-implementation-card:hover,
.rebuild-metrics-bar article:hover,
.rebuild-proof-bar article:hover {
  transform: translateY(-3px);
}

.rebuild-hero-shell:hover,
.rebuild-step-card:hover,
.rebuild-main .btn-primary:hover,
.rebuild-main .btn-secondary:hover,
.btn-nav:hover {
  transition-duration: 0.24s;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg-primary: #eef5fb;
  --bg-secondary: #e4eef8;
  --bg-card: rgba(255, 255, 255, 0.82);
  --bg-card-hover: rgba(255, 255, 255, 0.94);
  --border-color: rgba(18, 40, 74, 0.12);
  --border-hover: rgba(18, 40, 74, 0.2);
  --text-primary: #08182e;
  --text-secondary: #18385f;
  --text-muted: #2d4f79;
  --ink-1: #08182e;
  --ink-3: #214872;
  --shadow-soft: 0 24px 52px rgba(52, 86, 125, 0.12);
  --shadow-strong: 0 30px 64px rgba(52, 86, 125, 0.16);
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.985), rgba(245, 249, 255, 0.985) 30%, #edf4fc 58%, #e2edf8 100%);
  color: var(--text-primary);
}

html[data-theme="light"] body::before {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 92, 168, 0.24), transparent 17%),
    radial-gradient(circle at 82% 12%, rgba(0, 127, 184, 0.22), transparent 15%),
    radial-gradient(circle at 50% 82%, rgba(18, 74, 145, 0.18), transparent 19%),
    radial-gradient(circle at 26% 72%, rgba(45, 138, 202, 0.16), transparent 17%);
  opacity: 1;
}

html[data-theme="light"] body::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 22%, transparent 72%, rgba(145, 205, 244, 0.12)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 40%);
  opacity: 0.5;
  mix-blend-mode: normal;
}

html[data-theme="light"] .ambient-burst::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.68) 0%, rgba(112, 195, 240, 0.26) 14%, rgba(0, 127, 184, 0.16) 28%, transparent 50%);
  opacity: 0.8;
}

html[data-theme="light"] .ambient-burst::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.66) 0%, rgba(132, 214, 255, 0.18) 14%, rgba(0, 104, 173, 0.14) 28%, transparent 48%);
  opacity: 0.72;
}

html[data-theme="light"] .grain-canvas {
  opacity: 0.02 !important;
}

html[data-theme="light"] .offer-kicker {
  color: #123c63;
  border-color: rgba(18, 40, 74, 0.1);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 22px rgba(132, 162, 190, 0.08);
}

html[data-theme="light"] .nav-header {
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.92), rgba(238, 245, 251, 0.78));
  box-shadow: 0 10px 28px rgba(80, 116, 150, 0.12);
}

html[data-theme="light"] .nav-logo span,
html[data-theme="light"] .nav-link,
html[data-theme="light"] .rebuild-footer-links a:hover,
html[data-theme="light"] .rebuild-footer-contact a:hover {
  color: var(--ink-1);
}

html[data-theme="light"] .nav-utility-controls {
  border-color: rgba(18, 40, 74, 0.12);
  background: linear-gradient(180deg, rgba(240, 246, 251, 0.9), rgba(232, 240, 247, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 20px rgba(132, 162, 190, 0.12);
}

html[data-theme="light"] .nav-utility-controls::before {
  background: linear-gradient(135deg, rgba(115, 188, 221, 0.1), rgba(255, 255, 255, 0.03) 42%, rgba(145, 224, 197, 0.08));
}

html[data-theme="light"] .nav-utility-controls::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0));
}

html[data-theme="light"] .nav-utility-btn {
  color: #18385f;
}

html[data-theme="light"] .nav-utility-btn:hover {
  box-shadow: none;
}

html[data-theme="light"] .nav-utility-btn:hover .nav-utility-switch__track {
  background: rgba(225, 234, 243, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(24, 53, 88, 0.07),
    0 8px 16px rgba(132, 162, 190, 0.12);
}

html[data-theme="light"] .nav-utility-btn:active {
  box-shadow: none;
}

html[data-theme="light"] .nav-utility-btn:focus-visible {
  box-shadow:
    0 0 0 3px rgba(113, 188, 221, 0.22),
    0 10px 18px rgba(132, 162, 190, 0.14);
}

html[data-theme="light"] .nav-utility-switch__track {
  background: rgba(227, 236, 245, 0.88);
  box-shadow: inset 0 0 0 1px rgba(24, 53, 88, 0.06);
}

html[data-theme="light"] .nav-utility-switch__indicator {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 252, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 5px 12px rgba(132, 162, 190, 0.18);
}

html[data-theme="light"] .nav-utility-switch__option {
  color: #2d4f79;
}

html[data-theme="light"] .nav-utility-btn--theme[data-theme-mode="day"] .nav-utility-switch__indicator {
  background: linear-gradient(180deg, rgba(255, 240, 194, 0.98), rgba(255, 226, 155, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 5px 12px rgba(214, 177, 93, 0.18);
}

html[data-theme="light"] .nav-utility-btn--lang[data-language="es"] .nav-utility-switch__indicator {
  background: linear-gradient(180deg, rgba(221, 248, 236, 0.98), rgba(197, 236, 218, 0.94));
}

html[data-theme="light"] .nav-utility-btn--theme[data-theme-mode="night"] .nav-utility-switch__option--moon,
html[data-theme="light"] .nav-utility-btn--theme[data-theme-mode="day"] .nav-utility-switch__option--sun,
html[data-theme="light"] .nav-utility-btn--lang[data-language="en"] .nav-utility-switch__option--en,
html[data-theme="light"] .nav-utility-btn--lang[data-language="es"] .nav-utility-switch__option--es {
  color: #08182e;
}

html[data-theme="light"] .nav-utility-btn.is-active,
html[data-theme="light"] .rebuild-main .btn-primary,
html[data-theme="light"] .rebuild-footer .btn-primary,
html[data-theme="light"] .btn-nav,
html[data-theme="light"] .mobile-sticky-cta .btn-primary {
  background: linear-gradient(180deg, #10233f, #17375d);
  color: #f3fbff;
  box-shadow: 0 18px 36px rgba(23, 55, 93, 0.18);
}

html[data-theme="light"] .rebuild-main .btn-primary:hover,
html[data-theme="light"] .rebuild-footer .btn-primary:hover,
html[data-theme="light"] .btn-nav:hover {
  background: linear-gradient(180deg, #17375d, #1d4678);
}

html[data-theme="light"] .rebuild-main .btn-secondary,
html[data-theme="light"] .rebuild-footer .btn-secondary,
html[data-theme="light"] .mobile-sticky-cta .btn-secondary,
html[data-theme="light"] .nav-toggle {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.82));
  border-color: rgba(18, 40, 74, 0.12);
  color: var(--text-primary);
}

html[data-theme="light"] .rebuild-main > section::after {
  background: linear-gradient(90deg, transparent, rgba(18, 40, 74, 0.18), transparent);
}

html[data-theme="light"] .rebuild-hero-shell,
html[data-theme="light"] .rebuild-calc-shell,
html[data-theme="light"] .rebuild-contact-shell,
html[data-theme="light"] .rebuild-final-cta-shell,
html[data-theme="light"] .rebuild-footer,
html[data-theme="light"] .rebuild-ui-window,
html[data-theme="light"] .rebuild-step-card,
html[data-theme="light"] .rebuild-proof-card,
html[data-theme="light"] .rebuild-quote-card,
html[data-theme="light"] .rebuild-implementation-card,
html[data-theme="light"] .faq-detail,
html[data-theme="light"] .calculator-result,
html[data-theme="light"] .calculator-field,
html[data-theme="light"] .rebuild-benchmark-card,
html[data-theme="light"] .rebuild-benchmark-compare-card,
html[data-theme="light"] .rebuild-mini-panel,
html[data-theme="light"] .rebuild-status-card,
html[data-theme="light"] .rebuild-marquee.marquee-shell,
html[data-theme="light"] .mobile-sticky-cta {
  background: #ffffff;
  border-color: rgba(18, 40, 74, 0.16);
  box-shadow:
    0 18px 34px rgba(63, 93, 130, 0.08),
    0 0 0 1px rgba(18, 40, 74, 0.04);
}

html[data-theme="light"] .rebuild-footer::before,
html[data-theme="light"] .rebuild-final-cta-shell::after,
html[data-theme="light"] .rebuild-contact-shell::after,
html[data-theme="light"] .rebuild-calc-shell::after,
html[data-theme="light"] .rebuild-marquee.marquee-shell::after {
  box-shadow: none;
}

html[data-theme="light"] .rebuild-ui-bar,
html[data-theme="light"] .rebuild-flow-card,
html[data-theme="light"] .rebuild-flow-row,
html[data-theme="light"] .rebuild-tag-row span,
html[data-theme="light"] .rebuild-channel-strip span,
html[data-theme="light"] .rebuild-integration-notes article,
html[data-theme="light"] .rebuild-benchmark-split > div,
html[data-theme="light"] .rebuild-client-results > div {
  background: #f4f8fc;
  border-color: rgba(18, 40, 74, 0.14);
  color: var(--text-primary);
}

html[data-theme="light"] .rebuild-benchmark-compare-card-featured,
html[data-theme="light"] .rebuild-status-card-accent,
html[data-theme="light"] .rebuild-step-card-featured,
html[data-theme="light"] .calculator-result:first-child {
  background: linear-gradient(180deg, #eefafd, #eefcf8);
  border-color: rgba(0, 183, 255, 0.2);
  box-shadow:
    0 14px 28px rgba(73, 118, 160, 0.08),
    0 0 0 1px rgba(0, 183, 255, 0.05);
}

html[data-theme="light"] input,
html[data-theme="light"] textarea {
  background: #ffffff;
  border-color: rgba(18, 40, 74, 0.18);
  color: var(--text-primary);
}

html[data-theme="light"] .rebuild-footer {
  background: #ffffff;
}

html[data-theme="light"] .rebuild-footer-brand p,
html[data-theme="light"] .faq-detail p,
html[data-theme="light"] .rebuild-sublead,
html[data-theme="light"] .rebuild-final-cta-shell p,
html[data-theme="light"] .rebuild-contact-copy p {
  color: #18385f;
}

html[data-theme="light"] .rebuild-hero-copy h1,
html[data-theme="light"] .rebuild-section-head h2,
html[data-theme="light"] .rebuild-stat-card strong,
html[data-theme="light"] .rebuild-proof-card strong,
html[data-theme="light"] .rebuild-calc-cta strong,
html[data-theme="light"] #calcReadySave,
html[data-theme="light"] .calculator-result strong,
html[data-theme="light"] .rebuild-compare-card h3,
html[data-theme="light"] .rebuild-case-card h3,
html[data-theme="light"] .rebuild-implementation-card h3,
html[data-theme="light"] .faq-detail summary,
html[data-theme="light"] .rebuild-contact-copy h2,
html[data-theme="light"] .rebuild-footer .nav-logo span,
html[data-theme="light"] .rebuild-footer-links a,
html[data-theme="light"] .rebuild-footer-contact a {
  color: #08182e;
  text-shadow: none;
}

html[data-theme="light"] .rebuild-metrics-bar span,
html[data-theme="light"] .rebuild-proof-card p,
html[data-theme="light"] .rebuild-quote-card p,
html[data-theme="light"] .rebuild-case-card p,
html[data-theme="light"] .rebuild-compare-card li,
html[data-theme="light"] .rebuild-implementation-card p,
html[data-theme="light"] .calculator-result span,
html[data-theme="light"] .calculator-field label {
  color: #18385f;
}

html[data-theme="light"] .rebuild-rotating-text {
  color: #007fb8;
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  background-clip: border-box;
  text-shadow: none;
}

html[data-theme="light"] .rebuild-lead {
  color: #08182e;
  text-shadow: none;
}

html[data-theme="light"] .rebuild-sublead {
  color: #18385f;
}

html[data-theme="light"] .rebuild-trust-label,
html[data-theme="light"] .rebuild-preview-points span,
html[data-theme="light"] .rebuild-integration-notes span,
html[data-theme="light"] .rebuild-intro-proof {
  color: #214872;
}

html[data-theme="light"] .rebuild-preview-points strong,
html[data-theme="light"] .rebuild-integration-notes strong {
  color: #08182e;
}

html[data-theme="light"] .rebuild-status-card p,
html[data-theme="light"] .rebuild-mini-panel span + strong + p,
html[data-theme="light"] .rebuild-flow-card p,
html[data-theme="light"] .rebuild-transcript-line p,
html[data-theme="light"] .rebuild-windowbar,
html[data-theme="light"] .rebuild-ui-bar,
html[data-theme="light"] .rebuild-client-results span,
html[data-theme="light"] .rebuild-benchmark-split span,
html[data-theme="light"] .rebuild-benchmark-card p,
html[data-theme="light"] .rebuild-benchmark-compare-card p,
html[data-theme="light"] .calculator-result p {
  color: #18385f;
}

html[data-theme="light"] .rebuild-windowbar strong,
html[data-theme="light"] .rebuild-ui-bar strong,
html[data-theme="light"] .rebuild-status-card strong,
html[data-theme="light"] .rebuild-mini-panel strong,
html[data-theme="light"] .rebuild-preview-points strong,
html[data-theme="light"] .rebuild-integration-notes strong,
html[data-theme="light"] .rebuild-benchmark-card strong,
html[data-theme="light"] .rebuild-benchmark-compare-card strong {
  color: #08182e;
}

html[data-theme="light"] .rebuild-trust-label,
html[data-theme="light"] .rebuild-sublead,
html[data-theme="light"] .rebuild-benchmark-intro,
html[data-theme="light"] .rebuild-benchmark-scenario,
html[data-theme="light"] .rebuild-section-head p,
html[data-theme="light"] .rebuild-contact-copy p,
html[data-theme="light"] .rebuild-final-cta-shell p,
html[data-theme="light"] .rebuild-footer-brand p,
html[data-theme="light"] .faq-detail p {
  background: #e4ebf3;
  border: 1px solid rgba(18, 40, 74, 0.14);
  border-radius: 16px;
  padding: 0.9rem 1.05rem;
}

html[data-theme="light"] .rebuild-section-head p,
html[data-theme="light"] .rebuild-sublead,
html[data-theme="light"] .rebuild-benchmark-intro,
html[data-theme="light"] .rebuild-benchmark-scenario,
html[data-theme="light"] .rebuild-contact-copy p,
html[data-theme="light"] .rebuild-final-cta-shell p,
html[data-theme="light"] .rebuild-footer-brand p,
html[data-theme="light"] .faq-detail p {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

html[data-theme="light"] .rebuild-proof-bar article,
html[data-theme="light"] .rebuild-preview-points article,
html[data-theme="light"] .rebuild-integration-notes article,
html[data-theme="light"] .rebuild-client-results > div,
html[data-theme="light"] .rebuild-benchmark-split > div,
html[data-theme="light"] .rebuild-transcript-line,
html[data-theme="light"] .rebuild-hero-metrics article,
html[data-theme="light"] .rebuild-calc-cta > div,
html[data-theme="light"] .rebuild-flow-card,
html[data-theme="light"] .rebuild-flow-row,
html[data-theme="light"] .rebuild-ui-bar,
html[data-theme="light"] .rebuild-status-card,
html[data-theme="light"] .rebuild-mini-panel,
html[data-theme="light"] .rebuild-tag-row span,
html[data-theme="light"] .rebuild-channel-strip span {
  background: #e1e8f1;
  border-color: rgba(18, 40, 74, 0.18);
  box-shadow: none;
}

html[data-theme="light"] .rebuild-proof-bar article p,
html[data-theme="light"] .rebuild-preview-points article p,
html[data-theme="light"] .rebuild-integration-notes article p,
html[data-theme="light"] .rebuild-client-results span,
html[data-theme="light"] .rebuild-benchmark-split span,
html[data-theme="light"] .rebuild-transcript-line p,
html[data-theme="light"] .rebuild-hero-metrics article p,
html[data-theme="light"] .rebuild-calc-cta p,
html[data-theme="light"] .rebuild-flow-card p,
html[data-theme="light"] .rebuild-flow-row p,
html[data-theme="light"] .rebuild-ui-bar,
html[data-theme="light"] .rebuild-status-card p,
html[data-theme="light"] .rebuild-mini-panel p,
html[data-theme="light"] .rebuild-tag-row span,
html[data-theme="light"] .rebuild-channel-strip span {
  color: #12345a;
}

html[data-theme="light"] .rebuild-proof-bar article strong,
html[data-theme="light"] .rebuild-preview-points article strong,
html[data-theme="light"] .rebuild-integration-notes article strong,
html[data-theme="light"] .rebuild-client-results strong,
html[data-theme="light"] .rebuild-benchmark-split strong,
html[data-theme="light"] .rebuild-hero-metrics article strong,
html[data-theme="light"] .rebuild-calc-cta strong,
html[data-theme="light"] .rebuild-flow-card strong,
html[data-theme="light"] .rebuild-flow-row strong,
html[data-theme="light"] .rebuild-ui-bar strong,
html[data-theme="light"] .rebuild-status-card strong,
html[data-theme="light"] .rebuild-mini-panel strong {
  color: #061528;
}

html[data-theme="light"] .calculator-field,
html[data-theme="light"] .calculator-result {
  background: #f8fbfe;
  border-color: rgba(18, 40, 74, 0.16);
}

html[data-theme="light"] .calculator-field {
  background: #e7eef6;
  border-color: rgba(18, 40, 74, 0.2);
}

html[data-theme="light"] .calculator-field input {
  background: #ffffff;
  border-color: rgba(18, 40, 74, 0.24);
  color: #061528;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

html[data-theme="light"] .calculator-field span,
html[data-theme="light"] .calculator-field label {
  color: #0d2a4a;
  font-weight: 700;
  letter-spacing: 0;
}

html[data-theme="light"] .calculator-field span,
html[data-theme="light"] .calculator-result-label {
  background: #d8e4f0;
  border-color: rgba(18, 40, 74, 0.16);
  color: #08213b;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

html[data-theme="light"] .rebuild-benchmark-card p,
html[data-theme="light"] .rebuild-benchmark-compare-card p,
html[data-theme="light"] .rebuild-benchmark-split span,
html[data-theme="light"] .rebuild-client-results span,
html[data-theme="light"] .calculator-compare-item span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dbe6f1;
  border: 1px solid rgba(18, 40, 74, 0.14);
  color: #08213b;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

html[data-theme="light"] .rebuild-benchmark-card > span,
html[data-theme="light"] .rebuild-benchmark-compare-card > span,
html[data-theme="light"] .rebuild-cost-pill span,
html[data-theme="light"] .rebuild-benchmark-split small,
html[data-theme="light"] .rebuild-benchmark-compare-card small {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dbe6f1;
  border: 1px solid rgba(18, 40, 74, 0.14);
  color: #08213b;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

html[data-theme="light"] .rebuild-benchmark-compare-pill {
  border-color: rgba(18, 40, 74, 0.12);
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.94), rgba(237, 245, 251, 0.9));
  box-shadow:
    0 14px 28px rgba(61, 92, 126, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

html[data-theme="light"] .rebuild-benchmark-compare-pill__side {
  background: #dbe6f1;
  color: #08213b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

html[data-theme="light"] .rebuild-benchmark-compare-pill__side--ai {
  background: linear-gradient(180deg, rgba(193, 239, 251, 0.96), rgba(225, 251, 245, 0.98));
  color: #007fb8;
}

html[data-theme="light"] .rebuild-benchmark-compare-pill__divider {
  background: linear-gradient(90deg, rgba(18, 40, 74, 0.16), rgba(0, 127, 184, 0.42));
}

html[data-theme="light"] .rebuild-benchmark-card,
html[data-theme="light"] .rebuild-benchmark-compare-card {
  background: linear-gradient(180deg, #f6fbff, #eaf1f8);
  border-color: rgba(18, 40, 74, 0.14);
  box-shadow:
    0 14px 28px rgba(61, 92, 126, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .rebuild-benchmark-card:nth-child(2),
html[data-theme="light"] .rebuild-benchmark-compare-card-featured {
  background:
    linear-gradient(180deg, #edf8fc, #e4f2f8);
  border-color: rgba(0, 127, 184, 0.18);
  box-shadow:
    0 18px 34px rgba(0, 127, 184, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

html[data-theme="light"] .rebuild-benchmark-card > strong,
html[data-theme="light"] .rebuild-benchmark-compare-card h3,
html[data-theme="light"] .rebuild-benchmark-split b,
html[data-theme="light"] .rebuild-benchmark-compare-card strong,
html[data-theme="light"] .rebuild-cost-pill strong {
  color: #061528;
  text-shadow: none;
}

html[data-theme="light"] .rebuild-benchmark-card:nth-child(2) > strong,
html[data-theme="light"] .rebuild-benchmark-compare-card-featured h3,
html[data-theme="light"] .rebuild-benchmark-compare-card-featured strong,
html[data-theme="light"] .rebuild-cost-pill-ai strong {
  color: #007fb8;
}

html[data-theme="light"] .rebuild-benchmark-card > p,
html[data-theme="light"] .rebuild-benchmark-compare-card > p,
html[data-theme="light"] .rebuild-cost-pill p {
  color: #123456;
}

html[data-theme="light"] .rebuild-benchmark-split > div,
html[data-theme="light"] .rebuild-benchmark-compare-card > div,
html[data-theme="light"] .rebuild-cost-pill {
  background: #eef4fa;
  border-color: rgba(18, 40, 74, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

html[data-theme="light"] .rebuild-benchmark-bar-human {
  background: linear-gradient(90deg, #7d91a8, #b7c5d4);
  box-shadow: 0 0 0 1px rgba(18, 40, 74, 0.08);
  animation-duration: 2s;
}

html[data-theme="light"] .rebuild-benchmark-bar-ai {
  background: linear-gradient(90deg, #00a6da, #4de3da);
  box-shadow: 0 0 18px rgba(0, 127, 184, 0.18);
  animation-duration: 2s;
}

html[data-theme="light"] .rebuild-cost-drop {
  background: radial-gradient(circle, rgba(0, 127, 184, 0.22), rgba(0, 127, 184, 0.08));
  animation-duration: 1.8s;
}

html[data-theme="light"] .rebuild-capacity-stream i,
html[data-theme="light"] .rebuild-lead-stream i,
html[data-theme="light"] .rebuild-voice-signal i,
html[data-theme="light"] .rebuild-close-signal i {
  background: linear-gradient(180deg, #00a6da, #55ead0);
  opacity: 0.92;
}

html[data-theme="light"] .rebuild-voice-signal span,
html[data-theme="light"] .rebuild-close-confirm {
  box-shadow:
    0 12px 24px rgba(0, 127, 184, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

html[data-theme="light"] .rebuild-trust-label,
html[data-theme="light"] .rebuild-intro-proof,
html[data-theme="light"] .rebuild-preview-points span,
html[data-theme="light"] .rebuild-integration-notes span,
html[data-theme="light"] .rebuild-windowbar,
html[data-theme="light"] .rebuild-ui-bar,
html[data-theme="light"] .rebuild-tag-row span,
html[data-theme="light"] .rebuild-channel-strip span,
html[data-theme="light"] .rebuild-metrics-bar span,
html[data-theme="light"] .rebuild-proof-bar span,
html[data-theme="light"] .rebuild-stat-card span,
html[data-theme="light"] .rebuild-proof-card span,
html[data-theme="light"] .rebuild-quote-card span,
html[data-theme="light"] .rebuild-case-card span,
html[data-theme="light"] .rebuild-compare-card span,
html[data-theme="light"] .process-box-note span,
html[data-theme="light"] .ghl-points span,
html[data-theme="light"] .feature-tab,
html[data-theme="light"] .pricing-kicker,
html[data-theme="light"] .integration-card span,
html[data-theme="light"] .browser-bar,
html[data-theme="light"] .pr-meta,
html[data-theme="light"] .sara-powered,
html[data-theme="light"] .sara-call-status,
html[data-theme="light"] .stat-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dbe6f1;
  border: 1px solid rgba(18, 40, 74, 0.14);
  color: #08213b;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

html[data-theme="light"] .rebuild-metrics-bar span,
html[data-theme="light"] .rebuild-proof-bar span,
html[data-theme="light"] .rebuild-stat-card span,
html[data-theme="light"] .rebuild-proof-card span,
html[data-theme="light"] .rebuild-quote-card span,
html[data-theme="light"] .rebuild-case-card span,
html[data-theme="light"] .rebuild-compare-card span {
  margin-bottom: 6px;
}

html[data-theme="light"] .calculator-field input:focus {
  border-color: rgba(0, 127, 184, 0.48);
  box-shadow: 0 0 0 3px rgba(0, 127, 184, 0.12);
}

html[data-theme="light"] .rebuild-preview-points article,
html[data-theme="light"] .rebuild-integration-notes article,
html[data-theme="light"] .rebuild-hero-metrics article,
html[data-theme="light"] .rebuild-metrics-bar article {
  background: linear-gradient(180deg, #edf3f9, #e2ebf4);
  border-color: rgba(18, 40, 74, 0.14);
  box-shadow:
    0 14px 28px rgba(61, 92, 126, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  padding: 20px 20px 22px;
}

html[data-theme="light"] .rebuild-trust-label {
  color: #0d2a4a;
  background: #dfe9f3;
  border: 1px solid rgba(18, 40, 74, 0.14);
  border-radius: 999px;
  padding: 8px 14px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

html[data-theme="light"] .rebuild-metrics-bar strong {
  color: #061528;
  letter-spacing: -0.05em;
}

html[data-theme="light"] .rebuild-metrics-bar span {
  color: #123456;
}

html[data-theme="light"] .rebuild-marquee.marquee-shell {
  background: linear-gradient(180deg, #eef4fa, #e6eef7);
  border-color: rgba(18, 40, 74, 0.12);
  box-shadow:
    0 18px 34px rgba(61, 92, 126, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 22px 0 20px;
}

html[data-theme="light"] .rebuild-marquee .marquee-item {
  background: linear-gradient(180deg, #f8fbfe, #edf3f8);
  border-color: rgba(18, 40, 74, 0.12);
  box-shadow:
    0 10px 22px rgba(61, 92, 126, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  border-radius: 24px;
}

html[data-theme="light"] .rebuild-marquee .marquee-logo img {
  filter: none;
  opacity: 0.98;
}

html[data-theme="light"] .rebuild-marquee .marquee-item--icon .marquee-logo img,
html[data-theme="light"] .rebuild-marquee .marquee-item--retell .marquee-logo img {
  filter: none;
}

html[data-theme="light"] .rebuild-marquee .marquee-item--codex .marquee-logo img,
html[data-theme="light"] .rebuild-marquee .marquee-item--chatgpt .marquee-logo img,
html[data-theme="light"] .rebuild-marquee .marquee-item--openai .marquee-logo img,
html[data-theme="light"] .rebuild-marquee .marquee-item--claude .marquee-logo img,
html[data-theme="light"] .rebuild-marquee .marquee-item--meta .marquee-logo img,
html[data-theme="light"] .rebuild-marquee .marquee-item--stripe .marquee-logo img,
html[data-theme="light"] .rebuild-marquee .marquee-item--whop .marquee-logo img,
html[data-theme="light"] .rebuild-marquee .marquee-item--skool .marquee-logo img {
  filter: none;
}

html[data-theme="light"] .rebuild-marquee .marquee-item--gohighlevel .marquee-logo img,
html[data-theme="light"] .rebuild-marquee .marquee-item--google-ads .marquee-logo img,
html[data-theme="light"] .rebuild-marquee .marquee-item--gemini .marquee-logo img {
  filter: none;
}

html[data-theme="light"] .rebuild-marquee .marquee-item {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 127, 184, 0.08), transparent 58%),
    linear-gradient(180deg, #dce7f1, #cfdbe8);
  border-color: rgba(18, 40, 74, 0.2);
  box-shadow:
    0 14px 28px rgba(61, 92, 126, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

html[data-theme="light"] .rebuild-marquee.marquee-shell {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 127, 184, 0.08), transparent 56%),
    linear-gradient(180deg, #e2ebf4, #d5e1ed);
  border-color: rgba(18, 40, 74, 0.14);
}

html[data-theme="light"] .rebuild-marquee .marquee-item:hover {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 127, 184, 0.12), transparent 56%),
    linear-gradient(180deg, #e6f0f8, #dce8f3);
  border-color: rgba(0, 127, 184, 0.24);
  box-shadow:
    0 16px 30px rgba(0, 127, 184, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

html[data-theme="light"] .rebuild-marquee .marquee-logo img {
  opacity: 1;
  filter: saturate(1.08) contrast(1.06);
}

html[data-theme="light"] .rebuild-trust .rebuild-section-head {
  margin-bottom: 18px;
}

html[data-theme="light"] .rebuild-trust .rebuild-section-head h2 {
  color: #061528;
  max-width: 12ch;
}

html[data-theme="light"] .rebuild-trust {
  margin-top: clamp(-10px, -1vw, -2px);
}

html[data-theme="light"] .rebuild-benchmark-results .calculator-result:first-child {
  border-color: rgba(0, 127, 184, 0.24);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 127, 184, 0.14), transparent 34%),
    linear-gradient(180deg, #edf8fc, #e3f1f9);
  box-shadow:
    0 18px 34px rgba(0, 127, 184, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

html[data-theme="light"] .rebuild-benchmark-results .calculator-result:first-child .calculator-result-label {
  background: #cfe8f3;
  border-color: rgba(0, 127, 184, 0.18);
  color: #0a3554;
}

html[data-theme="light"] .rebuild-benchmark-results .calculator-result:first-child strong {
  color: #007fb8;
  text-shadow: none;
}

html[data-theme="light"] .rebuild-benchmark-results .calculator-result:first-child p {
  color: #123456;
}

html[data-theme="light"] .rebuild-benchmark-results .calculator-result:nth-child(2) .calculator-result-label,
html[data-theme="light"] .rebuild-benchmark-results .calculator-result:nth-child(3) .calculator-result-label {
  background: #d8e4f0;
  border: 1px solid rgba(18, 40, 74, 0.16);
  color: #08213b;
}

html[data-theme="light"] .rebuild-benchmark-results .calculator-result:nth-child(2) p,
html[data-theme="light"] .rebuild-benchmark-results .calculator-result:nth-child(3) p {
  color: #123456;
  font-weight: 600;
}

html[data-theme="light"] .rebuild-marquee .marquee-fade-left {
  background: linear-gradient(90deg, rgba(233, 241, 248, 0.98), rgba(233, 241, 248, 0));
}

html[data-theme="light"] .rebuild-marquee .marquee-fade-right {
  background: linear-gradient(270deg, rgba(233, 241, 248, 0.98), rgba(233, 241, 248, 0));
}

html[data-theme="light"] .rebuild-main,
html[data-theme="light"] .rebuild-footer,
html[data-theme="light"] .rebuild-main section,
html[data-theme="light"] .rebuild-main article,
html[data-theme="light"] .rebuild-contact-shell,
html[data-theme="light"] .rebuild-final-cta-shell,
html[data-theme="light"] .rebuild-calc-shell,
html[data-theme="light"] .rebuild-hero-shell {
  color: #102744;
}

html[data-theme="light"] .rebuild-main :is(p, li, label, small, dd, dt, blockquote, figcaption),
html[data-theme="light"] .rebuild-footer :is(p, li, label, small, dd, dt, blockquote, figcaption),
html[data-theme="light"] .calculator-result p,
html[data-theme="light"] .calculator-result span,
html[data-theme="light"] .calculator-field label,
html[data-theme="light"] .calculator-field input,
html[data-theme="light"] .calculator-field input::placeholder,
html[data-theme="light"] .faq-detail p,
html[data-theme="light"] .faq-detail li {
  color: #123456;
}

html[data-theme="light"] .rebuild-main :is(h1, h2, h3, h4, h5, h6, strong, summary),
html[data-theme="light"] .rebuild-footer :is(h2, h3, h4, h5, h6, strong, summary),
html[data-theme="light"] .calculator-result strong,
html[data-theme="light"] #calcReadySave,
html[data-theme="light"] .rebuild-lead,
html[data-theme="light"] .rebuild-contact-copy h2 {
  color: #061528;
}

html[data-theme="light"] .rebuild-main a,
html[data-theme="light"] .rebuild-footer a,
html[data-theme="light"] .rebuild-main button,
html[data-theme="light"] .rebuild-footer button {
  color: inherit;
}

html[data-theme="light"] .rebuild-main :is(.rebuild-trust-label, .rebuild-intro-proof),
html[data-theme="light"] .rebuild-main :is(.rebuild-preview-points span, .rebuild-integration-notes span),
html[data-theme="light"] .rebuild-main :is(.rebuild-windowbar, .rebuild-ui-bar),
html[data-theme="light"] .rebuild-main :is(.rebuild-status-card p, .rebuild-mini-panel p),
html[data-theme="light"] .rebuild-main :is(.rebuild-metrics-bar span, .rebuild-proof-card p, .rebuild-quote-card p, .rebuild-case-card p),
html[data-theme="light"] .rebuild-main :is(.rebuild-compare-card li, .rebuild-implementation-card p),
html[data-theme="light"] .rebuild-main :is(.rebuild-benchmark-card p, .rebuild-benchmark-compare-card p),
html[data-theme="light"] .rebuild-main :is(.rebuild-client-results span, .rebuild-benchmark-split span),
html[data-theme="light"] .rebuild-main :is(.rebuild-flow-card p, .rebuild-flow-row p, .rebuild-transcript-line p),
html[data-theme="light"] .rebuild-main :is(.rebuild-proof-bar article p, .rebuild-preview-points article p, .rebuild-integration-notes article p),
html[data-theme="light"] .rebuild-main :is(.rebuild-hero-metrics article p, .rebuild-calc-cta p),
html[data-theme="light"] .rebuild-footer :is(.rebuild-footer-brand p, .rebuild-footer-links a, .rebuild-footer-contact a) {
  color: #123456;
}

html[data-theme="light"] .rebuild-main :is(.rebuild-windowbar strong, .rebuild-ui-bar strong),
html[data-theme="light"] .rebuild-main :is(.rebuild-status-card strong, .rebuild-mini-panel strong),
html[data-theme="light"] .rebuild-main :is(.rebuild-preview-points strong, .rebuild-integration-notes strong),
html[data-theme="light"] .rebuild-main :is(.rebuild-benchmark-card strong, .rebuild-benchmark-compare-card strong),
html[data-theme="light"] .rebuild-main :is(.rebuild-proof-bar article strong, .rebuild-preview-points article strong, .rebuild-integration-notes article strong),
html[data-theme="light"] .rebuild-main :is(.rebuild-client-results strong, .rebuild-benchmark-split strong),
html[data-theme="light"] .rebuild-main :is(.rebuild-hero-metrics article strong, .rebuild-calc-cta strong),
html[data-theme="light"] .rebuild-main :is(.rebuild-flow-card strong, .rebuild-flow-row strong),
html[data-theme="light"] .rebuild-footer .nav-logo span {
  color: #061528;
}

html[data-theme="light"] .rebuild-main :is(.rebuild-rotating-text) {
  color: #007fb8;
}

html[data-theme="light"] .rebuild-preview-points article,
html[data-theme="light"] .rebuild-integration-notes article,
html[data-theme="light"] .rebuild-flow-card,
html[data-theme="light"] .rebuild-flow-row,
html[data-theme="light"] .rebuild-ui-window,
html[data-theme="light"] .rebuild-step-card,
html[data-theme="light"] .rebuild-proof-card,
html[data-theme="light"] .rebuild-implementation-card,
html[data-theme="light"] .rebuild-quote-card,
html[data-theme="light"] .rebuild-case-card,
html[data-theme="light"] .rebuild-compare-card {
  background: linear-gradient(180deg, #f7fbfe, #ebf2f8);
  border-color: rgba(18, 40, 74, 0.14);
  box-shadow:
    0 14px 28px rgba(61, 92, 126, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

html[data-theme="light"] .rebuild-step-card-featured,
html[data-theme="light"] .rebuild-status-card-accent,
html[data-theme="light"] .rebuild-compare-card-featured {
  background: linear-gradient(180deg, #edf8fc, #e4f2f8);
  border-color: rgba(0, 127, 184, 0.18);
  box-shadow:
    0 18px 34px rgba(0, 127, 184, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

html[data-theme="light"] .rebuild-preview-points article p,
html[data-theme="light"] .rebuild-integration-notes article p,
html[data-theme="light"] .rebuild-flow-card p,
html[data-theme="light"] .rebuild-flow-row p,
html[data-theme="light"] .rebuild-proof-card p,
html[data-theme="light"] .rebuild-implementation-card p,
html[data-theme="light"] .rebuild-quote-card p,
html[data-theme="light"] .rebuild-case-card p,
html[data-theme="light"] .rebuild-compare-card li {
  color: #123456;
}

html[data-theme="light"] .rebuild-preview-points strong,
html[data-theme="light"] .rebuild-integration-notes strong,
html[data-theme="light"] .rebuild-flow-card strong,
html[data-theme="light"] .rebuild-flow-row strong,
html[data-theme="light"] .rebuild-proof-card strong,
html[data-theme="light"] .rebuild-implementation-card strong,
html[data-theme="light"] .rebuild-case-card strong,
html[data-theme="light"] .rebuild-compare-card strong {
  color: #061528;
}

html[data-theme="light"] .rebuild-status-card-accent strong,
html[data-theme="light"] .rebuild-step-card-featured strong,
html[data-theme="light"] .rebuild-compare-card-featured strong {
  color: #007fb8;
}

html[data-theme="light"] .rebuild-proof-bar article span,
html[data-theme="light"] .rebuild-hero-metrics article span,
html[data-theme="light"] .rebuild-metrics-bar article span {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  color: #123456;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}

html[data-theme="light"] .rebuild-proof-bar article strong,
html[data-theme="light"] .rebuild-hero-metrics article strong,
html[data-theme="light"] .rebuild-metrics-bar article strong {
  color: #061528;
}

html[data-theme="light"] .particle-canvas {
  display: block !important;
  opacity: 0.72 !important;
  filter: saturate(1.6) contrast(1.15);
}

html[data-theme="light"] .rebuild-case-grid {
  align-items: stretch;
  gap: 18px;
}

html[data-theme="light"] .rebuild-case-card {
  text-align: center;
  align-items: center;
  justify-items: center;
}

html[data-theme="light"] .rebuild-case-card h3,
html[data-theme="light"] .rebuild-case-card p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

html[data-theme="light"] .rebuild-client-results {
  justify-items: center;
  align-items: stretch;
  gap: 12px;
}

html[data-theme="light"] .rebuild-client-results div {
  justify-items: center;
  text-align: center;
  width: 100%;
  min-height: 92px;
  padding: 12px 12px 14px;
  align-content: center;
}

html[data-theme="light"] .rebuild-client-results small,
html[data-theme="light"] .rebuild-client-results span,
html[data-theme="light"] .rebuild-client-results strong {
  text-align: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

html[data-theme="light"] .rebuild-client-results strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6em;
}

html[data-theme="light"] .rebuild-section-head,
html[data-theme="light"] .rebuild-section-head-center,
html[data-theme="light"] .rebuild-contact-copy,
html[data-theme="light"] .rebuild-final-cta-shell,
html[data-theme="light"] .rebuild-client-proof-head {
  justify-items: center;
}

html[data-theme="light"] .rebuild-section-head p,
html[data-theme="light"] .rebuild-sublead,
html[data-theme="light"] .rebuild-contact-copy p,
html[data-theme="light"] .rebuild-final-cta-shell p {
  margin-left: auto;
  margin-right: auto;
}

html[data-theme="light"] .rebuild-proof-grid,
html[data-theme="light"] .rebuild-testimonial-grid,
html[data-theme="light"] .rebuild-case-grid,
html[data-theme="light"] .rebuild-compare-grid,
html[data-theme="light"] .rebuild-implementation-grid,
html[data-theme="light"] .rebuild-integrations-grid,
html[data-theme="light"] .rebuild-contact-shell,
html[data-theme="light"] .rebuild-footer-grid {
  align-items: stretch;
}

html[data-theme="light"] .rebuild-proof-grid,
html[data-theme="light"] .rebuild-testimonial-grid,
html[data-theme="light"] .rebuild-compare-grid,
html[data-theme="light"] .rebuild-implementation-grid {
  gap: 18px;
}

html[data-theme="light"] .offer-subcopy,
html[data-theme="light"] .process-box-note span,
html[data-theme="light"] .ghl-points span,
html[data-theme="light"] .calculator-compare-item span,
html[data-theme="light"] .calculator-cta-copy p,
html[data-theme="light"] .booking-handoff-copy p,
html[data-theme="light"] .how-head .offer-subcopy,
html[data-theme="light"] .browser-bar,
html[data-theme="light"] .pr-meta,
html[data-theme="light"] .knowledge-description p,
html[data-theme="light"] .integration-card span,
html[data-theme="light"] .faq-item p,
html[data-theme="light"] .contact-copy p,
html[data-theme="light"] .footer-col a,
html[data-theme="light"] .footer-bottom,
html[data-theme="light"] .footer-compliance,
html[data-theme="light"] .sara-back-btn,
html[data-theme="light"] .sara-powered,
html[data-theme="light"] .sara-call-copy,
html[data-theme="light"] .sara-call-status,
html[data-theme="light"] .feature-tab,
html[data-theme="light"] .text-muted,
html[data-theme="light"] .node,
html[data-theme="light"] .pricing-note,
html[data-theme="light"] .pricing-description,
html[data-theme="light"] .link-arrow,
html[data-theme="light"] .nav-dropdown-toggle,
html[data-theme="light"] .case-study-list li,
html[data-theme="light"] .comparison-list li,
html[data-theme="light"] .rebuild-compare-card li,
html[data-theme="light"] .rebuild-contact-copy p,
html[data-theme="light"] .rebuild-footer-links a,
html[data-theme="light"] .rebuild-footer-contact a {
  color: #123456;
}

html[data-theme="light"] .stat-label,
html[data-theme="light"] .process-box-note span,
html[data-theme="light"] .ghl-points span,
html[data-theme="light"] .calculator-compare-item span,
html[data-theme="light"] .browser-bar,
html[data-theme="light"] .pr-meta,
html[data-theme="light"] .pricing-kicker,
html[data-theme="light"] .integration-card span,
html[data-theme="light"] .sara-powered,
html[data-theme="light"] .sara-call-status {
  color: #23476f;
}

html[data-theme="light"] .pr-meta strong,
html[data-theme="light"] .calculator-compare-item strong,
html[data-theme="light"] .feature-tab:hover,
html[data-theme="light"] .feature-tab.active,
html[data-theme="light"] .integration-card:hover .integration-icon,
html[data-theme="light"] .faq-item strong,
html[data-theme="light"] .contact-copy strong,
html[data-theme="light"] .footer-col a:hover,
html[data-theme="light"] .sara-back-btn:hover,
html[data-theme="light"] .nav-dropdown-toggle:hover,
html[data-theme="light"] .nav-dropdown-toggle:focus-visible,
html[data-theme="light"] .nav-dropdown-toggle[aria-expanded="true"] {
  color: #061528;
}

html[data-theme="light"] .ghl-points span,
html[data-theme="light"] .calculator-compare-item,
html[data-theme="light"] .feature-tab,
html[data-theme="light"] .integration-card span,
html[data-theme="light"] .browser-bar,
html[data-theme="light"] .pricing-list li {
  background: #e6edf5;
  border-color: rgba(18, 40, 74, 0.16);
}

.rebuild-cta-row,
.rebuild-contact-actions,
.rebuild-footer-links,
.rebuild-footer-contact {
  gap: 12px;
}

.rebuild-inline-cta {
  margin-top: 24px;
}

.rebuild-calc-grid,
.rebuild-process-grid,
.rebuild-contact-shell,
.rebuild-footer-grid,
.rebuild-faq-grid {
  gap: var(--rebuild-section-gap);
}

.rebuild-hero-top,
.rebuild-hero-bottom,
.rebuild-integration-grid {
  gap: 12px;
}

.rebuild-trust .rebuild-section-head,
.rebuild-proof .rebuild-section-head,
.rebuild-comparison .rebuild-section-head,
.rebuild-implementation .rebuild-section-head {
  margin-bottom: 20px;
}

.rebuild-final-cta-shell,
.rebuild-contact-shell,
.rebuild-calc-shell,
.rebuild-hero-shell {
  backdrop-filter: blur(14px);
}

.rebuild-final-cta-shell p,
.rebuild-contact-copy p {
  max-width: 52ch;
}

.rebuild-final-cta-shell p {
  margin-inline: auto;
}

.rebuild-footer {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .rebuild-main {
    --rebuild-shell-padding: 20px;
    --rebuild-card-padding: 20px;
    --rebuild-card-radius: 20px;
    --rebuild-panel-radius: 16px;
    --rebuild-section-gap: 14px;
  }

  .rebuild-inline-cta {
    margin-top: 20px;
  }
}

.nav-header {
  backdrop-filter: blur(16px) saturate(130%);
  background: linear-gradient(180deg, rgba(6, 13, 31, 0.8), rgba(6, 13, 31, 0.64));
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.nav-container {
  width: min(var(--container-max), calc(100% - 2 * var(--px)));
  margin-inline: auto;
  min-height: 78px;
  gap: 28px;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.nav-logo span {
  color: var(--ink-1);
  font-size: 1.04rem;
  font-weight: 620;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.nav-link {
  font-size: 13.5px;
  letter-spacing: 0.015em;
}

.nav-links {
  gap: 24px;
}

.nav-actions {
  margin-left: 6px;
}

.nav-utility-controls {
  transform: translateY(-0.5px);
}

.btn-nav {
  min-height: 42px;
}

.rebuild-main > section::after {
  content: "";
  position: absolute;
  left: min(4vw, 28px);
  right: min(4vw, 28px);
  bottom: calc(clamp(68px, 9vw, 112px) / -2);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
  opacity: 0.75;
}

.rebuild-final-cta::after,
.rebuild-contact::after {
  display: none;
}

.rebuild-main > section:last-of-type::after {
  display: none;
}

.rebuild-hero::before,
.rebuild-proof::before,
.rebuild-final-cta::before,
.rebuild-comparison::before,
.rebuild-implementation::before,
.rebuild-faq::before,
.rebuild-contact::before,
.rebuild-trust::before {
  transition: opacity 0.4s var(--ease-premium);
}

.rebuild-main .btn-primary,
.rebuild-footer .btn-primary,
.btn-nav {
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(227, 239, 247, 0.96));
}

.rebuild-main .btn-primary,
.rebuild-main .btn-secondary,
.rebuild-footer .btn-primary,
.rebuild-footer .btn-secondary,
.btn-nav,
.mobile-sticky-cta .btn {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.rebuild-main .btn-primary:hover,
.rebuild-footer .btn-primary:hover,
.btn-nav:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(236, 245, 251, 0.98));
}

.rebuild-main .btn-secondary,
.rebuild-footer .btn-secondary,
.mobile-sticky-cta .btn-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
}

.rebuild-hero .btn-secondary {
  border-color: rgba(116, 211, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(116, 211, 255, 0.04), rgba(0, 255, 209, 0.012)),
    rgba(255, 255, 255, 0.012);
  color: rgba(223, 241, 255, 0.9);
}

.rebuild-hero .btn-secondary:hover {
  border-color: rgba(116, 211, 255, 0.16);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(116, 211, 255, 0.06) inset;
}

.rebuild-hero-shell,
.rebuild-calc-shell,
.rebuild-contact-shell,
.rebuild-final-cta-shell,
.rebuild-footer {
  box-shadow:
    var(--rebuild-soft-shadow),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.rebuild-main .btn-glow::before,
.btn-nav.btn-glow::before {
  filter: blur(14px);
}

.rebuild-marquee.marquee-shell,
.rebuild-final-cta-shell,
.rebuild-contact-shell,
.rebuild-calc-shell {
  position: relative;
}

.rebuild-marquee.marquee-shell::after,
.rebuild-final-cta-shell::after,
.rebuild-contact-shell::after,
.rebuild-calc-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mobile-sticky-cta {
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 24px));
  padding: 10px;
  border-radius: 20px;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(8, 16, 34, 0.9), rgba(8, 16, 34, 0.78));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(16px);
}

.mobile-sticky-cta .btn {
  min-height: 48px;
  border-radius: 14px;
}

@media (max-width: 768px) {
  .nav-container {
    min-height: 72px;
  }

  .rebuild-main > section::after {
    left: 18px;
    right: 18px;
  }
}

/* Ensure rebuilt homepage content is visible even if reveal JS fails */
.rebuild-main .reveal,
.rebuild-main .reveal-up,
.rebuild-footer.reveal,
.rebuild-footer.reveal-up {
  opacity: 1;
  transform: none;
  filter: none;
}

.nav-header,
.rebuild-main,
.rebuild-main > section,
.rebuild-footer,
main,
footer {
  opacity: 1 !important;
  visibility: visible !important;
}

.rebuild-main,
.rebuild-footer,
main,
footer {
  position: relative;
  z-index: 50 !important;
  width: 100%;
  max-width: 100%;
}

.rebuild-hero,
.rebuild-trust,
.rebuild-problem,
.rebuild-process,
.rebuild-proof,
.rebuild-comparison,
.rebuild-calculator,
.rebuild-integrations,
.rebuild-implementation,
.rebuild-faq,
.rebuild-contact,
.rebuild-final-cta {
  overflow: visible;
}

.grain-canvas,
.particle-canvas,
.cursor-glow {
  pointer-events: none !important;
}

.grain-canvas {
  z-index: 8 !important;
  opacity: 0.038 !important;
}

.particle-canvas {
  z-index: 10 !important;
  opacity: 1 !important;
}

.cursor-glow {
  display: none !important;
}

/* Final productized pass: closer to the Appointwise rhythm while keeping DC background */
.offer-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: #d7ebff;
}

.rebuild-main {
  gap: clamp(44px, 6vw, 70px);
}

.rebuild-section-head {
  gap: 10px;
}

.rebuild-section-head h2 {
  max-width: 14ch;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.rebuild-hero-grid {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  min-width: 0;
}

.rebuild-hero {
  min-height: calc(100svh - 40px);
  display: grid;
  align-items: center;
  padding-top: 136px;
  padding-bottom: 34px;
}

.rebuild-hero-copy {
  gap: 16px;
  padding-top: 0;
  justify-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.rebuild-hero-copy h1 {
  font-size: clamp(3rem, 6.4vw, 6rem);
  line-height: 0.92;
  max-width: 12.4ch;
  text-wrap: balance;
}

.rebuild-title-line {
  display: block;
}

.rebuild-title-line + .rebuild-title-line {
  margin-top: 0.12em;
}

html[lang="es-CR"] .rebuild-hero-copy h1,
html[lang="es"] .rebuild-hero-copy h1 {
  max-width: 14.6ch;
  line-height: 1.02;
}

html[lang="es-CR"] .rebuild-title-line + .rebuild-title-line,
html[lang="es"] .rebuild-title-line + .rebuild-title-line {
  margin-top: 0.16em;
}

html[lang="es-CR"] .rebuild-title-line,
html[lang="es"] .rebuild-title-line {
  padding-bottom: 0.06em;
}

.rebuild-rotating-wrap {
  display: inline-grid;
  position: relative;
  min-width: 10.8ch;
  vertical-align: baseline;
  align-items: baseline;
  overflow: visible;
  padding-bottom: 0.08em;
}

html[lang="es-CR"] .rebuild-rotating-wrap,
html[lang="es"] .rebuild-rotating-wrap {
  min-width: 13.2ch;
  padding-bottom: 0.16em;
}

.rebuild-rotating-text {
  display: inline-block;
  grid-area: 1 / 1;
  line-height: 1.06;
  color: #bff6ff;
  background: linear-gradient(135deg, #8ddcff 0%, #9ff6ed 52%, #d6fff5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow:
    0 0 22px rgba(84, 196, 255, 0.18),
    0 0 36px rgba(0, 255, 209, 0.08);
  transition:
      opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.56s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.56s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(6px);
  filter: blur(3px);
  will-change: opacity, transform, filter;
  letter-spacing: -0.025em;
}

html[lang="es-CR"] .rebuild-rotating-text,
html[lang="es"] .rebuild-rotating-text {
  line-height: 1.14;
}

.rebuild-rotating-text.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.rebuild-lead {
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  color: rgba(236, 245, 255, 0.96);
  max-width: 24ch;
  margin-bottom: 0;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.rebuild-sublead {
  font-size: 0.98rem;
  max-width: 46ch;
  color: rgba(220, 233, 246, 0.88);
}

.rebuild-intro-proof {
  margin: 8px 0 0;
  color: rgba(159, 230, 255, 0.94);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rebuild-intro-proof::after {
  content: "";
  color: rgba(184, 238, 255, 0.72);
}

.rebuild-hero-shell,
.rebuild-calc-shell,
.rebuild-contact-shell,
.rebuild-final-cta-shell,
.rebuild-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(8, 18, 39, 0.9), rgba(8, 18, 39, 0.68));
}

.rebuild-hero-shell {
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.rebuild-hero-shell::after {
  content: "";
  position: absolute;
  inset: auto -16% -20% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 183, 255, 0.18), transparent 68%);
  filter: blur(10px);
  opacity: 0.72;
}

.rebuild-windowbar,
.rebuild-ui-bar {
  padding-bottom: 2px;
}

.rebuild-transcript-line,
.rebuild-status-card,
.rebuild-mini-panel,
.rebuild-ui-window,
.rebuild-flow-card,
.calculator-result,
.calculator-field {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.015);
}

.rebuild-trust .rebuild-section-head,
.rebuild-proof .rebuild-section-head,
.rebuild-comparison .rebuild-section-head,
.rebuild-implementation .rebuild-section-head,
.rebuild-calculator .rebuild-section-head {
  max-width: 60ch;
}

.rebuild-cta-row {
  margin-top: 2px;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rebuild-trust {
  padding-top: 6px;
  padding-bottom: 4px;
  margin-top: clamp(-22px, -2.5vw, -10px);
  position: relative;
}

.rebuild-trust-label {
  margin: 2px 0 12px;
  color: rgba(236, 245, 255, 0.88);
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.rebuild-trust .rebuild-section-head {
  max-width: 44ch;
  gap: 8px;
}

.rebuild-trust .rebuild-section-head h2 {
  max-width: 14ch;
}

.rebuild-trust::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: min(720px, 78vw);
  height: 120px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(116, 211, 255, 0.05) 58%, rgba(0, 255, 209, 0.04) 100%);
  filter: blur(12px);
  opacity: 0.9;
}

.rebuild-hero-visual {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.rebuild-preview {
  padding-top: 24px;
}

.rebuild-preview .rebuild-section-head {
  margin-bottom: 24px;
}

.rebuild-preview-points,
.rebuild-integration-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 18px;
}

.rebuild-preview-points article,
.rebuild-integration-notes article {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(7, 18, 37, 0.24);
}

.rebuild-preview-points span,
.rebuild-integration-notes span {
  color: rgba(184, 238, 255, 0.9);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rebuild-preview-points strong,
.rebuild-integration-notes strong {
  color: rgba(244, 248, 252, 0.96);
  font-size: 0.92rem;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.rebuild-hero-metrics,
.rebuild-metrics-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 14px;
  width: min(980px, 100%);
}

.rebuild-hero-metrics article,
.rebuild-metrics-bar article {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
    rgba(7, 18, 37, 0.52);
  text-align: left;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.rebuild-hero-metrics strong,
.rebuild-metrics-bar strong {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 0.95;
  color: var(--ink-1);
}

.rebuild-hero-metrics article:nth-child(1) strong {
  color: rgba(198, 218, 236, 0.92);
}

.rebuild-hero-metrics article:nth-child(2) strong,
.rebuild-hero-metrics article:nth-child(3) strong {
  color: #b8eeff;
}

.rebuild-hero-metrics span,
.rebuild-metrics-bar span {
  color: rgba(209, 225, 240, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.rebuild-benchmark-shell {
  gap: 24px;
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.rebuild-benchmark-shell::before,
.rebuild-benchmark-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(24px);
  opacity: 0.9;
}

.rebuild-benchmark-shell::before {
  width: 300px;
  height: 300px;
  top: -96px;
  right: -48px;
  background: radial-gradient(circle, rgba(116, 211, 255, 0.24), transparent 72%);
}

.rebuild-benchmark-shell::after {
  width: 320px;
  height: 320px;
  bottom: -138px;
  left: -78px;
  background: radial-gradient(circle, rgba(0, 255, 209, 0.16), transparent 74%);
}

.rebuild-benchmark-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 6px;
}

.rebuild-benchmark-card,
.rebuild-benchmark-compare-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    linear-gradient(180deg, rgba(8, 18, 39, 0.92), rgba(8, 18, 39, 0.68));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

.rebuild-benchmark-card {
  gap: 14px;
}

.rebuild-benchmark-card:nth-child(2) {
  border-color: rgba(116, 211, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(116, 211, 255, 0.06), rgba(0, 255, 209, 0.02)),
    linear-gradient(180deg, rgba(8, 20, 42, 0.94), rgba(8, 18, 39, 0.7));
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(116, 211, 255, 0.05) inset,
    0 0 32px rgba(0, 183, 255, 0.08);
  transform: translateY(-4px);
}

.rebuild-benchmark-card::before,
.rebuild-benchmark-compare-card::before,
.rebuild-step-card::before,
.rebuild-proof-card::before,
.rebuild-implementation-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(151, 221, 255, 0.58), rgba(0, 255, 209, 0.18), transparent 74%);
  pointer-events: none;
}

.rebuild-benchmark-card::after,
.rebuild-benchmark-compare-card::after,
.rebuild-step-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -54px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(104, 196, 255, 0.14), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.rebuild-benchmark-card span,
.rebuild-benchmark-compare-card span {
  color: #b9ebff;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.rebuild-benchmark-card > strong {
  font-size: 1.1rem;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: #f3fbff;
  max-width: 22ch;
}

.rebuild-benchmark-intro {
  color: #f3fbff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.rebuild-benchmark-scenario {
  margin-top: 2px;
  max-width: 46ch;
  color: rgba(184, 238, 255, 0.78);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.rebuild-benchmark-visual {
  margin-top: 4px;
  min-height: 102px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.018);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 34px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  position: relative;
}

.rebuild-benchmark-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(151, 221, 255, 0.05), transparent 42%, transparent 68%, rgba(0, 255, 209, 0.04));
  pointer-events: none;
}

.rebuild-benchmark-bars {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.rebuild-benchmark-bar-group {
  display: grid;
  gap: 8px;
}

.rebuild-benchmark-bar-group small {
  color: rgba(209, 225, 240, 0.68);
  font-size: 0.76rem;
}

.rebuild-benchmark-bar-track {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.rebuild-benchmark-bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  position: relative;
}

.rebuild-benchmark-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  animation: benchmarkShimmer 2.8s linear infinite;
}

.rebuild-benchmark-bar-human {
  width: 18%;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(160, 185, 205, 0.5));
  animation: benchmarkHumanBar 2.6s ease-in-out infinite alternate;
}

.rebuild-benchmark-bar-ai {
  width: 38%;
  background: linear-gradient(90deg, rgba(116, 211, 255, 0.85), rgba(0, 255, 209, 0.72));
  box-shadow: 0 0 18px rgba(0, 183, 255, 0.18);
  animation: benchmarkAiBar 2.6s ease-in-out infinite alternate;
}

.rebuild-benchmark-visual-cost {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.rebuild-cost-pill {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.rebuild-cost-pill span {
  color: rgba(209, 225, 240, 0.7);
  font-size: 0.76rem;
}

.rebuild-cost-pill strong {
  font-size: 1.6rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.rebuild-cost-pill-ai strong {
  color: #b8eeff;
}

.rebuild-cost-drop {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 255, 209, 0.2), rgba(0, 183, 255, 0.1) 52%, transparent 70%);
  position: relative;
  animation: benchmarkPulse 2.2s ease-in-out infinite;
}

.rebuild-cost-drop::before,
.rebuild-cost-drop::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(151, 221, 255, 0.9), rgba(0, 255, 209, 0.72));
}

.rebuild-cost-drop::before {
  top: 9px;
  width: 2px;
  height: 16px;
}

.rebuild-cost-drop::after {
  bottom: 8px;
  width: 14px;
  height: 14px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.rebuild-benchmark-visual-capacity {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.rebuild-capacity-cluster {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, 14px);
}

.rebuild-capacity-cluster span,
.rebuild-capacity-stream i {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.rebuild-capacity-cluster-human span {
  width: 14px;
  height: 14px;
}

.rebuild-capacity-cluster-ai {
  grid-template-columns: repeat(3, 14px);
}

.rebuild-capacity-cluster-ai span {
  width: 14px;
  height: 14px;
  background: linear-gradient(180deg, rgba(116, 211, 255, 0.9), rgba(0, 255, 209, 0.72));
  box-shadow: 0 0 18px rgba(0, 183, 255, 0.16);
}

.rebuild-capacity-stream {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: center;
}

.rebuild-capacity-stream i {
  height: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(151, 221, 255, 0.75));
  animation: benchmarkStream 1.8s ease-in-out infinite;
}

.rebuild-capacity-stream i:nth-child(2) { animation-delay: 0.12s; }
.rebuild-capacity-stream i:nth-child(3) { animation-delay: 0.24s; }
.rebuild-capacity-stream i:nth-child(4) { animation-delay: 0.36s; }
.rebuild-capacity-stream i:nth-child(5) { animation-delay: 0.48s; }
.rebuild-capacity-stream i:nth-child(6) { animation-delay: 0.6s; }

.rebuild-benchmark-split,
.rebuild-benchmark-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rebuild-benchmark-split > div,
.rebuild-benchmark-compare-card > div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 28px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.rebuild-benchmark-compare {
  margin-top: 0;
  position: relative;
  gap: 18px;
}

.rebuild-benchmark-compare-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px auto 18px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(116, 211, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(8, 20, 42, 0.48);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  width: fit-content;
  min-width: 158px;
}

.rebuild-benchmark-compare-pill__side {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(214, 231, 243, 0.84);
  font: 700 0.7rem/1 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rebuild-benchmark-compare-pill__side--ai {
  background: linear-gradient(180deg, rgba(116, 211, 255, 0.14), rgba(0, 255, 209, 0.08));
  color: #b8eeff;
  box-shadow: inset 0 1px 0 rgba(151, 221, 255, 0.12);
}

.rebuild-benchmark-compare-pill__divider {
  width: 12px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(198, 218, 236, 0.3), rgba(116, 211, 255, 0.56));
}

.rebuild-benchmark-compare-card {
  gap: 14px;
  padding: 20px;
}

.rebuild-benchmark-compare-card > div {
  min-height: 74px;
  align-content: start;
}

.rebuild-benchmark-compare-card:first-child {
  border-color: rgba(198, 218, 236, 0.1);
  background:
    linear-gradient(180deg, rgba(198, 218, 236, 0.04), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(12, 18, 30, 0.92), rgba(8, 18, 39, 0.68));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(198, 218, 236, 0.04) inset;
}

.rebuild-benchmark-compare-card:first-child span,
.rebuild-benchmark-compare-card:first-child h3,
.rebuild-benchmark-compare-card:first-child strong {
  color: rgba(198, 218, 236, 0.9);
}

.rebuild-benchmark-compare-card:first-child > div {
  background:
    linear-gradient(180deg, rgba(198, 218, 236, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.012);
  border-color: rgba(198, 218, 236, 0.05);
}

.rebuild-benchmark-compare-card-featured {
  transform: translateY(-6px) scale(1.02);
}

.rebuild-benchmark-compare-card-featured > div {
  background:
    linear-gradient(180deg, rgba(116, 211, 255, 0.07), rgba(0, 255, 209, 0.02)),
    rgba(255, 255, 255, 0.014);
  border-color: rgba(116, 211, 255, 0.08);
}

.rebuild-benchmark-compare-card-featured h3 {
  color: #d7f7ff;
}

.rebuild-benchmark-compare-card-featured > div strong {
  color: #b8eeff;
  text-shadow: 0 0 18px rgba(116, 211, 255, 0.12);
}

.rebuild-benchmark-compare::before {
  content: none;
}

.rebuild-benchmark-split small,
.rebuild-benchmark-compare-card small {
  color: rgba(214, 231, 243, 0.72);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rebuild-benchmark-split b,
.rebuild-benchmark-compare-card strong {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.rebuild-benchmark-card:nth-child(2) .rebuild-benchmark-split b:last-child,
.rebuild-benchmark-compare-card-featured strong:last-child,
.rebuild-cost-pill-ai strong {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  letter-spacing: -0.02em;
}

.rebuild-benchmark-card:nth-child(3) .rebuild-benchmark-split b:last-child {
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  letter-spacing: -0.03em;
  line-height: 1.04;
  word-break: break-word;
}

.rebuild-benchmark-calc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 8px;
}

.rebuild-benchmark-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rebuild-benchmark-results .calculator-result {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  min-height: 100%;
}

.rebuild-benchmark-results .calculator-result:first-child {
  border-color: rgba(116, 211, 255, 0.16);
  background:
    radial-gradient(circle at 82% 18%, rgba(116, 211, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(116, 211, 255, 0.07), rgba(0, 255, 209, 0.022)),
    rgba(255, 255, 255, 0.018);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(116, 211, 255, 0.06) inset,
    0 0 30px rgba(0, 183, 255, 0.08);
  transform: translateY(-4px) scale(1.018);
}

.rebuild-benchmark-results .calculator-result:nth-child(2) {
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 255, 209, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.02);
  border-color: rgba(116, 211, 255, 0.14);
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(116, 211, 255, 0.05) inset;
}

.rebuild-benchmark-results .calculator-result:nth-child(2) strong,
.rebuild-benchmark-results .calculator-result:nth-child(3) strong {
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 0.94;
}

.rebuild-benchmark-results .calculator-result:nth-child(2) .calculator-result-label,
.rebuild-benchmark-results .calculator-result:nth-child(3) .calculator-result-label {
  color: rgba(214, 231, 243, 0.74);
}

.rebuild-benchmark-results .calculator-result:first-child .calculator-result-label {
  color: rgba(184, 238, 255, 0.82);
}

.rebuild-benchmark-results .calculator-result:first-child strong {
  font-size: clamp(2.25rem, 4.2vw, 3.6rem);
  line-height: 0.9;
  color: #d7f7ff;
  text-shadow: 0 0 28px rgba(116, 211, 255, 0.16);
}

.rebuild-benchmark-results .calculator-result:first-child p {
  color: rgba(223, 235, 246, 0.82);
}

.rebuild-benchmark-compare-card-featured {
  background:
    linear-gradient(155deg, rgba(151, 221, 255, 0.08), rgba(0, 255, 209, 0.03) 36%, rgba(255, 255, 255, 0.012) 100%),
    linear-gradient(180deg, rgba(8, 22, 46, 0.92), rgba(8, 22, 46, 0.68));
  border-color: rgba(0, 183, 255, 0.18);
  transform: translateY(-4px);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(116, 211, 255, 0.05) inset,
    0 0 30px rgba(0, 183, 255, 0.08);
}

.rebuild-benchmark-compare-card h3 {
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #f3fbff;
  max-width: 15ch;
}

@keyframes benchmarkShimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(140%); }
}

@keyframes benchmarkHumanBar {
  0% { width: 12%; }
  100% { width: 20%; }
}

@keyframes benchmarkAiBar {
  0% { width: 30%; }
  100% { width: 40%; }
}

@keyframes benchmarkPulse {
  0%, 100% { transform: scale(1); opacity: 0.82; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes benchmarkStream {
  0%, 100% { opacity: 0.32; transform: scaleX(0.72); }
  50% { opacity: 1; transform: scaleX(1); }
}

.rebuild-process-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px auto 16px;
  width: min(var(--container-max), calc(100% - 2 * var(--px)));
}

.rebuild-process-summary article,
.rebuild-calc-compare article {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 15px 17px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.014)),
    linear-gradient(180deg, rgba(8, 18, 39, 0.78), rgba(8, 18, 39, 0.58));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.rebuild-process-summary article::before,
.rebuild-calc-compare article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(151, 221, 255, 0.56), rgba(0, 255, 209, 0.18), transparent 78%);
}

.rebuild-process-summary span,
.rebuild-calc-compare span {
  color: #9fe6ff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rebuild-process-summary strong,
.rebuild-calc-compare strong {
  color: var(--ink-1);
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.rebuild-proof-grid {
  gap: 18px;
  margin-top: 6px;
}

.rebuild-proof-card {
  min-height: 220px;
}

.rebuild-testimonial-grid,
.rebuild-case-grid {
  margin-top: 20px;
}

.rebuild-quote-card,
.rebuild-case-card,
.rebuild-compare-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(8, 18, 39, 0.88), rgba(8, 18, 39, 0.64));
}

.rebuild-step-card {
  min-height: 100%;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015) 34%, rgba(255, 255, 255, 0.01) 100%),
    linear-gradient(180deg, rgba(9, 20, 42, 0.92), rgba(9, 20, 42, 0.66));
  position: relative;
  overflow: hidden;
  transform: perspective(1200px) translateZ(0);
}

.rebuild-process-grid .rebuild-step-card,
.rebuild-proof-grid .rebuild-proof-card,
.rebuild-testimonial-grid-clients .rebuild-quote-card {
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
}

.rebuild-step-card-featured,
.rebuild-compare-card-featured {
  background:
    linear-gradient(155deg, rgba(155, 224, 255, 0.08), rgba(0, 255, 209, 0.03) 36%, rgba(255, 255, 255, 0.015) 100%),
    linear-gradient(180deg, rgba(8, 22, 46, 0.96), rgba(8, 22, 46, 0.72));
}

.rebuild-process-grid {
  gap: 18px;
  margin-top: 4px;
}

.rebuild-process-grid::before {
  background: linear-gradient(90deg, transparent, rgba(151, 221, 255, 0.4), rgba(0, 255, 209, 0.22), transparent);
}

.rebuild-step-card h3 {
  max-width: 14ch;
  margin-bottom: 2px;
}

.rebuild-testimonial-grid-clients .rebuild-quote-card {
  min-height: 220px;
}

.rebuild-testimonial-grid-clients {
  gap: 14px;
}

.rebuild-step-card p {
  max-width: 31ch;
}

.rebuild-step-visual .rebuild-ui-window,
.rebuild-integration-visual .rebuild-ui-window,
.rebuild-preview .rebuild-hero-shell {
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

.rebuild-preview .rebuild-hero-shell {
  transform: perspective(1400px) rotateX(1.4deg);
}

.rebuild-preview .rebuild-hero-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 72%, rgba(151, 221, 255, 0.06));
  opacity: 0.8;
  pointer-events: none;
}

.rebuild-lead-stream,
.rebuild-voice-signal,
.rebuild-close-signal {
  position: relative;
  margin-top: 14px;
}

.rebuild-lead-stream {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: end;
  min-height: 52px;
}

.rebuild-lead-stream i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(151, 221, 255, 0.78));
  animation: leadRise 2.2s ease-in-out infinite;
}

.rebuild-lead-stream i:nth-child(1) { animation-delay: 0s; }
.rebuild-lead-stream i:nth-child(2) { animation-delay: 0.15s; }
.rebuild-lead-stream i:nth-child(3) { animation-delay: 0.3s; }
.rebuild-lead-stream i:nth-child(4) { animation-delay: 0.45s; }
.rebuild-lead-stream i:nth-child(5) { animation-delay: 0.6s; }

.rebuild-voice-signal {
  display: grid;
  grid-template-columns: repeat(4, 12px) auto;
  gap: 8px;
  align-items: center;
  min-height: 54px;
}

.rebuild-voice-signal i {
  display: block;
  width: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(116, 211, 255, 0.9), rgba(0, 255, 209, 0.68));
  animation: voiceBars 1.6s ease-in-out infinite;
  box-shadow: 0 0 18px rgba(0, 183, 255, 0.14);
}

.rebuild-voice-signal i:nth-child(1) { height: 18px; animation-delay: 0s; }
.rebuild-voice-signal i:nth-child(2) { height: 32px; animation-delay: 0.12s; }
.rebuild-voice-signal i:nth-child(3) { height: 24px; animation-delay: 0.24s; }
.rebuild-voice-signal i:nth-child(4) { height: 40px; animation-delay: 0.36s; }

.rebuild-voice-signal span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  justify-self: end;
  background: radial-gradient(circle, rgba(151, 221, 255, 0.28), rgba(0, 183, 255, 0.16) 48%, transparent 72%);
  border: 1px solid rgba(151, 221, 255, 0.18);
  position: relative;
  animation: voicePulse 2.2s ease-in-out infinite;
}

.rebuild-voice-signal span::before,
.rebuild-voice-signal span::after {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  border: 1px solid rgba(151, 221, 255, 0.16);
  transform: translate(-50%, -50%);
}

.rebuild-voice-signal span::before {
  width: 54px;
  height: 54px;
}

.rebuild-voice-signal span::after {
  width: 68px;
  height: 68px;
}

.rebuild-close-signal {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 8px;
  align-items: end;
  min-height: 56px;
}

.rebuild-close-signal i {
  display: block;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, rgba(151, 221, 255, 0.24), rgba(0, 255, 209, 0.74));
  animation: closeBars 2.1s ease-in-out infinite alternate;
}

.rebuild-close-signal i:nth-child(1) { height: 18px; animation-delay: 0s; }
.rebuild-close-signal i:nth-child(2) { height: 30px; animation-delay: 0.14s; }
.rebuild-close-signal i:nth-child(3) { height: 44px; animation-delay: 0.28s; }

.rebuild-close-confirm {
  align-self: center;
  padding: 10px 12px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(0, 255, 209, 0.16), rgba(0, 255, 209, 0.06)),
    rgba(255,255,255,0.025);
  border: 1px solid rgba(0, 255, 209, 0.14);
  color: #c5fff4;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(0, 255, 209, 0.1);
}

.rebuild-inline-cta {
  margin-top: 32px;
}

.rebuild-calc-shell {
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 183, 255, 0.12), transparent 24%),
    radial-gradient(circle at 10% 90%, rgba(0, 255, 209, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(8, 18, 39, 0.94), rgba(8, 18, 39, 0.72));
  border-color: rgba(116, 211, 255, 0.12);
  box-shadow:
    0 32px 78px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(116, 211, 255, 0.06) inset,
    0 0 46px rgba(0, 183, 255, 0.08);
}

.rebuild-calc-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.rebuild-calc-compare .is-featured {
  border-color: rgba(0, 183, 255, 0.16);
  background:
    linear-gradient(155deg, rgba(151, 221, 255, 0.08), rgba(0, 255, 209, 0.03) 36%, rgba(255, 255, 255, 0.012) 100%),
    linear-gradient(180deg, rgba(8, 22, 46, 0.92), rgba(8, 22, 46, 0.68));
}

.rebuild-calc-grid {
  align-items: stretch;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
}

.rebuild-calc-results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
  gap: 16px;
}

.rebuild-calc-cta {
  margin-top: 8px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(116, 211, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(116, 211, 255, 0.05), rgba(0, 255, 209, 0.015)),
    rgba(255, 255, 255, 0.014);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(116, 211, 255, 0.04) inset;
  position: relative;
  overflow: hidden;
}

.rebuild-calc-cta::before {
  content: "Next step";
  position: absolute;
  top: 12px;
  left: 22px;
  color: rgba(184, 238, 255, 0.74);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rebuild-calculator .rebuild-section-head {
  max-width: 48ch;
  margin-top: 0;
}

#calculator {
  margin-top: clamp(-10px, -1vw, -4px);
}

.rebuild-calc-inputs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.calculator-field,
.calculator-result {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.035);
}

.calculator-field {
  padding: 14px;
  min-height: 100%;
  border-radius: 20px;
}

.calculator-result {
  border-radius: 18px;
  padding: 16px;
}

.calculator-field span,
.calculator-result-label {
  color: #d0f4ff;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.calculator-field input {
  margin-top: 8px;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 16px;
  background: rgba(5, 14, 29, 0.76);
  color: #f6fbff;
  font-size: 1.08rem;
  font-weight: 600;
}

.calculator-result {
  min-height: 100%;
  justify-content: space-between;
  border-radius: 20px;
}

.calculator-result strong {
  font-size: clamp(2.15rem, 3.2vw, 2.95rem);
  color: #f9fcff;
}

.calculator-result p {
  margin: 0;
  color: rgba(232, 240, 248, 0.92);
  font-size: 0.92rem;
  line-height: 1.45;
}

.rebuild-calc-cta strong {
  color: #d7f7ff;
  display: block;
  margin-top: 10px;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-shadow: 0 0 20px rgba(116, 211, 255, 0.12);
}

.rebuild-calc-cta p {
  max-width: 42ch;
  color: rgba(232, 240, 248, 0.92);
}

.rebuild-calc-cta .btn {
  justify-self: end;
  box-shadow:
    0 16px 34px rgba(0, 183, 255, 0.18),
    0 0 0 1px rgba(116, 211, 255, 0.12) inset;
}

.rebuild-integrations-grid {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: center;
}

.rebuild-process .rebuild-section-head,
.rebuild-proof .rebuild-section-head,
.rebuild-integrations .rebuild-section-head {
  max-width: 50ch;
  gap: 12px;
}

.rebuild-integration-notes {
  margin: 6px 0 14px;
}

.rebuild-channel-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.rebuild-channel-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
  color: rgba(228, 242, 255, 0.84);
  font-size: 0.86rem;
  letter-spacing: -0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.14);
}

.rebuild-chip-row span,
.rebuild-trust-line span {
  background: rgba(255, 255, 255, 0.032);
  border-color: rgba(255, 255, 255, 0.06);
}

.rebuild-marquee.marquee-shell {
  background:
    radial-gradient(circle at 50% 50%, rgba(87, 199, 255, 0.09), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.01));
  border-color: rgba(116, 211, 255, 0.08);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(116, 211, 255, 0.03) inset;
  padding: 20px 0 18px;
}

.rebuild-marquee .marquee-track {
  animation-duration: 44s;
}

.rebuild-marquee .marquee-item {
  width: 204px;
  height: 92px;
  padding: 14px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rebuild-marquee .marquee-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rebuild-marquee .marquee-logo img {
  width: auto;
  max-width: 154px;
  max-height: 46px;
  object-fit: contain;
}

.rebuild-marquee .marquee-item--icon .marquee-logo img,
.rebuild-marquee .marquee-item--retell .marquee-logo img {
  max-width: 40px;
  max-height: 40px;
}

.rebuild-marquee .marquee-item--hospital-cima .marquee-logo img {
  max-width: 152px;
  max-height: 44px;
}

.rebuild-marquee .marquee-item--coldwell-banker .marquee-logo img {
  max-width: 150px;
  max-height: 44px;
}

.rebuild-marquee .marquee-item--colliers .marquee-logo img {
  max-width: 118px;
  max-height: 42px;
}

.rebuild-marquee .marquee-item--gohighlevel .marquee-logo img,
.rebuild-marquee .marquee-item--google-ads .marquee-logo img,
.rebuild-marquee .marquee-item--gemini .marquee-logo img {
  max-width: 150px;
  max-height: 44px;
}

.rebuild-marquee .marquee-item--codex .marquee-logo img,
.rebuild-marquee .marquee-item--chatgpt .marquee-logo img,
.rebuild-marquee .marquee-item--openai .marquee-logo img,
.rebuild-marquee .marquee-item--claude .marquee-logo img,
.rebuild-marquee .marquee-item--meta .marquee-logo img,
.rebuild-marquee .marquee-item--stripe .marquee-logo img,
.rebuild-marquee .marquee-item--whop .marquee-logo img,
.rebuild-marquee .marquee-item--skool .marquee-logo img {
  max-width: 132px;
  max-height: 42px;
}

.rebuild-faq-grid {
  align-items: start;
}

.rebuild-implementation-grid,
.rebuild-testimonial-grid,
.rebuild-case-grid,
.rebuild-integrations-grid,
.rebuild-proof-grid {
  margin-top: 4px;
}

.rebuild-integration-visual .rebuild-ui-window {
  min-height: 100%;
  padding: 18px;
  border-radius: 22px;
}

.rebuild-ghl-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0 14px;
  position: relative;
  isolation: isolate;
}

.rebuild-ghl-visual::before {
  content: "";
  position: absolute;
  inset: 8% 10% 10% 10%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 24% 26%, rgba(0, 183, 255, 0.24), transparent 22%),
    radial-gradient(circle at 74% 68%, rgba(92, 255, 143, 0.18), transparent 20%),
    radial-gradient(circle at 46% 52%, rgba(255, 111, 207, 0.12), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 54%);
  filter: blur(42px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.rebuild-ghl-visual::after {
  content: "";
  position: absolute;
  inset: 2% 6%;
  border-radius: 56px;
  background:
    conic-gradient(from 220deg at 50% 50%, rgba(0, 183, 255, 0.18), rgba(92, 255, 143, 0.12), rgba(255, 111, 207, 0.08), rgba(255, 255, 255, 0.02), rgba(0, 183, 255, 0.18)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 58%);
  filter: blur(52px);
  opacity: 0.92;
  animation: ghlAuroraDrift 9s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.rebuild-ghl-visual .rebuild-ghl-paint {
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0.75;
}

.rebuild-ghl-visual .rebuild-ghl-paint-a,
.rebuild-ghl-visual .rebuild-ghl-paint-b,
.rebuild-ghl-visual .rebuild-ghl-paint-c {
  content: "";
}

.rebuild-ghl-column {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.rebuild-ghl-column-inbound {
  transform: rotate(-3deg) translateY(6px);
}

.rebuild-ghl-column-outbound {
  transform: rotate(3deg) translateY(-4px);
}

.rebuild-ghl-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #bdeeff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rebuild-ghl-node {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.015);
  color: #f2fbff;
  font-weight: 700;
  letter-spacing: -0.02em;
  overflow: hidden;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -12px 24px rgba(0, 183, 255, 0.03);
  transform: perspective(1000px) rotateX(12deg);
}

.rebuild-ghl-node::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -40%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(120, 220, 255, 0.32), transparent);
  transform: skewX(-20deg);
  animation: ghlNodeSweep 3.8s linear infinite;
}

.rebuild-ghl-node::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 36%, transparent 70%, rgba(86, 217, 255, 0.08));
  pointer-events: none;
}

.rebuild-ghl-node strong,
.rebuild-ghl-node b {
  position: relative;
  z-index: 1;
}

.rebuild-ghl-node-channel:nth-child(2) { transform: translateX(6px) rotate(-2deg); }
.rebuild-ghl-node-channel:nth-child(3) { transform: translateX(-4px) rotate(1.5deg); }
.rebuild-ghl-node-channel:nth-child(4) { transform: translateX(10px) rotate(-1deg); }
.rebuild-ghl-node-output:nth-child(2) { transform: translateX(-8px) rotate(1.5deg); }
.rebuild-ghl-node-output:nth-child(3) { transform: translateX(6px) rotate(-1.5deg); }
.rebuild-ghl-node-output:nth-child(4) { transform: translateX(-4px) rotate(2deg); }

.rebuild-ghl-column-inbound .rebuild-ghl-node:nth-child(2) { background:
    radial-gradient(circle at 18% 24%, rgba(0, 183, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.015); }
.rebuild-ghl-column-inbound .rebuild-ghl-node:nth-child(3) { background:
    radial-gradient(circle at 20% 70%, rgba(255, 111, 207, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.015); }
.rebuild-ghl-column-inbound .rebuild-ghl-node:nth-child(4) { background:
    radial-gradient(circle at 14% 50%, rgba(92, 255, 143, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.015); }
.rebuild-ghl-column-outbound .rebuild-ghl-node:nth-child(2) { background:
    radial-gradient(circle at 82% 24%, rgba(0, 183, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.015); }
.rebuild-ghl-column-outbound .rebuild-ghl-node:nth-child(3) { background:
    radial-gradient(circle at 78% 70%, rgba(92, 255, 143, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.015); }
.rebuild-ghl-column-outbound .rebuild-ghl-node:nth-child(4) { background:
    radial-gradient(circle at 86% 50%, rgba(255, 111, 207, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.015); }

.rebuild-ghl-node-channel {
  background:
    radial-gradient(circle at 10% 50%, rgba(86, 217, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.015);
}

.rebuild-ghl-node-output {
  background:
    radial-gradient(circle at 90% 50%, rgba(92, 255, 143, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.015);
}

.rebuild-ghl-node-channel::before,
.rebuild-ghl-node-output::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #6ce7ff, #00b7ff);
  box-shadow:
    0 0 16px rgba(86, 217, 255, 0.45),
    0 0 26px rgba(92, 255, 143, 0.16);
}

.rebuild-ghl-center {
  position: relative;
  width: 196px;
  height: 196px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.rebuild-ghl-core {
  position: relative;
  width: 152px;
  height: 152px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.28));
}

.rebuild-ghl-core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(86, 217, 255, 0.26);
  box-shadow:
    0 0 24px rgba(86, 217, 255, 0.12),
    inset 0 0 18px rgba(92, 255, 143, 0.04);
  animation: ghlCorePulse 2.8s ease-in-out infinite;
}

.rebuild-ghl-core-ring-two {
  inset: 16px;
  animation-delay: 0.55s;
}

.rebuild-ghl-core-ring::before,
.rebuild-ghl-core-ring::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 44% 56% 52% 48% / 46% 46% 54% 54%;
  border: 1px dashed rgba(86, 217, 255, 0.16);
  opacity: 0.62;
  animation: ghlOrbitSpin 9s linear infinite;
}

.rebuild-ghl-core-ring::after {
  inset: 12px;
  border-color: rgba(92, 255, 143, 0.12);
  animation-direction: reverse;
  animation-duration: 11s;
}

.rebuild-ghl-core::before,
.rebuild-ghl-core::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 170px;
  height: 44px;
  margin: -22px 0 0 -85px;
  border-radius: 999px;
  border: 1px solid rgba(255, 111, 207, 0.12);
  transform: rotate(28deg);
  opacity: 0.6;
  animation: ghlRibbonFloat 7s ease-in-out infinite alternate;
}

.rebuild-ghl-core::after {
  transform: rotate(-24deg);
  border-color: rgba(92, 255, 143, 0.12);
  animation-delay: 0.7s;
}

.rebuild-ghl-core-body {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  border-radius: 38px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(0, 183, 255, 0.22), transparent 62%),
    linear-gradient(180deg, rgba(11, 36, 69, 0.98), rgba(8, 23, 46, 0.92));
  border: 1px solid rgba(86, 217, 255, 0.24);
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 32px rgba(0, 183, 255, 0.12),
    0 0 54px rgba(92, 255, 143, 0.06);
}

.rebuild-ghl-core-body::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.rebuild-ghl-core-body::after {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 42px;
  background: conic-gradient(from 180deg, rgba(0, 183, 255, 0.14), rgba(92, 255, 143, 0.1), rgba(255, 111, 207, 0.08), rgba(0, 183, 255, 0.14));
  filter: blur(18px);
  opacity: 0.72;
  animation: ghlCoreHalo 4s ease-in-out infinite;
  z-index: -1;
}

.rebuild-ghl-core-body strong {
  color: #eafcff;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 20px rgba(95, 228, 255, 0.18);
}

.rebuild-ghl-core-body .rebuild-ghl-kicker {
  margin: 0 auto 4px;
  background: rgba(255, 255, 255, 0.05);
}

.rebuild-ghl-stream {
  position: absolute;
  top: 50%;
  width: 86px;
  height: 16px;
  transform: translateY(-50%);
}

.rebuild-ghl-stream-left {
  left: -20px;
}

.rebuild-ghl-stream-right {
  right: -20px;
}

.rebuild-ghl-stream i {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7ef0ff, #00b7ff 62%, #5cff8f 100%);
  box-shadow:
    0 0 18px rgba(95, 228, 255, 0.45),
    0 0 28px rgba(92, 255, 143, 0.14);
  animation: ghlDotTravel 1.55s ease-in-out infinite;
}

.rebuild-ghl-stream i:nth-child(2) { animation-delay: 0.2s; }
.rebuild-ghl-stream i:nth-child(3) { animation-delay: 0.4s; }

.rebuild-ghl-stream-left i {
  left: 0;
}

.rebuild-ghl-stream-right i {
  right: 0;
  animation-name: ghlDotTravelReverse;
}

.rebuild-ghl-stream::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 3px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(0, 183, 255, 0), rgba(0, 183, 255, 0.45), rgba(92, 255, 143, 0.35), rgba(255, 111, 207, 0.22), rgba(0, 183, 255, 0));
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(0, 183, 255, 0.18);
}

.rebuild-integration-visual .rebuild-flow-card,
.rebuild-step-visual .rebuild-flow-card {
  min-height: 110px;
  align-content: start;
}

.rebuild-step-visual {
  display: grid;
  align-content: start;
  margin-top: auto;
}

.offer-kicker {
  margin-bottom: 2px;
}

.rebuild-client-proof-head {
  gap: 8px;
  margin: 22px 0 10px;
}

.rebuild-client-proof-head .offer-kicker {
  margin-bottom: 0;
}

.rebuild-inline-cta,
.rebuild-cta-row,
.rebuild-cta-row-center {
  align-items: center;
}

.rebuild-inline-cta {
  margin-top: 22px;
}

.btn-lg {
  min-height: 50px;
}

.rebuild-process-summary {
  margin: 22px auto 14px;
}

.rebuild-chip-row {
  margin: 2px 0 0;
}

.rebuild-integrations .btn,
.rebuild-inline-cta .btn,
.rebuild-cta-row .btn {
  align-self: start;
}

.rebuild-hero-copy,
.rebuild-contact-copy,
.rebuild-final-cta-shell {
  justify-items: center;
  text-align: center;
}

.rebuild-hero-copy h1,
.rebuild-lead,
.rebuild-intro-proof,
.rebuild-contact-copy h2,
.rebuild-contact-copy p,
.rebuild-final-cta-shell h2,
.rebuild-final-cta-shell p {
  margin-inline: auto;
}

.rebuild-cta-row,
.rebuild-cta-row-center,
.rebuild-contact-actions {
  justify-content: center;
  justify-items: center;
}

.rebuild-cta-row .btn,
.rebuild-cta-row-center .btn,
.rebuild-contact-actions .btn,
.rebuild-inline-cta .btn {
  align-self: center;
  justify-self: center;
  text-align: center;
}

.rebuild-process,
.rebuild-proof,
.rebuild-integrations,
.rebuild-final-cta {
  position: relative;
  isolation: isolate;
}

.rebuild-process::before,
.rebuild-proof::before,
.rebuild-integrations::before,
.rebuild-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.95;
}

.rebuild-process::before {
  background:
    radial-gradient(circle at 20% 28%, rgba(160, 185, 205, 0.14), transparent 22%),
    radial-gradient(circle at 76% 78%, rgba(0, 255, 209, 0.08), transparent 28%);
}

.rebuild-proof::before {
  background:
    radial-gradient(circle at 18% 30%, rgba(92, 255, 143, 0.12), transparent 22%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 209, 0.08), transparent 26%);
}

.rebuild-integrations::before {
  background:
    radial-gradient(circle at 80% 24%, rgba(0, 183, 255, 0.12), transparent 24%),
    radial-gradient(circle at 22% 76%, rgba(0, 255, 209, 0.08), transparent 24%);
}

.rebuild-final-cta::before {
  background:
    radial-gradient(circle at 50% 40%, rgba(116, 211, 255, 0.16), transparent 24%),
    radial-gradient(circle at 56% 46%, rgba(0, 255, 209, 0.09), transparent 34%);
}

.rebuild-process .offer-kicker {
  color: rgba(198, 218, 236, 0.92);
}

.rebuild-proof .offer-kicker,
.rebuild-client-proof-head .offer-kicker {
  color: rgba(158, 255, 190, 0.9);
}

.rebuild-integrations .offer-kicker {
  color: rgba(159, 230, 255, 0.92);
}

.rebuild-final-cta .offer-kicker {
  color: rgba(184, 238, 255, 0.94);
}

.rebuild-step-card-featured {
  background:
    linear-gradient(155deg, rgba(160, 185, 205, 0.1), rgba(116, 211, 255, 0.08) 26%, rgba(0, 255, 209, 0.04) 54%, rgba(255, 255, 255, 0.015) 100%),
    linear-gradient(180deg, rgba(11, 18, 30, 0.96), rgba(8, 22, 46, 0.74));
  border-color: rgba(116, 211, 255, 0.16);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(116, 211, 255, 0.08) inset,
    0 0 34px rgba(0, 183, 255, 0.1);
}

.rebuild-step-card-featured::before {
  background: linear-gradient(90deg, rgba(198, 218, 236, 0.78), rgba(116, 211, 255, 0.66), rgba(0, 255, 209, 0.24), transparent 78%);
}

.rebuild-proof-card:nth-child(2),
.rebuild-proof-card:nth-child(3) {
  border-color: rgba(92, 255, 143, 0.12);
  background:
    linear-gradient(180deg, rgba(92, 255, 143, 0.05), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(8, 22, 24, 0.88), rgba(8, 18, 39, 0.66));
}

.rebuild-proof-card:nth-child(2)::before,
.rebuild-proof-card:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(158, 255, 190, 0.82), rgba(0, 255, 209, 0.16), transparent 76%);
}

.rebuild-proof-card:nth-child(1) strong,
.rebuild-proof-card:nth-child(4) strong {
  color: rgba(198, 218, 236, 0.92);
}

.rebuild-proof-card:nth-child(2) strong,
.rebuild-proof-card:nth-child(3) strong,
.rebuild-testimonial-grid-clients .rebuild-client-results div:nth-child(2) strong {
  color: #b8eeff;
}

.rebuild-proof-card:nth-child(1) span,
.rebuild-proof-card:nth-child(4) span {
  color: rgba(198, 218, 236, 0.7);
}

.rebuild-proof-card:nth-child(2) span,
.rebuild-proof-card:nth-child(3) span {
  color: rgba(184, 238, 255, 0.74);
}

.rebuild-integrations .rebuild-ui-window {
  border-color: rgba(0, 183, 255, 0.12);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(0, 183, 255, 0.06),
    0 0 32px rgba(0, 183, 255, 0.08);
}

.rebuild-integrations .rebuild-flow-card:nth-child(1),
.rebuild-integrations .rebuild-flow-card:nth-child(3) {
  border-color: rgba(0, 255, 209, 0.09);
  background:
    linear-gradient(180deg, rgba(0, 255, 209, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.012);
}

.rebuild-inline-cta .btn,
.rebuild-final-cta .btn-primary {
  box-shadow:
    0 14px 34px rgba(0, 183, 255, 0.18),
    0 0 0 1px rgba(116, 211, 255, 0.12) inset;
}

.rebuild-step-visual .rebuild-ui-window,
.rebuild-integration-visual .rebuild-ui-window {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(8, 18, 39, 0.88), rgba(8, 18, 39, 0.66));
}

.rebuild-step-visual .rebuild-flow-card,
.rebuild-integration-visual .rebuild-flow-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 15px;
  border-radius: 16px;
}

.rebuild-contact-shell {
  grid-template-columns: 1fr auto;
  min-width: 0;
}

.rebuild-contact-actions {
  min-width: 320px;
}

.rebuild-footer-grid {
  align-items: start;
  min-width: 0;
}

.rebuild-main > section,
.rebuild-hero-grid > *,
.rebuild-integrations-grid > *,
.rebuild-contact-shell > *,
.rebuild-calc-grid > *,
.rebuild-calc-results > *,
.rebuild-footer-grid > * {
  min-width: 0;
}

.rebuild-step-card,
.rebuild-proof-card,
.rebuild-quote-card,
.rebuild-case-card,
.rebuild-compare-card,
.rebuild-implementation-card,
.rebuild-calc-shell,
.rebuild-contact-shell,
.rebuild-final-cta-shell {
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
}

.rebuild-step-card,
.rebuild-proof-card,
.rebuild-testimonial-grid-clients .rebuild-quote-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.rebuild-proof-card,
.rebuild-testimonial-grid-clients .rebuild-quote-card {
  padding: 20px 20px 18px;
}

.rebuild-proof-card span,
.rebuild-testimonial-grid-clients .rebuild-client-results small {
  min-height: 1.1em;
}

.rebuild-proof-card strong,
.rebuild-testimonial-grid-clients .rebuild-client-results strong {
  min-height: 2.15em;
  display: flex;
  align-items: flex-start;
}

.rebuild-proof-card p,
.rebuild-testimonial-grid-clients .rebuild-client-results div {
  margin-top: auto;
}

.rebuild-client-card .rebuild-client-logo-wrap {
  min-height: 88px;
  display: grid;
  align-items: center;
}

.rebuild-client-card .rebuild-client-results {
  margin-top: auto;
}

.rebuild-integrations-grid {
  align-items: stretch;
}

.rebuild-integrations-grid > * {
  display: grid;
  align-content: start;
}

.rebuild-integrations .rebuild-section-head,
.rebuild-integrations .rebuild-integration-visual {
  height: 100%;
}

.rebuild-integrations .rebuild-section-head {
  gap: 12px;
}

@keyframes ghlCorePulse {
  0%, 100% { transform: scale(0.96); opacity: 0.72; }
  50% { transform: scale(1.03); opacity: 1; }
}

@keyframes ghlOrbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ghlDotTravel {
  0% { transform: translateX(0) scale(0.84); opacity: 0.24; }
  50% { transform: translateX(42px) scale(1.08); opacity: 1; }
  100% { transform: translateX(82px) scale(0.84); opacity: 0.24; }
}

@keyframes ghlDotTravelReverse {
  0% { transform: translateX(0) scale(0.84); opacity: 0.24; }
  50% { transform: translateX(-42px) scale(1.08); opacity: 1; }
  100% { transform: translateX(-82px) scale(0.84); opacity: 0.24; }
}

@keyframes ghlNodeSweep {
  0% { transform: translateX(0) skewX(-20deg); opacity: 0; }
  15% { opacity: 0.6; }
  100% { transform: translateX(320%) skewX(-20deg); opacity: 0; }
}

@keyframes ghlAuroraDrift {
  0% { transform: scale(0.96) translate3d(-6px, -8px, 0); opacity: 0.66; }
  100% { transform: scale(1.05) translate3d(8px, 10px, 0); opacity: 0.94; }
}

@keyframes ghlCoreHalo {
  0%, 100% { transform: scale(0.94); opacity: 0.56; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

@keyframes ghlRibbonFloat {
  0% { transform: rotate(28deg) scale(0.96); opacity: 0.42; }
  100% { transform: rotate(18deg) scale(1.04) translateY(-6px); opacity: 0.72; }
}

html[data-theme="light"] .rebuild-ghl-kicker {
  background: #dbe6f1;
  border-color: rgba(18, 40, 74, 0.14);
  color: #08213b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

html[data-theme="light"] .rebuild-ghl-node {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 127, 184, 0.08), transparent 58%),
    linear-gradient(180deg, #f7fbfe, #e7f0f7),
    #eef4fa;
  border-color: rgba(18, 40, 74, 0.16);
  color: #061528;
  box-shadow:
    0 12px 24px rgba(61, 92, 126, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -12px 24px rgba(0, 127, 184, 0.04);
}

html[data-theme="light"] .rebuild-ghl-node-channel {
  background:
    radial-gradient(circle at 12% 50%, rgba(0, 127, 184, 0.12), transparent 28%),
    linear-gradient(180deg, #f7fbfe, #e7f0f7),
    #eef4fa;
}

html[data-theme="light"] .rebuild-ghl-node-output {
  background:
    radial-gradient(circle at 88% 50%, rgba(18, 169, 111, 0.1), transparent 28%),
    linear-gradient(180deg, #f7fbfe, #e7f0f7),
    #eef4fa;
}

html[data-theme="light"] .rebuild-ghl-node::after {
  background: linear-gradient(90deg, transparent, rgba(0, 127, 184, 0.22), transparent);
}

html[data-theme="light"] .rebuild-ghl-node-channel::before,
html[data-theme="light"] .rebuild-ghl-node-output::before {
  background: #007fb8;
  box-shadow: 0 0 16px rgba(0, 127, 184, 0.28);
}

html[data-theme="light"] .rebuild-ghl-core-ring {
  border-color: rgba(0, 127, 184, 0.18);
  box-shadow: 0 0 24px rgba(0, 127, 184, 0.1);
}

html[data-theme="light"] .rebuild-ghl-core-body {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.34), transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(0, 127, 184, 0.16), transparent 58%),
    linear-gradient(180deg, #eef7fc, #d6e7f3);
  border-color: rgba(0, 127, 184, 0.2);
  box-shadow:
    0 18px 30px rgba(61, 92, 126, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 0 34px rgba(0, 127, 184, 0.08);
}

html[data-theme="light"] .rebuild-ghl-visual::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 127, 184, 0.1), transparent 48%),
    radial-gradient(circle at 52% 50%, rgba(18, 169, 111, 0.06), transparent 36%),
    radial-gradient(circle at 44% 52%, rgba(194, 102, 176, 0.05), transparent 28%);
  opacity: 0.88;
}

html[data-theme="light"] .rebuild-ghl-visual::after {
  background:
    conic-gradient(from 180deg at 50% 50%, rgba(0, 127, 184, 0.08), rgba(18, 169, 111, 0.06), rgba(194, 102, 176, 0.05), rgba(0, 127, 184, 0.08)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 58%);
}

html[data-theme="light"] .rebuild-ghl-core-body strong {
  color: #061528;
}

html[data-theme="light"] .rebuild-ghl-stream i {
  background: linear-gradient(180deg, #24c3f0, #007fb8 70%, #12a96f 100%);
  box-shadow:
    0 0 18px rgba(0, 127, 184, 0.22),
    0 0 24px rgba(18, 169, 111, 0.1);
}

@media (max-width: 980px) {
  .rebuild-ghl-visual {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rebuild-ghl-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rebuild-ghl-center {
    order: -1;
    margin-inline: auto;
  }
}

.rebuild-quote-card,
.rebuild-case-card,
.rebuild-implementation-card {
  position: relative;
  overflow: hidden;
}

.rebuild-quote-card:hover,
.rebuild-case-card:hover,
.rebuild-step-card:hover,
.rebuild-benchmark-card:hover,
.rebuild-benchmark-compare-card:hover,
.rebuild-implementation-card:hover {
  transform: translateY(-4px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-color: rgba(151, 221, 255, 0.14);
}

@keyframes leadRise {
  0%, 100% { transform: scaleY(0.7); opacity: 0.38; }
  50% { transform: scaleY(1.35); opacity: 1; }
}

@keyframes voiceBars {
  0%, 100% { transform: scaleY(0.72); opacity: 0.46; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

@keyframes voicePulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes closeBars {
  0% { transform: scaleY(0.72); opacity: 0.42; }
  100% { transform: scaleY(1.08); opacity: 1; }
}

@media (max-width: 1100px) {
  .rebuild-process-summary,
  .rebuild-hero-grid,
  .rebuild-integrations-grid,
  .rebuild-contact-shell,
  .rebuild-calc-compare,
  .rebuild-calc-results,
  .rebuild-benchmark-grid,
  .rebuild-benchmark-calc,
  .rebuild-benchmark-results,
  .rebuild-benchmark-compare,
  .rebuild-preview-points,
  .rebuild-integration-notes,
  .rebuild-channel-strip,
  .rebuild-hero-metrics {
    grid-template-columns: 1fr;
  }

  .rebuild-contact-actions {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .ambient-burst::before {
    top: 116px;
    width: 96vw;
    height: 96vw;
  }

  .ambient-burst::after {
    top: 148px;
    width: 82vw;
    height: 82vw;
  }

  .rebuild-intro-proof {
    font-size: 0.72rem;
  }

  .calculator-result strong {
    font-size: clamp(1.72rem, 8vw, 2.2rem);
  }

  .rebuild-hero-copy h1 {
    max-width: 12ch;
  }

  .rebuild-hero {
    min-height: calc(100svh - 20px);
    padding-top: 126px;
    padding-bottom: 42px;
  }

  .rebuild-title-line + .rebuild-title-line {
    margin-top: 0.18em;
  }

  .rebuild-trust {
    margin-top: 0;
    padding-top: 0;
  }

  .rebuild-trust .rebuild-section-head,
  .rebuild-proof .rebuild-section-head,
  .rebuild-calculator .rebuild-section-head,
  .rebuild-integrations .rebuild-section-head,
  .rebuild-implementation .rebuild-section-head,
  .rebuild-contact-copy,
  .rebuild-final-cta-shell {
    text-align: center;
    justify-items: center;
  }

  .rebuild-hero-copy {
    gap: 14px;
    max-width: 100%;
  }

  .rebuild-cta-row {
    width: 100%;
    gap: 10px;
  }

  .rebuild-intro-proof {
    max-width: 28ch;
    margin-inline: auto;
    line-height: 1.55;
  }

  .rebuild-trust-label {
    margin: 4px 0 10px;
  }

  .rebuild-hero-metrics article,
  .rebuild-proof-bar article {
    padding: 15px 16px;
    border-radius: 18px;
  }

  .rebuild-hero-metrics strong,
  .rebuild-proof-bar article strong {
    font-size: clamp(1.24rem, 5.4vw, 1.6rem);
    line-height: 1.02;
  }

  .rebuild-hero-metrics span,
  .rebuild-proof-bar span {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .rebuild-marquee.marquee-shell {
    padding: 20px 0 18px;
  }

  .rebuild-marquee .marquee-track {
    gap: 34px;
    padding-left: 34px;
    animation-duration: 46s;
  }

  .rebuild-marquee .marquee-item {
    width: 148px;
    height: 74px;
  }

  .rebuild-marquee .marquee-logo img {
    max-height: 46px;
  }

  .rebuild-proof-bar::after {
    margin-top: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
}

/* Final symmetry pass */
.rebuild-main {
  gap: clamp(64px, 8vw, 104px);
}

.rebuild-main > section > .container,
.rebuild-final-cta-shell,
.rebuild-footer {
  width: min(var(--container-max), calc(100% - 2 * var(--px)));
  margin-inline: auto;
}

.rebuild-section-head {
  gap: 14px;
  max-width: 68ch;
}

.rebuild-section-head-center {
  max-width: 62ch;
}

.rebuild-section-head h2,
.rebuild-final-cta-shell h2,
.rebuild-contact-copy h2 {
  text-wrap: balance;
}

.rebuild-section-head p,
.rebuild-lead,
.rebuild-final-cta-shell p,
.rebuild-contact-copy p,
.rebuild-benchmark-scenario {
  max-width: 60ch;
  text-wrap: pretty;
  line-height: 1.62;
}

.rebuild-section-head-center p,
.rebuild-final-cta-shell p {
  margin-inline: auto;
}

.rebuild-cta-row,
.rebuild-cta-row-center,
.rebuild-inline-cta {
  align-items: center;
  justify-content: center;
}

.rebuild-hero-grid,
.rebuild-integrations-grid,
.rebuild-contact-shell,
.rebuild-footer-grid,
.rebuild-faq-grid,
.rebuild-calc-grid,
.rebuild-benchmark-calc,
.rebuild-benchmark-results,
.rebuild-benchmark-compare,
.rebuild-process-grid,
.rebuild-process-summary,
.rebuild-proof-grid,
.rebuild-testimonial-grid-clients,
.rebuild-implementation-grid,
.rebuild-hero-metrics,
.rebuild-proof-bar {
  align-items: stretch;
}

.rebuild-process-summary article,
.rebuild-proof-card,
.rebuild-implementation-card,
.rebuild-benchmark-card,
.rebuild-benchmark-compare-card,
.rebuild-testimonial-grid-clients .rebuild-quote-card,
.rebuild-hero-metrics article,
.rebuild-proof-bar article,
.rebuild-integration-notes article,
.rebuild-preview-points article,
.calculator-result,
.calculator-field,
.faq-detail {
  height: 100%;
}

.rebuild-benchmark-grid,
.rebuild-benchmark-calc,
.rebuild-benchmark-results,
.rebuild-benchmark-compare,
.rebuild-preview-points,
.rebuild-integration-notes,
.rebuild-proof-grid,
.rebuild-testimonial-grid-clients,
.rebuild-implementation-grid {
  justify-items: stretch;
}

.rebuild-benchmark-card,
.rebuild-benchmark-compare-card,
.calculator-result,
.rebuild-process-summary article,
.rebuild-preview-points article,
.rebuild-integration-notes article,
.rebuild-proof-card,
.rebuild-implementation-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.rebuild-benchmark-card strong,
.rebuild-benchmark-compare-card h3,
.rebuild-proof-card strong,
.rebuild-client-results strong,
.rebuild-implementation-card h3,
.rebuild-preview-points strong,
.rebuild-integration-notes strong {
  text-wrap: balance;
}

.rebuild-benchmark-split > div,
.rebuild-benchmark-compare-card > div,
.rebuild-client-results > div,
.rebuild-preview-points article,
.rebuild-integration-notes article {
  min-height: 80px;
  align-content: start;
}

.rebuild-client-proof-head,
.rebuild-trust-label {
  text-align: center;
}

.rebuild-client-proof-head {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 8px;
}

.rebuild-client-proof-head h3 {
  max-width: 28ch;
  margin: 0;
  text-wrap: balance;
}

.rebuild-testimonial-grid-clients {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rebuild-testimonial-grid-clients .rebuild-quote-card {
  justify-items: center;
  text-align: center;
}

.rebuild-client-logo-wrap {
  width: 100%;
  justify-items: center;
}

.rebuild-client-results {
  width: 100%;
  justify-items: stretch;
}

.rebuild-client-results > div {
  justify-items: center;
  text-align: center;
}

.rebuild-client-results small,
.rebuild-client-results strong {
  display: block;
  width: 100%;
}

.rebuild-proof-bar article,
.rebuild-hero-metrics article {
  justify-items: center;
  text-align: center;
}

.rebuild-proof-bar article strong,
.rebuild-hero-metrics article strong {
  width: 100%;
}

.rebuild-contact-shell {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 22px;
}

.rebuild-contact-actions {
  align-content: center;
  justify-items: stretch;
}

.rebuild-contact-actions .btn,
.rebuild-inline-cta .btn,
.rebuild-cta-row .btn,
.rebuild-cta-row-center .btn {
  justify-content: center;
  min-height: 54px;
  text-align: center;
}

.rebuild-footer-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 0.9fr);
  gap: 20px;
}

.rebuild-footer-brand,
.rebuild-footer-links,
.rebuild-footer-contact {
  align-content: start;
  min-width: 0;
}

.rebuild-footer-links a,
.rebuild-footer-contact a {
  min-height: 24px;
  line-height: 1.45;
}

html[lang="es-CR"] .rebuild-section-head,
html[lang="es"] .rebuild-section-head {
  max-width: 72ch;
}

html[lang="es-CR"] .rebuild-section-head-center,
html[lang="es"] .rebuild-section-head-center {
  max-width: 66ch;
}

html[lang="es-CR"] .rebuild-contact-shell,
html[lang="es"] .rebuild-contact-shell {
  grid-template-columns: minmax(0, 1fr) minmax(344px, 1fr);
}

html[lang="es-CR"] .rebuild-benchmark-split > div,
html[lang="es"] .rebuild-benchmark-split > div,
html[lang="es-CR"] .rebuild-benchmark-compare-card > div,
html[lang="es"] .rebuild-benchmark-compare-card > div {
  min-height: 92px;
}

@media (max-width: 1100px) {
  .rebuild-main {
    gap: clamp(56px, 8vw, 84px);
  }

  .rebuild-hero-grid,
  .rebuild-integrations-grid,
  .rebuild-contact-shell,
  .rebuild-footer-grid,
  .rebuild-faq-grid,
  .rebuild-calc-grid,
  .rebuild-benchmark-calc,
  .rebuild-benchmark-results,
  .rebuild-benchmark-compare,
  .rebuild-process-grid,
  .rebuild-process-summary,
  .rebuild-proof-grid,
  .rebuild-testimonial-grid-clients,
  .rebuild-implementation-grid,
  .rebuild-hero-metrics,
  .rebuild-proof-bar {
    grid-template-columns: 1fr;
  }

  .rebuild-section-head,
  .rebuild-section-head-center,
  html[lang="es-CR"] .rebuild-section-head,
  html[lang="es"] .rebuild-section-head,
  html[lang="es-CR"] .rebuild-section-head-center,
  html[lang="es"] .rebuild-section-head-center {
    max-width: 64ch;
  }

  .rebuild-contact-actions,
  .rebuild-footer-links,
  .rebuild-footer-contact {
    justify-items: stretch;
  }

  .rebuild-section-head p,
  .rebuild-lead,
  .rebuild-final-cta-shell p,
  .rebuild-contact-copy p,
  .rebuild-benchmark-scenario {
    max-width: 62ch;
  }
}

@media (max-width: 768px) {
  .rebuild-main {
    gap: clamp(48px, 10vw, 72px);
  }

  .rebuild-section-head,
  .rebuild-section-head-center,
  html[lang="es-CR"] .rebuild-section-head,
  html[lang="es"] .rebuild-section-head {
    gap: 12px;
    max-width: 100%;
  }

  .rebuild-main > section > .container,
  .rebuild-final-cta-shell,
  .rebuild-footer {
    width: min(var(--container-max), calc(100% - 2 * clamp(16px, 5vw, 24px)));
  }

  .rebuild-hero-copy,
  .rebuild-contact-copy {
    gap: 16px;
  }

  .rebuild-hero-copy h1,
  .rebuild-section-head h2,
  .rebuild-contact-copy h2,
  .rebuild-final-cta-shell h2,
  .faq-detail summary {
    text-wrap: pretty;
  }

  .rebuild-section-head p,
  .rebuild-lead,
  .rebuild-final-cta-shell p,
  .rebuild-contact-copy p,
  .rebuild-benchmark-scenario,
  .faq-detail p {
    max-width: 100%;
    line-height: 1.68;
  }

  .rebuild-benchmark-grid,
  .rebuild-calc-inputs,
  .rebuild-calc-results,
  .rebuild-benchmark-compare,
  .rebuild-hero-bottom,
  .rebuild-hero-top,
  .rebuild-integration-grid {
    grid-template-columns: 1fr;
  }

  .rebuild-benchmark-split,
  .rebuild-metric-stack {
    grid-template-columns: 1fr 1fr;
  }

  .rebuild-calculator .container,
  .rebuild-integrations .container,
  .rebuild-footer,
  .rebuild-contact-shell,
  .rebuild-final-cta-shell {
    width: min(var(--container-max), calc(100% - 2 * 16px));
  }

  .rebuild-calc-shell,
  .rebuild-contact-shell,
  .rebuild-final-cta-shell,
  .rebuild-footer {
    padding: 18px;
    border-radius: 22px;
  }

  .rebuild-benchmark-grid,
  .rebuild-benchmark-results,
  .rebuild-benchmark-compare,
  .rebuild-preview-points,
  .rebuild-integration-notes,
  .rebuild-process-summary,
  .rebuild-footer-grid,
  .rebuild-contact-actions {
    gap: 12px;
  }

  .rebuild-benchmark-card,
  .rebuild-benchmark-compare-card,
  .rebuild-benchmark-results .calculator-result,
  .rebuild-flow-card,
  .rebuild-proof-card,
  .rebuild-implementation-card,
  .faq-detail,
  .rebuild-ui-window,
  .rebuild-step-card,
  .rebuild-status-card,
  .rebuild-mini-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .rebuild-benchmark-card > strong,
  .rebuild-benchmark-compare-card h3 {
    max-width: 100%;
    font-size: 1.04rem;
    line-height: 1.24;
  }

  .rebuild-benchmark-split {
    gap: 10px;
  }

  .rebuild-benchmark-compare-pill {
    gap: 6px;
    margin: 4px auto 14px;
    padding: 4px 6px;
    min-width: 142px;
  }

  .rebuild-benchmark-compare-pill__side {
    min-width: 60px;
    padding: 6px 9px;
    font-size: 0.64rem;
    letter-spacing: 0.05em;
  }

  .rebuild-benchmark-compare-pill__divider {
    width: 10px;
  }

  .rebuild-benchmark-split > div,
  .rebuild-benchmark-compare-card > div {
    padding: 12px 13px;
    border-radius: 16px;
  }

  .rebuild-benchmark-split small,
  .rebuild-benchmark-compare-card small {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .rebuild-benchmark-split b,
  .rebuild-benchmark-compare-card strong {
    font-size: clamp(1.24rem, 6vw, 1.72rem);
  }

  .rebuild-benchmark-card:nth-child(3) .rebuild-benchmark-split b:last-child {
    font-size: clamp(0.96rem, 4.4vw, 1.1rem);
  }

  .rebuild-benchmark-visual {
    min-height: 88px;
  }

  .rebuild-benchmark-visual-cost,
  .rebuild-benchmark-visual-capacity,
  .rebuild-benchmark-bars {
    padding: 14px;
  }

  .rebuild-benchmark-results .calculator-result:first-child,
  .rebuild-benchmark-results .calculator-result:nth-child(2),
  .rebuild-benchmark-compare-card-featured {
    transform: none;
  }

  .calculator-result strong,
  .rebuild-benchmark-results .calculator-result:first-child strong,
  .rebuild-benchmark-results .calculator-result:nth-child(2) strong,
  .rebuild-benchmark-results .calculator-result:nth-child(3) strong {
    font-size: clamp(1.82rem, 8vw, 2.42rem);
    line-height: 0.96;
  }

  .calculator-result p {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .rebuild-calc-cta {
    gap: 14px;
    padding: 16px;
  }

  .rebuild-calc-cta::before {
    position: static;
    display: block;
    margin-bottom: 2px;
    transform: none;
  }

  .rebuild-tag-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rebuild-tag-row span,
  .rebuild-chip-row span,
  .rebuild-channel-strip span {
    justify-content: center;
    text-align: center;
  }

  .rebuild-ghl-visual {
    min-height: 300px;
    padding: 16px 14px;
    border-radius: 20px;
  }

  .rebuild-ghl-node {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .rebuild-ghl-core {
    transform: scale(0.92);
  }

  .rebuild-ghl-stream {
    width: 88px;
  }

  .rebuild-footer-brand,
  .rebuild-footer-links,
  .rebuild-footer-contact {
    gap: 8px;
  }

  .rebuild-footer-links a,
  .rebuild-footer-contact a {
    min-height: 28px;
    padding-inline: 2px;
  }

  .mobile-sticky-cta {
    gap: 10px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta .btn {
    min-height: 52px;
    font-size: 0.95rem;
    padding-inline: 14px;
  }

  .rebuild-benchmark-split > div,
  .rebuild-benchmark-compare-card > div,
  .rebuild-client-results > div,
  .rebuild-preview-points article,
  .rebuild-integration-notes article {
    min-height: 0;
  }

  .rebuild-calc-cta,
  .rebuild-contact-actions,
  .rebuild-cta-row,
  .rebuild-cta-row-center {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rebuild-calc-cta .btn,
  .rebuild-contact-actions .btn,
  .rebuild-inline-cta .btn,
  .rebuild-cta-row .btn,
  .rebuild-cta-row-center .btn {
    width: 100%;
    min-height: 56px;
  }

  .rebuild-client-proof-head h3,
  .rebuild-section-head h2,
  .rebuild-contact-copy h2,
  .rebuild-final-cta-shell h2 {
    max-width: 16ch;
    margin-inline: auto;
  }

  html[lang="es-CR"] .rebuild-client-proof-head h3,
  html[lang="es"] .rebuild-client-proof-head h3,
  html[lang="es-CR"] .rebuild-section-head h2,
  html[lang="es"] .rebuild-section-head h2,
  html[lang="es-CR"] .rebuild-contact-copy h2,
  html[lang="es"] .rebuild-contact-copy h2,
  html[lang="es-CR"] .rebuild-final-cta-shell h2,
  html[lang="es"] .rebuild-final-cta-shell h2 {
    max-width: 18ch;
  }

  html[lang="es-CR"] .rebuild-lead,
  html[lang="es"] .rebuild-lead,
  html[lang="es-CR"] .rebuild-benchmark-scenario,
  html[lang="es"] .rebuild-benchmark-scenario,
  html[lang="es-CR"] .faq-detail p,
  html[lang="es"] .faq-detail p {
    line-height: 1.74;
  }

  html[lang="es-CR"] .rebuild-contact-actions .btn,
  html[lang="es"] .rebuild-contact-actions .btn,
  html[lang="es-CR"] .rebuild-cta-row .btn,
  html[lang="es"] .rebuild-cta-row .btn,
  html[lang="es-CR"] .rebuild-cta-row-center .btn,
  html[lang="es"] .rebuild-cta-row-center .btn {
    min-height: 60px;
  }

  html[lang="es-CR"] .rebuild-benchmark-card > strong,
  html[lang="es"] .rebuild-benchmark-card > strong,
  html[lang="es-CR"] .rebuild-benchmark-compare-card h3,
  html[lang="es"] .rebuild-benchmark-compare-card h3,
  html[lang="es-CR"] .rebuild-flow-card strong,
  html[lang="es"] .rebuild-flow-card strong,
  html[lang="es-CR"] .rebuild-proof-card strong,
  html[lang="es"] .rebuild-proof-card strong,
  html[lang="es-CR"] .rebuild-implementation-card h3,
  html[lang="es"] .rebuild-implementation-card h3,
  html[lang="es-CR"] .faq-detail summary,
  html[lang="es"] .faq-detail summary {
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  html[lang="es-CR"] .rebuild-contact-copy h2,
  html[lang="es"] .rebuild-contact-copy h2 {
    max-width: 14ch;
  }

  html[lang="es-CR"] .rebuild-contact-actions .btn,
  html[lang="es"] .rebuild-contact-actions .btn {
    white-space: normal;
    line-height: 1.35;
  }

  html[lang="es-CR"] .rebuild-contact-actions a[href^="mailto:"],
  html[lang="es"] .rebuild-contact-actions a[href^="mailto:"] {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 768px) {
  .nav-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-container {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
  }

  .nav-logo {
    min-width: 0;
    padding-top: 0;
  }

  .nav-actions {
    align-self: center;
    position: relative;
    z-index: 121;
  }

  .nav-utility-controls {
    gap: 4px;
    padding: 3px;
    flex-shrink: 0;
  }

  .nav-utility-switch__track {
    min-width: 58px;
    height: 30px;
  }

  .nav-utility-switch__track--lang {
    min-width: 68px;
  }

  .nav-utility-switch__option--lang {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  .nav-toggle {
    position: relative;
    z-index: 121;
  }

  body.js-enabled .nav-links {
    top: calc(100% + 8px);
    z-index: 120;
    max-height: min(70svh, 520px);
    overflow-y: auto;
  }

  .rebuild-hero {
    min-height: auto;
    align-items: start;
    padding-top: 92px;
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }

  .rebuild-hero-copy {
    gap: 12px;
    width: 100%;
    max-width: min(100%, 34rem);
  }

  .rebuild-hero-grid > * {
    justify-self: center;
  }

  .rebuild-hero .rebuild-cta-row .btn {
    width: min(100%, 360px);
  }

  .rebuild-lead,
  .rebuild-intro-proof {
    max-width: 32ch;
  }

  .rebuild-intro-proof {
    font-size: 0.88rem;
    opacity: 0.82;
    margin-top: 2px;
  }

  html[lang="es-CR"] .rebuild-lead,
  html[lang="es"] .rebuild-lead,
  html[lang="es-CR"] .rebuild-intro-proof,
  html[lang="es"] .rebuild-intro-proof {
    max-width: 34ch;
  }
}

@media (max-width: 560px) {
  .nav-container {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "logo actions menu";
    align-items: center;
    column-gap: 8px;
    row-gap: 0;
  }

  .nav-logo {
    grid-area: logo;
  }

  .nav-logo span {
    display: none;
  }

  .nav-actions {
    grid-area: actions;
    justify-self: end;
    width: auto;
  }

  .nav-utility-controls {
    width: auto;
    justify-content: center;
  }

  .nav-utility-btn--theme,
  .nav-utility-btn--lang {
    flex: 0 0 auto;
  }

  .nav-toggle {
    grid-area: menu;
    width: 40px;
    height: 40px;
  }

  body.js-enabled .nav-links {
    left: 0;
    right: 0;
  }

  .rebuild-hero {
    padding-top: 80px;
    padding-bottom: calc(118px + env(safe-area-inset-bottom));
  }

  .rebuild-hero-copy h1 {
    max-width: 10.8ch;
  }

  html[lang="es-CR"] .rebuild-hero-copy h1,
  html[lang="es"] .rebuild-hero-copy h1 {
    max-width: 13.2ch;
  }

  .rebuild-hero .rebuild-cta-row .btn {
    width: min(100%, 320px);
  }

  html[lang="es-CR"] .rebuild-hero-copy,
  html[lang="es"] .rebuild-hero-copy {
    max-width: min(100%, 20rem);
  }

  html[lang="es-CR"] .rebuild-hero-copy h1,
  html[lang="es"] .rebuild-hero-copy h1 {
    font-size: clamp(2.5rem, 11.2vw, 3.45rem);
    max-width: 9.4ch;
    line-height: 1;
  }

  html[lang="es-CR"] .rebuild-title-line + .rebuild-title-line,
  html[lang="es"] .rebuild-title-line + .rebuild-title-line {
    margin-top: 0.14em;
  }

  html[lang="es-CR"] .rebuild-rotating-wrap,
  html[lang="es"] .rebuild-rotating-wrap {
    display: grid;
    justify-items: center;
    width: 100%;
    min-width: 0;
    padding-top: 0.04em;
    padding-bottom: 0.14em;
  }

  html[lang="es-CR"] .rebuild-rotating-text,
  html[lang="es"] .rebuild-rotating-text {
    width: 100%;
    text-align: center;
    line-height: 1.08;
    text-wrap: balance;
    padding-bottom: 0.05em;
  }

  html[lang="es-CR"] .rebuild-lead,
  html[lang="es"] .rebuild-lead {
    max-width: 26ch;
  }

  html[lang="es-CR"] .rebuild-hero .rebuild-cta-row .btn,
  html[lang="es"] .rebuild-hero .rebuild-cta-row .btn {
    width: min(100%, 18.5rem);
    min-height: 54px;
    padding-inline: 18px;
    white-space: normal;
    text-wrap: balance;
    line-height: 1.2;
  }
}

html[data-theme="light"] .nav-links {
  border-color: rgba(18, 40, 74, 0.12);
  background: linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(242, 248, 253, 0.96));
  box-shadow:
    0 18px 36px rgba(70, 100, 132, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

html[data-theme="light"] .nav-link {
  color: #10233f;
}

html[data-theme="light"] .nav-link:hover,
html[data-theme="light"] .nav-link:focus-visible {
  background: rgba(18, 40, 74, 0.06);
  color: #08182e;
}

.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 79;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 58px;
  max-width: min(264px, calc(100vw - 40px));
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(64, 214, 149, 0.18);
  background:
    linear-gradient(180deg, rgba(8, 20, 28, 0.86), rgba(7, 18, 25, 0.8)),
    linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(97, 255, 179, 0.02));
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(37, 211, 102, 0.04) inset;
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  color: #effff8;
  overflow: hidden;
  transition:
    transform 0.24s var(--ease-premium),
    box-shadow 0.24s var(--ease-premium),
    border-color 0.24s var(--ease-premium),
    background 0.24s var(--ease-premium);
}

.whatsapp-widget::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(37, 211, 102, 0.18), rgba(37, 211, 102, 0));
  opacity: 0.42;
  pointer-events: none;
  z-index: -1;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(97, 236, 170, 0.28);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(37, 211, 102, 0.07) inset;
}

.whatsapp-widget:focus-visible {
  outline: none;
}

.whatsapp-widget__icon {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(116, 255, 192, 0.52), rgba(37, 211, 102, 0.98));
  color: #082114;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 10px 22px rgba(18, 115, 66, 0.24);
}

.whatsapp-widget__icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(174, 255, 220, 0.28);
}

.whatsapp-widget__icon::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9fff0;
  box-shadow: 0 0 0 4px rgba(217, 255, 240, 0.12);
}

.whatsapp-widget__icon svg {
  width: 23px;
  height: 23px;
}

.whatsapp-widget__content {
  display: grid;
  gap: 2px;
  min-width: 0;
  max-width: 0;
  opacity: 0;
  padding-left: 0;
  overflow: hidden;
  white-space: nowrap;
  transition:
    max-width 0.28s var(--ease-premium),
    opacity 0.2s var(--ease-premium),
    padding-left 0.28s var(--ease-premium);
}

.whatsapp-widget:hover .whatsapp-widget__content,
.whatsapp-widget:focus-visible .whatsapp-widget__content {
  max-width: 172px;
  opacity: 1;
  padding-left: 12px;
}

.whatsapp-widget__eyebrow {
  font: 700 0.58rem/1 var(--font-sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(205, 255, 232, 0.62);
}

.whatsapp-widget__title {
  font: 600 0.88rem/1.15 var(--font-sans);
  letter-spacing: -0.02em;
  color: #f3fff9;
}

html[data-theme="light"] .whatsapp-widget {
  border-color: rgba(33, 143, 93, 0.12);
  background:
    linear-gradient(180deg, rgba(252, 255, 254, 0.84), rgba(240, 248, 244, 0.8)),
    linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(97, 255, 179, 0.015));
  box-shadow:
    0 18px 34px rgba(94, 125, 112, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  color: #10233f;
}

html[data-theme="light"] .whatsapp-widget__eyebrow {
  color: rgba(33, 99, 68, 0.56);
}

html[data-theme="light"] .whatsapp-widget__title {
  color: #10233f;
}

@media (max-width: 768px) {
  .whatsapp-widget {
    right: 14px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    min-width: 54px;
    max-width: 54px;
    padding: 4px;
    border-radius: 999px;
  }

  .whatsapp-widget__icon {
    width: 46px;
    height: 46px;
  }

  .whatsapp-widget__content {
    display: none;
  }
}

@media (max-width: 560px) {
  .whatsapp-widget {
    right: 12px;
    bottom: calc(94px + env(safe-area-inset-bottom));
    min-width: 52px;
    max-width: 52px;
    padding: 3px;
  }
}
