/* ═══════════════════════════════════════════
   AI KALVI — PREMIUM LANDING PAGE STYLES
   Deep-Tech · Emotionally Intelligent
═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg-deep: #020617;
  --bg-navy: #0A0F1F;
  --bg-card: rgba(255, 255, 255, 0.045);
  --bg-card-hover: rgba(255, 255, 255, 0.085);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-cyan: rgba(34, 211, 238, 0.6);
  --blue-400: #60A5FA;
  --blue-500: #3B82F6;
  --cyan-400: #22d3ee;
  --violet-400: #a78bfa;
  --violet-600: #7c3aed;
  --pink-400: #f472b6;
  --green-400: #34d399;
  --text-primary: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #475569;
  --radius-card: 16px;
  --radius-btn: 8px;
  --nav-height: 72px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset + Base ── */
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

body {
  font-family: 'Inter', 'Space Grotesk', system-ui, sans-serif;
  background: linear-gradient(180deg, var(--bg-navy) 0%, var(--bg-deep) 30%);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

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

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: none;
}

/* ── Neural Canvas ── */
#neural-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ── Custom Cursor ── */
#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.2s ease;
  mix-blend-mode: difference;
}

#cursor-halo {
  position: fixed;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.25) 0%, transparent 70%);
  border: 1px solid rgba(96, 165, 250, 0.35);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), width 0.2s, height 0.2s, opacity 0.2s;
}

body:hover #cursor-dot {
  opacity: 1;
}

/* Attract effect on interactive elements */
a:hover~#cursor-halo,
button:hover~#cursor-halo {
  width: 52px;
  height: 52px;
}

/* ── Glassmorphism Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(2, 6, 23, 0.92);
  border-bottom-color: rgba(96, 165, 250, 0.12);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.2) contrast(1.5) drop-shadow(0 0 10px rgba(96, 165, 250, 0.6));
}

.brand-text {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: 'Space Grotesk', sans-serif;
  color: #e2e8f0;
}

.brand-accent {
  color: var(--blue-400);
  text-shadow:
    0 0 8px rgba(96, 165, 250, 0.9),
    0 0 20px rgba(96, 165, 250, 0.5),
    0 0 40px rgba(96, 165, 250, 0.25);
}

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

.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-btn);
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.15);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(96, 165, 250, 0.3), 0 0 0 1px rgba(96, 165, 250, 0.2);
}

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

.btn-primary>* {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-glass);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  color: var(--blue-400);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(96, 165, 250, 0.35);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 0 16px rgba(96, 165, 250, 0.15);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(2, 6, 23, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 20px 24px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu .nav-link {
  display: block;
  padding: 12px;
}

.mobile-menu .btn-primary {
  margin-top: 8px;
}

/* ── Section Utility ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 100px;
  background: rgba(96, 165, 250, 0.08);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.accent-text {
  background: linear-gradient(135deg, var(--blue-400), var(--violet-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
}

.radial-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center,
      rgba(96, 165, 250, 0.12) 0%,
      rgba(124, 58, 237, 0.06) 40%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cyan-400);
  padding: 7px 18px;
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 100px;
  background: rgba(34, 211, 238, 0.06);
  margin-bottom: 24px;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 8px var(--cyan-400);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 8px var(--cyan-400);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 16px var(--cyan-400), 0 0 32px rgba(34, 211, 238, 0.3);
    transform: scale(1.2);
  }
}

.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 20px;
  color: var(--text-primary);
}

/* "AI Kalvi" neon layered glow */
.glow-title {
  color: var(--blue-400);
  text-shadow:
    0 0 10px rgba(96, 165, 250, 1),
    0 0 24px rgba(96, 165, 250, 0.8),
    0 0 50px rgba(96, 165, 250, 0.5),
    0 0 90px rgba(96, 165, 250, 0.25),
    0 0 160px rgba(96, 165, 250, 0.1);
  animation: neon-flicker 4s ease-in-out infinite;
}

@keyframes neon-flicker {

  0%,
  100% {
    text-shadow:
      0 0 10px rgba(96, 165, 250, 1),
      0 0 24px rgba(96, 165, 250, 0.8),
      0 0 50px rgba(96, 165, 250, 0.5),
      0 0 90px rgba(96, 165, 250, 0.25);
  }

  92% {
    text-shadow:
      0 0 10px rgba(96, 165, 250, 1),
      0 0 24px rgba(96, 165, 250, 0.8),
      0 0 50px rgba(96, 165, 250, 0.5),
      0 0 90px rgba(96, 165, 250, 0.25);
  }

  93% {
    text-shadow:
      0 0 4px rgba(96, 165, 250, 0.4),
      0 0 8px rgba(96, 165, 250, 0.2);
  }

  94% {
    text-shadow:
      0 0 10px rgba(96, 165, 250, 1),
      0 0 24px rgba(96, 165, 250, 0.8),
      0 0 50px rgba(96, 165, 250, 0.5),
      0 0 90px rgba(96, 165, 250, 0.25);
  }

  95% {
    text-shadow:
      0 0 4px rgba(96, 165, 250, 0.4),
      0 0 8px rgba(96, 165, 250, 0.2);
  }

  96% {
    text-shadow:
      0 0 10px rgba(96, 165, 250, 1),
      0 0 24px rgba(96, 165, 250, 0.8),
      0 0 50px rgba(96, 165, 250, 0.5),
      0 0 90px rgba(96, 165, 250, 0.25);
  }
}

.hero-sub {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cyan-400);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}

.stat-suffix {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-400);
  font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-glass);
}

/* ── Hero Visual (Right Column) ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.hero-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: orbit-spin linear infinite;
}

.ring-1 {
  width: 320px;
  height: 320px;
  border-color: rgba(96, 165, 250, 0.15);
  animation-duration: 18s;
}

.ring-2 {
  width: 420px;
  height: 420px;
  border-color: rgba(124, 58, 237, 0.1);
  animation-duration: 28s;
  animation-direction: reverse;
}

.ring-3 {
  width: 520px;
  height: 520px;
  border-color: rgba(34, 211, 238, 0.06);
  animation-duration: 40s;
}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-logo-wrap {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020617;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.25);
  box-shadow:
    0 0 32px rgba(96, 165, 250, 0.15),
    0 0 80px rgba(96, 165, 250, 0.07),
    inset 0 0 40px rgba(96, 165, 250, 0.04);
  animation: hero-logo-float 4s ease-in-out infinite;
  overflow: hidden;
}

@keyframes hero-logo-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-logo-img {
  width: 190px;
  height: 190px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.4) drop-shadow(0 0 24px rgba(96, 165, 250, 0.6)) drop-shadow(0 0 60px rgba(96, 165, 250, 0.3));
  border-radius: 50%;
}

/* Floating mini cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  animation: float-bob 5s ease-in-out infinite;
  z-index: 3;
}

.card-top-right {
  top: 14%;
  right: -2%;
  animation-delay: 0s;
}

.card-bottom-left {
  bottom: 18%;
  left: -4%;
  animation-delay: 1.5s;
}

@keyframes float-bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ── Trust / Ticker ── */
#trust {
  padding: 32px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.01);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.trust-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
  font-weight: 500;
}

.logo-ticker {
  position: relative;
  overflow: hidden;
}

.logo-ticker::before,
.logo-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.logo-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #020617, transparent);
}

.logo-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, #020617, transparent);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 22s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-block;
  padding: 0 40px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.ticker-item:hover {
  color: var(--text-primary);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Features ── */
#features {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

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

.feature-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  transition: var(--transition);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-card);
  padding: 1px;
  background: linear-gradient(135deg, transparent 60%, rgba(34, 211, 238, 0.0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: var(--transition);
  pointer-events: none;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(34, 211, 238, 0.06);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0), transparent);
  transition: var(--transition);
}

.feature-card:hover::after {
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.6), transparent);
}

/* Highlight card */
.feature-card--highlight {
  background: linear-gradient(135deg,
      rgba(96, 165, 250, 0.07) 0%,
      rgba(124, 58, 237, 0.05) 100%);
  border-color: rgba(96, 165, 250, 0.2);
}

.highlight-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan-400);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .card-icon {
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.2);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.1);
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
}

.card-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-400);
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: 0.3px;
}

/* ── How It Works ── */
#how-it-works {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.02) 50%, transparent);
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16.67%;
  right: 16.67%;
  height: 1px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.3), rgba(124, 58, 237, 0.3), rgba(96, 165, 250, 0.3));
  z-index: 0;
}

.step-item {
  position: relative;
  padding: 0 24px;
  text-align: center;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(96, 165, 250, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blue-400);
  font-family: 'Space Grotesk', sans-serif;
  margin: 0 auto 32px;
  box-shadow: 0 0 24px rgba(96, 165, 250, 0.1);
  position: relative;
  z-index: 2;
  background-color: var(--bg-deep);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: 'Space Grotesk', sans-serif;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Testimonials ── */
#testimonials {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

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

.testimonial-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.testimonial-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(96, 165, 250, 0.2);
  transform: translateY(-3px);
}

.stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.test-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.test-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--violet-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.test-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  font-style: normal;
}

.test-role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ── Pricing ── */
#pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.02) 50%, transparent);
  position: relative;
  z-index: 1;
}

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

.pricing-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.25);
}

.pricing-card--featured {
  background: linear-gradient(135deg,
      rgba(96, 165, 250, 0.08) 0%,
      rgba(124, 58, 237, 0.06) 100%);
  border-color: rgba(96, 165, 250, 0.3);
  transform: scale(1.04);
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.15),
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(96, 165, 250, 0.08);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--violet-600));
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(96, 165, 250, 0.3);
}

.pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
}

.pricing-amount>*:nth-child(2) {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}

.price-period {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-left: 2px;
}

.pricing-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--cyan-400));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ── CTA Band ── */
#cta-band {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse,
      rgba(124, 58, 237, 0.12) 0%,
      rgba(96, 165, 250, 0.06) 40%,
      transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Footer ── */
#footer {
  border-top: 1px solid var(--border-glass);
  padding: 64px 24px 0;
  position: relative;
  z-index: 1;
  background: rgba(2, 6, 23, 0.6);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 64px;
  width: 64px;
  object-fit: contain;
  mix-blend-mode: screen;
  margin-bottom: 12px;
  filter: brightness(1.2) contrast(1.5) drop-shadow(0 0 8px rgba(96, 165, 250, 0.4));
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.25);
  color: var(--blue-400);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--blue-400);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-made {
  color: var(--text-dim);
}

/* ── Scroll-reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {

  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    height: 340px;
  }

  .ring-1 {
    width: 240px;
    height: 240px;
  }

  .ring-2 {
    width: 310px;
    height: 310px;
  }

  .ring-3 {
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta-group {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .features-grid,
  .testimonials-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  #features,
  #how-it-works,
  #talk,
  #deeptech,
  #vision,
  #pricing {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

  .hero-logo-wrap {
    width: 150px;
    height: 150px;
  }

  .hero-logo-img {
    width: 120px;
  }
}


/* ══════════════════════════════════════════
   NEW SECTION STYLES — REDESIGN
══════════════════════════════════════════ */

/* ── Hero Badge Chips ── */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--blue-400);
  padding: 5px 14px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 100px;
  background: rgba(96, 165, 250, 0.06);
  transition: var(--transition);
}

.hero-badge-chip:first-child {
  color: var(--cyan-400);
  border-color: rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.06);
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 6px var(--cyan-400);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

/* ── Hero Content (left column) ── */
.hero-content {
  display: flex;
  flex-direction: column;
}

/* ── Architecture Pillars ── */
.hero-pillars {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid var(--border-glass);
  margin-top: 4px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pillar-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── TALK SECTION ── */
#talk {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.02) 50%, transparent);
}

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

.talk-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 460px;
}

.talk-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.talk-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tf-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Chat Mock UI ── */
.chat-mock {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(96, 165, 250, 0.06);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #020617;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.chat-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.2) contrast(1.5);
}

.chat-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
}

.chat-status {
  font-size: 0.72rem;
  color: var(--cyan-400);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 6px var(--cyan-400);
  animation: pulse-dot 2s infinite;
}

.chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 360px;
  overflow: hidden;
}

.msg {
  max-width: 85%;
}

.msg p {
  font-size: 0.83rem;
  line-height: 1.65;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--text-muted);
}

.msg-ai {
  align-self: flex-start;
}

.msg-ai p {
  background: rgba(96, 165, 250, 0.07);
  border: 1px solid rgba(96, 165, 250, 0.12);
  border-radius: 4px 12px 12px 12px;
  color: var(--text-primary);
}

.msg-user {
  align-self: flex-end;
}

.msg-user p {
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 12px 4px 12px 12px;
  color: #c4b5fd;
}

.msg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  color: var(--cyan-400);
  cursor: pointer;
  transition: var(--transition);
}

.chip:hover {
  background: rgba(34, 211, 238, 0.15);
}

.msg-visual-hint {
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(96, 165, 250, 0.1);
  border-radius: 10px;
}

.msg-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(96, 165, 250, 0.05);
  border: 1px solid rgba(96, 165, 250, 0.1);
  border-radius: 4px 12px 12px 12px;
  width: fit-content;
}

.msg-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
  animation: typing-bounce 1.2s infinite;
}

.msg-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.msg-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.chat-input-bar input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: inherit;
  outline: none;
}

.chat-send {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: var(--transition);
}

.chat-send:hover {
  transform: scale(1.06);
  box-shadow: 0 0 16px rgba(96, 165, 250, 0.3);
}

/* ── DEEP-TECH HIGHLIGHTS ── */
#deeptech {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.highlight-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition);
  position: relative;
}

.highlight-item:first-child {
  border-top: 1px solid var(--border-glass);
}

.highlight-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0), transparent);
  transition: var(--transition);
}

.highlight-item:hover::before {
  background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.5), transparent);
}

.highlight-item:hover {
  padding-left: 20px;
}

.hl-number {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: rgba(96, 165, 250, 0.15);
  line-height: 1;
  padding-top: 4px;
  transition: color 0.3s;
}

.highlight-item:hover .hl-number {
  color: rgba(96, 165, 250, 0.4);
}

.hl-body {
  flex: 1;
}

.hl-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 10px;
}

.hl-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
}

.hl-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-400);
  background: rgba(96, 165, 250, 0.06);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 100px;
  padding: 5px 14px;
  white-space: nowrap;
  align-self: center;
}

/* ── VISION SECTION ── */
#vision {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.vision-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.vision-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse,
      rgba(167, 139, 250, 0.08) 0%,
      rgba(96, 165, 250, 0.04) 50%,
      transparent 70%);
  pointer-events: none;
}

.vision-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--violet-400);
  padding: 6px 16px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 100px;
  background: rgba(167, 139, 250, 0.06);
  margin-bottom: 24px;
}

.vision-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  margin-bottom: 28px;
}

.vision-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.vision-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.vp-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.vp-label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-weight: 600;
}

.vp-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
}

.vp-divider {
  width: 1px;
  height: 48px;
  background: var(--border-glass);
  flex-shrink: 0;
}

/* ── Pricing note ── */
.pricing-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ── CTA Badge ── */
.cta-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--violet-400);
  padding: 6px 18px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 100px;
  background: rgba(167, 139, 250, 0.06);
  margin-bottom: 24px;
}

/* ── Responsive: new sections ── */
@media (max-width: 1024px) {
  .talk-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .highlight-item {
    grid-template-columns: 60px 1fr auto;
    gap: 20px;
  }
}

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

  .highlight-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 0 !important;
  }

  .hl-number {
    font-size: 1.4rem;
  }

  .hl-tag {
    align-self: flex-start;
  }

  .vision-pillars {
    flex-direction: column;
    gap: 20px;
  }

  .vp-divider {
    width: 80px;
    height: 1px;
  }

  .hero-pillars {
    gap: 16px;
  }

  .hero-badges {
    gap: 6px;
  }
}


/* ══════════════════════════════════════════
   v2 SIMPLIFIED DESIGN — NEW SECTION STYLES
══════════════════════════════════════════ */

/* ── Hero: Simplified copy ── */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.bullet-check {
  color: var(--cyan-400);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-powered {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.5;
}

/* ── Hero chat wrap ── */
.hero-chat-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-chat {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(96, 165, 250, 0.06),
    0 0 80px rgba(96, 165, 250, 0.05);
}

.hc-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.hc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #020617;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.2);
  flex-shrink: 0;
}

.hc-name {
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.hc-status {
  font-size: 0.7rem;
  color: var(--cyan-400);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.hc-badge-live {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--cyan-400);
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.07);
  border-radius: 4px;
  padding: 2px 7px;
}

.hc-msgs {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hc-msg {
  max-width: 88%;
}

.hc-msg p {
  font-size: 0.82rem;
  line-height: 1.65;
  padding: 10px 13px;
  border-radius: 12px;
  margin: 0;
}

.hc-user {
  align-self: flex-end;
}

.hc-user p {
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 12px 4px 12px 12px;
  color: #c4b5fd;
}

.hc-ai {
  align-self: flex-start;
}

.hc-ai p {
  background: rgba(96, 165, 250, 0.07);
  border: 1px solid rgba(96, 165, 250, 0.12);
  border-radius: 4px 12px 12px 12px;
  color: var(--text-primary);
}

.hc-follow {
  margin-top: -4px;
}

.hc-visual-row {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.hc-vis-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(34, 211, 238, 0.07);
  border: 1px solid rgba(34, 211, 238, 0.18);
  color: var(--cyan-400);
}

.hc-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.hc-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(96, 165, 250, 0.07);
  border: 1px solid rgba(96, 165, 250, 0.18);
  color: var(--blue-400);
  cursor: pointer;
  transition: var(--transition);
}

.hc-chip:hover {
  background: rgba(96, 165, 250, 0.15);
}

.hc-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.hc-input-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 0.81rem;
  color: var(--text-muted);
  font-family: inherit;
  outline: none;
}

.hc-send {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: var(--transition);
}

.hc-send:hover {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(96, 165, 250, 0.35);
}

/* Floating stat chips around chat */
.hc-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.hc-stat-tl {
  top: -20px;
  left: 0;
}

.hc-stat-br {
  bottom: -20px;
  right: 0;
}

/* ── SEPARATOR ── */
#separator {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  text-align: center;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.025) 50%, transparent);
}

.sep-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.sep-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.sep-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.sep-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── HOW IT WORKS simplified ── */
.hiw-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
}

.hiw-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hiw-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-card);
  padding: 1px;
  background: linear-gradient(135deg, transparent 60%, rgba(96, 165, 250, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: var(--transition);
  pointer-events: none;
}

.hiw-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(96, 165, 250, 0.12);
}

.hiw-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.hiw-step {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hiw-title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}

.hiw-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hiw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

/* ── FEATURES v2 ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.feat-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.15);
}

.feat-card--cyan:hover {
  border-color: rgba(34, 211, 238, 0.2);
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.feat-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── DASHBOARD SECTION ── */
#dashboard {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

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

.dash-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Dashboard card mock */
.dash-preview {
  display: flex;
  justify-content: center;
}

.dp-card {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(96, 165, 250, 0.05);
}

.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.dp-title {
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.dp-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.18);
  color: var(--blue-400);
}

.dp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dp-stat {
  text-align: center;
}

.dp-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--blue-400);
  line-height: 1;
  margin-bottom: 4px;
}

.dp-stat-lbl {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 500;
}

.dp-bars {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dp-bar-row {
  display: grid;
  grid-template-columns: 70px 1fr 36px;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.dp-bar-track {
  height: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.dp-bar-fill {
  height: 100%;
  border-radius: 100px;
}

.dp-pct {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: right;
}

.dp-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 211, 238, 0.03);
}

.dp-footer strong {
  color: var(--text-muted);
}

/* ── Pricing v2 tweaks ── */
.pricing-grid.v2 {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ── Responsive v2 ── */
@media (max-width: 1024px) {
  .hiw-grid {
    grid-template-columns: 1fr;
  }

  .hiw-arrow {
    display: none;
  }

  .dash-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

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

  .hiw-arrow {
    display: none;
  }

  .hc-stat {
    display: none;
  }

  .hero-chat {
    max-width: 100%;
  }

  .pricing-grid.v2 {
    grid-template-columns: 1fr;
  }

  .dp-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ══════════════════════════════════════════
   v3 DUAL IDENTITY REDESIGN
══════════════════════════════════════════ */

/* ── Hero v3: Vertical layout ── */
.hero-v3-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 36px) 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-v3-copy {
  text-align: center;
  max-width: 720px;
  /* Subtle radial glow anchoring the headline */
  background: radial-gradient(ellipse 60% 40% at 50% 30%, rgba(96, 165, 250, 0.07) 0%, transparent 70%);
  padding: 0 8px;
  border-radius: 0;
}

/* Tech chips */
.hero-v3-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.v3-chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  background: rgba(96, 165, 250, 0.06);
  color: var(--blue-400);
}

.v3-chip--cyan {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan-400);
  border-color: rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.07);
}

.v3-chip--violet {
  color: var(--violet-400);
  border-color: rgba(167, 139, 250, 0.25);
  background: rgba(167, 139, 250, 0.07);
}

.hero-v3-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 12px;
}

.hero-v3-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 400;
}

.hero-v3-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 22px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-v3-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Hero v3 Chat (large, central) ── */
.hero-v3-chat-wrap {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-v3-chat {
  width: 100%;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(24px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(96, 165, 250, 0.07),
    0 0 120px rgba(96, 165, 250, 0.06);
}

.v3-chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.v3-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #020617;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.2);
  flex-shrink: 0;
}

.v3-chat-name {
  font-size: 0.92rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.v3-chat-status {
  font-size: 0.7rem;
  color: var(--cyan-400);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.v3-live-badge {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--cyan-400);
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.07);
  border-radius: 4px;
  padding: 3px 8px;
}

.v3-chat-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.v3-msg {
  max-width: 80%;
}

.v3-msg--user {
  align-self: flex-end;
}

.v3-msg--user p {
  font-size: 0.88rem;
  line-height: 1.6;
  padding: 11px 16px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 14px 4px 14px 14px;
  color: #c4b5fd;
  margin: 0;
}

.v3-msg--ai {
  align-self: flex-start;
  max-width: 90%;
}

.v3-ai-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin-bottom: 6px;
}

.v3-msg--ai p {
  font-size: 0.88rem;
  line-height: 1.65;
  padding: 11px 16px;
  background: rgba(96, 165, 250, 0.07);
  border: 1px solid rgba(96, 165, 250, 0.12);
  border-radius: 4px 14px 14px 14px;
  color: var(--text-primary);
  margin: 0;
}

.v3-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.v3-ch {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(96, 165, 250, 0.07);
  border: 1px solid rgba(96, 165, 250, 0.18);
  color: var(--blue-400);
  cursor: pointer;
  transition: var(--transition);
}

.v3-ch:hover {
  background: rgba(96, 165, 250, 0.15);
}

.v3-plan-preview {
  margin-top: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v3-plan-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.v3-typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  background: rgba(96, 165, 250, 0.05);
  border: 1px solid rgba(96, 165, 250, 0.1);
  border-radius: 4px 14px 14px 14px;
  width: fit-content;
}

.v3-typing-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
  animation: typing-bounce 1.2s infinite;
}

.v3-typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.v3-typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

.v3-chat-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.v3-chat-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-family: inherit;
  outline: none;
}

.v3-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
  flex-shrink: 0;
}

.v3-send-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 16px rgba(96, 165, 250, 0.4);
}

.v3-chat-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── OFFERS SPLIT SECTION ── */
#offers {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.offers-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 16px;
}

.offer-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.offer-block:hover {
  background: rgba(255, 255, 255, 0.05);
}

.offer-block--blue {
  border-color: rgba(96, 165, 250, 0.12);
}

.offer-block--blue:hover {
  border-color: rgba(96, 165, 250, 0.22);
  box-shadow: 0 0 60px rgba(96, 165, 250, 0.06);
}

.offer-block--cyan {
  border-color: rgba(34, 211, 238, 0.12);
}

.offer-block--cyan:hover {
  border-color: rgba(34, 211, 238, 0.22);
  box-shadow: 0 0 60px rgba(34, 211, 238, 0.06);
}

.offer-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-400);
}

.offer-tag--cyan {
  color: var(--cyan-400);
}

.offer-title {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.offer-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
  border-left: 2px solid rgba(34, 211, 238, 0.3);
  padding-left: 12px;
  line-height: 1.5;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  width: fit-content;
}

/* Divider between blocks */
.offer-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  gap: 12px;
}

.offer-divider-line {
  flex: 1;
  width: 1px;
  background: var(--border-glass);
}

.offer-divider-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

/* ── DIFFERENTIATOR ── */
#differentiator {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.02) 50%, transparent);
}

.diff-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.diff-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 8px;
}

.diff-chat {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.diff-chat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.diff-flow {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.df-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.df-user {
  flex-direction: row-reverse;
}

.df-role {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  padding-bottom: 4px;
}

.df-bubble {
  font-size: 0.84rem;
  line-height: 1.6;
  padding: 10px 14px;
  border-radius: 12px;
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 14px 4px 14px 14px;
  max-width: 80%;
}

.df-bubble--ai {
  color: var(--text-primary);
  background: rgba(96, 165, 250, 0.07);
  border: 1px solid rgba(96, 165, 250, 0.12);
  border-radius: 4px 14px 14px 14px;
}

.df-bubble--highlight {
  background: rgba(34, 211, 238, 0.06);
  border-color: rgba(34, 211, 238, 0.18);
}

.diff-insight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-dim);
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(34, 211, 238, 0.03);
}

/* ── Responsive v3 ── */
@media (max-width: 1024px) {
  .offers-split {
    grid-template-columns: 1fr;
  }

  .offer-divider {
    flex-direction: row;
    padding: 24px 0;
  }

  .offer-divider-line {
    flex: 1;
    width: auto;
    height: 1px;
  }

  .diff-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-v3-inner {
    padding-top: calc(var(--nav-height) + 32px);
  }
}

@media (max-width: 768px) {
  .hero-v3-inner {
    padding: calc(var(--nav-height) + 24px) 20px 60px;
    gap: 32px;
  }

  .hero-v3-headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-v3-chat-wrap {
    max-width: 100%;
  }

  .v3-chat-body {
    padding: 16px;
  }

  .offers-split {
    grid-template-columns: 1fr;
  }

  .offer-block {
    padding: 32px 24px;
  }

  .pricing-grid.v2 {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════
   PREMIUM HERO CHAT — v3 Upgrade
══════════════════════════════════════════ */

/* Strong glassmorphism container */
.hero-v3-chat--premium {
  position: relative;
  background: rgba(8, 15, 36, 0.72);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 24px;
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.55),
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(96, 165, 250, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.4s ease;
}

.hero-v3-chat--premium:hover {
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.55),
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 120px rgba(96, 165, 250, 0.12),
    0 0 200px rgba(124, 58, 237, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Animated inner glow border overlay */
.chat-glow-border {
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(135deg,
      rgba(96, 165, 250, 0.18) 0%,
      rgba(124, 58, 237, 0.12) 50%,
      rgba(34, 211, 238, 0.1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  animation: glow-rotate 6s linear infinite;
}

@keyframes glow-rotate {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

/* Ensure children sit above the glow border */
.hero-v3-chat--premium>*:not(.chat-glow-border) {
  position: relative;
  z-index: 1;
}

/* LIVE badge pulse ring */
.v3-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.live-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 6px var(--cyan-400);
  flex-shrink: 0;
  position: relative;
}

.live-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan-400);
  animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    transform: scale(0.7);
    opacity: 0;
  }
}

/* Message entrance: hidden state */
.chat-msg-hidden {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Message entrance: visible state (toggled by JS) */
.chat-msg-visible {
  opacity: 1;
  transform: translateY(0);
}

/* AI glow pulse when AI message appears */
@keyframes ai-glow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
  }

  30% {
    box-shadow: 0 0 0 8px rgba(96, 165, 250, 0.12);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
  }
}

.v3-msg--ai.chat-msg-visible {
  animation: ai-glow-pulse 0.8s ease-out;
}

/* Highlight message variant */
.v3-msg--highlight .v3-msg--ai p,
.v3-msg--ai.v3-msg--highlight p {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.07), rgba(96, 165, 250, 0.07));
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 4px 14px 14px 14px;
  color: var(--text-primary);
}

.v3-msg--highlight.v3-msg--ai p {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.07), rgba(96, 165, 250, 0.07));
  border: 1px solid rgba(34, 211, 238, 0.22);
}

/* Ask list inside AI bubble */
.v3-ask-list {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.v3-ask-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.ask-dot {
  color: var(--cyan-400);
  font-weight: 700;
  flex-shrink: 0;
}

.ask-hint {
  font-size: 0.76rem;
  color: var(--text-dim);
}


/* ══════════════════════════════════════════
   PREMIUM OFFERS SECTION UPGRADE
══════════════════════════════════════════ */

/* Deeper glassmorphism on cards */
.offer-block {
  background: rgba(15, 25, 60, 0.55) !important;
  backdrop-filter: blur(14px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
  position: relative;
  overflow: hidden;
}

/* Stronger hover lift + outer glow */
.offer-block--blue:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(96, 165, 250, 0.35) !important;
  box-shadow:
    0 0 40px rgba(80, 120, 255, 0.22),
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

.offer-block--cyan:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(34, 211, 238, 0.35) !important;
  box-shadow:
    0 0 40px rgba(34, 211, 238, 0.18),
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

/* Ambient radial pulse behind card */
.offer-pulse {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  top: -60px;
  right: -60px;
  pointer-events: none;
  z-index: 0;
  animation: offer-pulse-anim 6s ease-in-out infinite;
}

.offer-pulse--blue {
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
}

.offer-pulse--cyan {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.07) 0%, transparent 70%);
}

@keyframes offer-pulse-anim {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
}

/* Ensure content is above the pulse */
.offer-block>*:not(.offer-pulse) {
  position: relative;
  z-index: 1;
}

/* Gradient keyword on heading */
.offer-grad {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline;
}

.offer-grad--blue {
  background-image: linear-gradient(90deg, #6EA8FF, #9B7CFF);
}

.offer-grad--cyan {
  background-image: linear-gradient(90deg, #22d3ee, #6EA8FF);
}

/* Enhanced heading weight */
.offer-title {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.3px !important;
}

/* Emotional micro-tagline */
.offer-microline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-top: -8px;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

/* Slightly dimmed bullet text */
.offer-list li {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Icon hover micro-animation */
.offer-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.offer-block:hover .offer-icon {
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(96, 165, 250, 0.25) !important;
}

.offer-block--cyan:hover .offer-icon {
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.22) !important;
}

/* Button glow on hover */
.offer-cta--glow-blue:hover {
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  border-color: rgba(96, 165, 250, 0.6) !important;
}

.offer-cta--glow-cyan:hover {
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.35), 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}


/* ══════════════════════════════════════════
   PREMIUM DIFFERENTIATOR SECTION UPGRADE
══════════════════════════════════════════ */

/* Gradient accent line under headline */
.diff-accent-line {
  width: 80px;
  height: 3px;
  border-radius: 100px;
  background: linear-gradient(90deg, #6EA8FF, #9B7CFF);
  box-shadow: 0 0 12px rgba(110, 168, 255, 0.5);
  margin-bottom: 20px;
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left center;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.diff-accent-line.is-visible {
  opacity: 1;
  transform: scaleX(1);
}

/* Italic emphasis in emotional copy */
.diff-desc em {
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

/* Premium chat box glass treatment */
.diff-chat--premium {
  background: rgba(15, 25, 60, 0.62) !important;
  backdrop-filter: blur(16px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
  border: 1px solid rgba(120, 160, 255, 0.25) !important;
  border-radius: 20px !important;
  box-shadow:
    0 0 60px rgba(80, 120, 255, 0.13),
    0 25px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

.diff-chat--premium:hover {
  transform: translateY(-6px) !important;
  box-shadow:
    0 0 80px rgba(80, 120, 255, 0.2),
    0 30px 70px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

/* Label dot animation */
.diff-label-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 6px var(--cyan-400);
  position: relative;
  flex-shrink: 0;
}

.diff-label-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan-400);
  animation: pulse-ring 2s ease-out infinite;
}

/* Staggered message reveal (hidden state) */
.diff-msg-hidden {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.diff-msg-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Typing dots inside diff-chat */
.df-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  background: rgba(96, 165, 250, 0.06);
  border: 1px solid rgba(96, 165, 250, 0.1);
  border-radius: 4px 12px 12px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin: 0 0 4px 0;
  width: fit-content;
}

.df-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-400);
  animation: typing-bounce 1.2s infinite;
}

.df-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.df-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Brighter AI bubble */
.df-bubble--ai {
  background: rgba(96, 165, 250, 0.1) !important;
  border: 1px solid rgba(96, 165, 250, 0.18) !important;
}

/* Glow pulse when AI message appears */
@keyframes diff-ai-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
  }

  35% {
    box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.12);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
  }
}

.df-row.df-ai.diff-msg-visible .df-bubble--ai {
  animation: diff-ai-glow 0.7s ease-out;
}

/* Higher contrast for YOU role tag */
.df-role--user {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 800 !important;
}

/* Reduced opacity on footer insight */
.diff-insight {
  opacity: 0.72 !important;
  font-size: 0.76rem !important;
}

/* Insight bullet (expertise demonstration — not a question) */
.insight-dot {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 1rem;
  font-weight: 400;
}

.v3-insight-list li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.83rem;
}


/* ══════════════════════════════════════════
   HERO INTENSITY UPGRADE — v4
══════════════════════════════════════════ */

/* ── Spacing rhythm tighten ── */
.hero-v3-chips {
  margin-bottom: 24px !important;
}

.hero-headline-wrap {
  margin-bottom: 18px !important;
}

.hero-v3-sub {
  margin-bottom: 16px !important;
}

.hero-v3-desc {
  margin-bottom: 28px !important;
}

/* Remove any residual top padding from headline itself */
.hero-v3-headline {
  margin-bottom: 0 !important;
}

/* ── Headline radial glow pulse behind center ── */
.hero-headline-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.hero-headline-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      rgba(96, 165, 250, 0.12) 0%,
      rgba(124, 58, 237, 0.06) 45%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: headline-glow-pulse 6s ease-in-out infinite;
}

.hero-headline-wrap .hero-v3-headline {
  position: relative;
  z-index: 1;
}

@keyframes headline-glow-pulse {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.95);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.95);
  }
}

/* ── Sharper "With You." glow — less blur, more crisp ── */
.glow-title {
  text-shadow:
    0 0 18px rgba(96, 165, 250, 0.55),
    0 0 40px rgba(96, 165, 250, 0.22) !important;
}

/* ── Headline first line — brighter white ── */
.hero-v3-headline {
  color: rgba(255, 255, 255, 0.98) !important;
}

/* ── Category pill upgrades ── */
.v3-chip {
  cursor: default;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease !important;
}

.v3-chip:hover {
  box-shadow: 0 0 15px rgba(96, 150, 255, 0.4);
  border-color: rgba(96, 165, 250, 0.45) !important;
  background: rgba(96, 165, 250, 0.12) !important;
}

.v3-chip--cyan:hover {
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.35);
  border-color: rgba(34, 211, 238, 0.5) !important;
  background: rgba(34, 211, 238, 0.12) !important;
}

.v3-chip--violet:hover {
  box-shadow: 0 0 15px rgba(167, 139, 250, 0.35);
  border-color: rgba(167, 139, 250, 0.5) !important;
  background: rgba(167, 139, 250, 0.12) !important;
}

/* Active pulse on first (cyan) chip to draw eye */
.v3-chip--cyan {
  animation: chip-active-pulse 3.5s ease-in-out infinite !important;
}

@keyframes chip-active-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
  }
}

/* ── Primary CTA — violet glow on hover ── */
#hero-start:hover,
.btn-primary.btn-lg:hover {
  box-shadow:
    0 0 30px rgba(120, 100, 255, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.35) !important;
  transform: translateY(-2px) !important;
}

/* ── Secondary CTA — brighter border + tinted hover bg ── */
#hero-talk,
.btn-outline.btn-lg {
  border-color: rgba(96, 165, 250, 0.4) !important;
  transition: background 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease, transform 0.25s ease !important;
}

#hero-talk:hover,
.btn-outline.btn-lg:hover {
  background: rgba(96, 165, 250, 0.08) !important;
  border-color: rgba(96, 165, 250, 0.65) !important;
  box-shadow: 0 0 18px rgba(96, 165, 250, 0.2) !important;
  transform: translateY(-2px) !important;
}


/* ══════════════════════════════════════════
   FULL PAGE POLISH — FINAL PASS
══════════════════════════════════════════ */

/* ─── PART 3: Section padding cap + rhythm dividers ─── */

section {
  padding-top: min(var(--section-pad, 90px), 90px) !important;
  padding-bottom: min(var(--section-pad, 90px), 90px) !important;
}

/* Hero keeps its own padding — don't cap it */
#hero {
  padding-top: unset !important;
  padding-bottom: unset !important;
}

/* Subtle 1px divider between sections */
section+section,
section+footer {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

/* Gradient connective fade between sections */
section::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(96, 165, 250, 0.08) 30%,
      rgba(124, 58, 237, 0.06) 70%,
      transparent 100%);
  margin-top: 2px;
  pointer-events: none;
}

/* Hero section: no bottom divider (chat overlaps) */
#hero::after {
  display: none;
}


/* ─── PART 4: CTA band upgrade ─── */

#cta-main:hover {
  box-shadow:
    0 0 30px rgba(120, 100, 255, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.35) !important;
  transform: scale(1.03) translateY(-2px) !important;
  transition: all 0.3s ease !important;
}

#cta-talk:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px) !important;
}


/* ─── PART 5: Footer integration ─── */

footer#footer {
  padding-top: 48px !important;
  position: relative;
}

/* Top gradient fade into footer */
footer#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom,
      rgba(96, 165, 250, 0.04) 0%,
      transparent 100%);
  pointer-events: none;
  z-index: 0;
}

footer#footer>* {
  position: relative;
  z-index: 1;
}

/* Column headings — slightly higher contrast */
.footer-col-title {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
}

/* Legal / bottom text — reduce opacity */
.footer-bottom p {
  opacity: 0.55 !important;
  font-size: 0.78rem !important;
}

.footer-made {
  opacity: 0.5 !important;
}


/* ─── PART 6: Global micro-interaction consistency ─── */

/* Universal hover transition to 0.3s */
a,
button,
.feature-card,
.feat-card,
.pricing-card,
.hiw-card,
.offer-block,
.offer-cta,
.social-link,
.nav-link {
  transition-duration: 0.3s !important;
  transition-timing-function: ease !important;
}

/* Border radius unification */
.pricing-card,
.hiw-card,
.feat-card,
.feature-card {
  border-radius: 20px !important;
}

/* Consistent shadow depth across cards */
.hiw-card:hover,
.feat-card:hover {
  transform: translateY(-5px) !important;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(96, 165, 250, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.pricing-card:hover:not(.pricing-card--featured) {
  transform: translateY(-4px) !important;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(96, 165, 250, 0.07) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* ─── HERO FINAL MICRO-POLISH ───────────────
   Sharpen glow-title: -15% blur (18→15, 40→34)
   Boost secondary subtext to readable 0.72
──────────────────────────────────────────── */
.glow-title {
  text-shadow:
    0 0 15px rgba(96, 165, 250, 0.56),
    0 0 34px rgba(96, 165, 250, 0.20) !important;
}

.hero-v3-desc {
  color: rgba(255, 255, 255, 0.72) !important;
}


/* ══════════════════════════════════════════
   CTA + FOOTER — FINAL POLISH PASS
══════════════════════════════════════════ */

/* ─── PART 1: CTA Section ─── */

/* Gradient fade above CTA — softens hard separation from sections above */
#cta-band {
  padding: 80px 24px !important;
  position: relative;
}

#cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom,
      rgba(4, 8, 26, 0.6) 0%,
      transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Brighter headline — strong closing statement */
.cta-title {
  color: rgba(255, 255, 255, 1) !important;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}

/* ─── PART 2: Secondary CTA button ─── */

#cta-talk {
  border: 1.5px solid rgba(96, 165, 250, 0.45) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  background: rgba(96, 165, 250, 0.04) !important;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.3s ease !important;
}

#cta-band #cta-talk,
#cta-talk.btn-ghost {
  border: 1.5px solid rgba(96, 165, 250, 0.45) !important;
  background: rgba(96, 165, 250, 0.04) !important;
}

#cta-talk:hover {
  border-color: rgba(96, 165, 250, 0.65) !important;
  background: rgba(96, 165, 250, 0.1) !important;
  box-shadow: 0 0 15px rgba(100, 150, 255, 0.35) !important;
  transform: scale(1.02) translateY(-2px) !important;
  color: rgba(255, 255, 255, 1) !important;
}

/* ─── PART 3: Footer transition smoothing ─── */

/* Replace hard border with a soft gradient fade */
section+footer,
footer#footer {
  border-top: none !important;
}

footer#footer {
  padding-top: 34px !important;
  position: relative;
}

footer#footer::before {
  content: '' !important;
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(96, 165, 250, 0.12) 25%,
      rgba(167, 139, 250, 0.08) 75%,
      transparent 100%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* ─── PART 4: Footer typography ─── */

.footer-col-title {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px !important;
}

.footer-bottom p,
.footer-bottom .footer-made {
  opacity: 0.52 !important;
}

/* Footer link hover — clean color shift, no heavy animation */
footer .footer-col a {
  transition: color 0.25s ease !important;
}

footer .footer-col a:hover {
  color: rgba(96, 165, 250, 0.9) !important;
}


/* ══════════════════════════════════════════
   PRICING SECTION — FINAL POLISH
══════════════════════════════════════════ */

/* ─── Clarity tagline ─── */
.pricing-clarity {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.3px;
  margin-top: -8px;
  margin-bottom: 40px;
}

/* ─── Free plan explore subtext ─── */
.pricing-explore {
  font-size: 0.78rem;
  color: rgba(34, 211, 238, 0.7);
  font-style: italic;
  margin-top: -8px;
  margin-bottom: 16px;
}

/* ─── Free plan — slightly brighter, not dim ─── */
#price-free {
  opacity: 1 !important;
}

#price-free .pricing-tier,
#price-free .pricing-features li {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* ─── Scholar (featured) card — stronger presence ─── */
.pricing-card--featured {
  border-color: rgba(96, 165, 250, 0.45) !important;
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.2),
    0 0 40px rgba(100, 120, 255, 0.25),
    0 28px 70px rgba(0, 0, 0, 0.45) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-8px) !important;
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.3),
    0 0 60px rgba(100, 120, 255, 0.32),
    0 32px 80px rgba(0, 0, 0, 0.5) !important;
}

/* ─── BEST VALUE badge — brighter ─── */
.pricing-badge {
  background: linear-gradient(135deg, #60a5fa, #7c3aed) !important;
  box-shadow:
    0 4px 16px rgba(96, 165, 250, 0.45),
    0 0 20px rgba(124, 58, 237, 0.25) !important;
  letter-spacing: 1.2px !important;
}

/* ─── Price typography — dominant ─── */
.pricing-amount>*:nth-child(2) {
  font-weight: 900 !important;
  font-size: 3rem !important;
  line-height: 1 !important;
}

.price-currency {
  font-weight: 800 !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
  align-self: flex-end !important;
  padding-bottom: 4px !important;
}


/* ══════════════════════════════════════════
   PRICING → CTA TRANSITION — REFINEMENT
══════════════════════════════════════════ */

/* ─── PART 1: Tighten pricing bottom spacing ─── */
#pricing {
  padding-bottom: 60px !important;
}

/* ─── PART 2: Tighten Scholar card glow (−20% blur) ─── */
.pricing-card--featured {
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.2),
    0 0 32px rgba(100, 120, 255, 0.25),
    0 24px 56px rgba(0, 0, 0, 0.42) !important;
}

.pricing-card--featured:hover {
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.3),
    0 0 48px rgba(100, 120, 255, 0.3),
    0 28px 64px rgba(0, 0, 0, 0.48) !important;
}

/* Scholar CTA button — hover scale micro-interaction */
#price-pro-cta {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

#price-pro-cta:hover {
  transform: scale(1.03) !important;
  box-shadow: 0 0 22px rgba(120, 100, 255, 0.4) !important;
}

/* ─── PART 3: Remove hard border between pricing and CTA ─── */
#pricing+#cta-band {
  border-top: none !important;
}

/* Replace hard line with soft top gradient inside CTA */
#cta-band::before {
  background: linear-gradient(to bottom,
      rgba(10, 15, 40, 0.75) 0%,
      rgba(10, 15, 40, 0.3) 40%,
      transparent 100%) !important;
  height: 100px !important;
}


/* ══════════════════════════════════════════
   ICON ACCENT DIVERSITY SYSTEM
   Cool-tone family only: violet · blue · cyan · mint
══════════════════════════════════════════ */

/* ── Base transition for all icon containers ── */
.hiw-icon,
.feat-icon,
.offer-icon {
  transition: box-shadow 0.3s ease, transform 0.3s ease !important;
}

/* ════════════════════════════════
   HOW IT WORKS — icon accents
════════════════════════════════ */

/* 01 — Ask Anything → cyan (AI conversation) */
#hiw-1 .hiw-icon {
  background: linear-gradient(135deg,
      rgba(34, 211, 238, 0.10) 0%,
      rgba(34, 211, 238, 0.04) 100%) !important;
  border-color: rgba(34, 211, 238, 0.2) !important;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.12);
}

/* 02 — Learn with Structure → blue-violet (knowledge/structure) */
#hiw-2 .hiw-icon {
  background: linear-gradient(135deg,
      rgba(96, 165, 250, 0.10) 0%,
      rgba(124, 58, 237, 0.06) 100%) !important;
  border-color: rgba(96, 165, 250, 0.22) !important;
  box-shadow: 0 0 16px rgba(96, 165, 250, 0.12);
}

/* 03 — Grow Consistently → violet (progress/growth) */
#hiw-3 .hiw-icon {
  background: linear-gradient(135deg,
      rgba(167, 139, 250, 0.10) 0%,
      rgba(124, 58, 237, 0.05) 100%) !important;
  border-color: rgba(167, 139, 250, 0.22) !important;
  box-shadow: 0 0 16px rgba(167, 139, 250, 0.12);
}

/* HIW card hover — icon glow intensifies */
#hiw-1:hover .hiw-icon {
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.22) !important;
}

#hiw-2:hover .hiw-icon {
  box-shadow: 0 0 24px rgba(96, 165, 250, 0.22) !important;
}

#hiw-3:hover .hiw-icon {
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.22) !important;
}

/* ════════════════════════════════
   FEATURES — icon accents
════════════════════════════════ */

/* feat-1 — Emotion-Aware AI → violet */
#feat-1 .feat-icon {
  background: linear-gradient(135deg,
      rgba(167, 139, 250, 0.10) 0%,
      rgba(124, 58, 237, 0.05) 100%) !important;
  border-color: rgba(167, 139, 250, 0.22) !important;
  box-shadow: 0 0 14px rgba(167, 139, 250, 0.14);
}

/* feat-2 — LLM-Powered Intelligence → cyan */
#feat-2 .feat-icon {
  background: linear-gradient(135deg,
      rgba(34, 211, 238, 0.10) 0%,
      rgba(6, 182, 212, 0.04) 100%) !important;
  border-color: rgba(34, 211, 238, 0.2) !important;
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.14);
}

/* feat-3 — Adaptive Learning Engine → blue */
#feat-3 .feat-icon {
  background: linear-gradient(135deg,
      rgba(96, 165, 250, 0.10) 0%,
      rgba(59, 130, 246, 0.04) 100%) !important;
  border-color: rgba(96, 165, 250, 0.22) !important;
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.14);
}

/* feat-4 — Personal Knowledge Mapping → mint/teal */
#feat-4 .feat-icon {
  background: linear-gradient(135deg,
      rgba(52, 211, 153, 0.09) 0%,
      rgba(16, 185, 129, 0.04) 100%) !important;
  border-color: rgba(52, 211, 153, 0.2) !important;
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.12);
}

/* Feature card hover — icon glow intensifies */
#feat-1:hover .feat-icon {
  box-shadow: 0 0 22px rgba(167, 139, 250, 0.22) !important;
}

#feat-2:hover .feat-icon {
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.22) !important;
}

#feat-3:hover .feat-icon {
  box-shadow: 0 0 22px rgba(96, 165, 250, 0.22) !important;
}

#feat-4:hover .feat-icon {
  box-shadow: 0 0 22px rgba(52, 211, 153, 0.20) !important;
}

/* ════════════════════════════════
   OFFERS — icon accents
════════════════════════════════ */

/* Left offer (Structure) → violet */
.offer-block--blue .offer-icon {
  background: linear-gradient(135deg,
      rgba(96, 165, 250, 0.10) 0%,
      rgba(124, 58, 237, 0.07) 100%) !important;
  border-color: rgba(96, 165, 250, 0.22) !important;
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.15);
}

/* Right offer (AI Companion) → cyan */
.offer-block--cyan .offer-icon {
  background: linear-gradient(135deg,
      rgba(34, 211, 238, 0.10) 0%,
      rgba(6, 182, 212, 0.05) 100%) !important;
  border-color: rgba(34, 211, 238, 0.2) !important;
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.14);
}


/* ══════════════════════════════════════════
   HIW STEP ICON EXACT ACCENTS (final values)
   step 1 → cyan · step 2 → violet · step 3 → mint
══════════════════════════════════════════ */

/* Step 1 — Ask Anything → cyan */
#hiw-1 .hiw-icon {
  background: rgba(0, 200, 255, 0.12) !important;
  border-color: rgba(0, 200, 255, 0.22) !important;
  box-shadow:
    0 0 18px rgba(0, 200, 255, 0.25),
    inset 0 1px 0 rgba(0, 200, 255, 0.08) !important;
}

#hiw-1:hover .hiw-icon {
  box-shadow:
    0 0 28px rgba(0, 200, 255, 0.35),
    inset 0 1px 0 rgba(0, 200, 255, 0.1) !important;
}

/* Step 2 — Learn with Structure → soft violet */
#hiw-2 .hiw-icon {
  background: rgba(150, 100, 255, 0.12) !important;
  border-color: rgba(150, 100, 255, 0.22) !important;
  box-shadow:
    0 0 18px rgba(150, 100, 255, 0.25),
    inset 0 1px 0 rgba(150, 100, 255, 0.08) !important;
}

#hiw-2:hover .hiw-icon {
  box-shadow:
    0 0 28px rgba(150, 100, 255, 0.35),
    inset 0 1px 0 rgba(150, 100, 255, 0.1) !important;
}

/* Step 3 — Grow Consistently → mint/teal */
#hiw-3 .hiw-icon {
  background: rgba(0, 255, 170, 0.12) !important;
  border-color: rgba(0, 255, 170, 0.2) !important;
  box-shadow:
    0 0 18px rgba(0, 255, 170, 0.25),
    inset 0 1px 0 rgba(0, 255, 170, 0.07) !important;
}

#hiw-3:hover .hiw-icon {
  box-shadow:
    0 0 28px rgba(0, 255, 170, 0.32),
    inset 0 1px 0 rgba(0, 255, 170, 0.09) !important;
}


/* ══════════════════════════════════════════
   DESIGN ELEVATION + TESTIMONIALS
══════════════════════════════════════════ */

/* ── 1. Richer Gradients + Sharper Glows ── */
.accent-text {
  background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #C084FC 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 0 16px rgba(167, 139, 250, 0.25) !important;
  /* Sharper glow */
}

/* ── 2. Consistent Card Elevation ── */
.hiw-card,
.feat-card,
.pricing-card:not(.pricing-card--featured),
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.hiw-card:hover,
.feat-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 20px rgba(96, 165, 250, 0.08) !important;
}

/* ── 3. Testimonials Section ── */
#testimonials {
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 32px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--border-glass);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testi-quote {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-style: italic;
  font-weight: 300;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(96, 165, 250, 0.2);
}

.testi-info {
  display: flex;
  flex-direction: column;
}

.testi-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.testi-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}


/* ══════════════════════════════════════════
   DESIGN DISCIPLINE — CORRECTIONS
   Glassmorphism selective. Glows layered & subtle.
   Animations: clarity-first, not decorative.
══════════════════════════════════════════ */

/* ── 1. Offer pulse: opacity range halved (was 0.4–1.0) ── */
@keyframes offer-pulse-anim {
  0% {
    opacity: 0.2;
    transform: scale(0.95);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }

  100% {
    opacity: 0.2;
    transform: scale(0.95);
  }
}

/* ── 2. Offer blocks: remove backdrop blur
        Cards sit on solid dark bg — blur wastes
        GPU and adds no visual value here ── */
.offer-block {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* ── 3. Headline glow pulse: tighter scale band
        Removes perceived layout shift on slow machines ── */
@keyframes headline-glow-pulse {
  0% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.98);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.02);
  }

  100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.98);
  }
}

/* ── 4. Chip active pulse: narrower glow ring (was 0→4px) ── */
@keyframes chip-active-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
  }

  50% {
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.14);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
  }
}


/* ══════════════════════════════════════════
   HOW IT WORKS — PREMIUM ICON UPGRADE
══════════════════════════════════════════ */

/* Shared Base Style for 3 Icons */
.hiw-icon {
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  transition: all 0.3s ease !important;
}

.hiw-card:hover .hiw-icon {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* 01 – Ask Anything */
#hiw-1 .hiw-icon {
  box-shadow:
    0 0 8px rgba(0, 229, 255, 0.5),
    0 0 18px rgba(59, 130, 246, 0.4),
    0 0 32px rgba(59, 130, 246, 0.25) !important;
}

/* 02 – Learn with Structure */
#hiw-2 .hiw-icon {
  box-shadow:
    0 0 6px rgba(139, 92, 246, 0.4),
    0 0 14px rgba(167, 139, 250, 0.3),
    0 0 26px rgba(167, 139, 250, 0.2) !important;
}

/* 03 – Grow Consistently */
@keyframes hiw-pulse-growth {
  0% {
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.45), 0 0 18px rgba(52, 211, 153, 0.35), 0 0 30px rgba(52, 211, 153, 0.2);
  }

  50% {
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6), 0 0 24px rgba(52, 211, 153, 0.45), 0 0 38px rgba(52, 211, 153, 0.3);
  }

  100% {
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.45), 0 0 18px rgba(52, 211, 153, 0.35), 0 0 30px rgba(52, 211, 153, 0.2);
  }
}

#hiw-3 .hiw-icon {
  animation: hiw-pulse-growth 7s infinite ease-in-out !important;
}

/* Specific Card Hover override for HIW */
.hiw-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.hiw-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
}


/* ══════════════════════════════════════════
   PRICING REFINE — CONVERSION HIERARCHY
══════════════════════════════════════════ */

/* ── Global Card Base & Hover ── */
.pricing-card {
  transition: all 0.3s ease !important;
}

.pricing-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6) !important;
}

/* ── Price Typography ── */
.pricing-amount>*:nth-child(2) {
  filter: brightness(1.08) !important;
  /* 8% brighter contrast */
}

.price-period {
  opacity: 0.55 !important;
}

.pricing-features li::before {
  background-image: none !important;
  /* using custom colors instead */
}

/* ── 01. Free Plan (Accessible, not dominant) ── */
#price-free {
  filter: brightness(0.95);
  /* 5% dimmer background */
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

#price-free .pricing-features li::before {
  background: rgba(34, 211, 238, 0.15) !important;
  border: 1px solid rgba(34, 211, 238, 0.4) !important;
}

/* ── 02. Scholar Plan (Primary, Conversion MVP) ── */
#price-pro {
  border: 1px solid rgba(139, 92, 246, 0.5) !important;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(139, 92, 246, 0.25) !important;
}

#price-pro:hover {
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(139, 92, 246, 0.35) !important;
}

#price-pro .pricing-badge {
  filter: brightness(1.15) !important;
}

#price-pro-cta {
  box-shadow:
    0 0 12px rgba(139, 92, 246, 0.6),
    0 0 28px rgba(99, 102, 241, 0.4) !important;
}

#price-pro .pricing-features li::before {
  background: rgba(139, 92, 246, 0.15) !important;
  border: 1px solid rgba(139, 92, 246, 0.4) !important;
}

/* ── 03. Institution Plan (Enterprise Stability) ── */
#price-ent {
  border: 1px solid rgba(16, 185, 129, 0.4) !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15) !important;
}

#price-ent:hover {
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(16, 185, 129, 0.25) !important;
}

#price-ent .pricing-features li::before {
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1px solid rgba(16, 185, 129, 0.4) !important;
}


/* ══════════════════════════════════════════
   HERO VISUAL REFINEMENT
══════════════════════════════════════════ */

/* ── 1. Headline Refinement ── */
.hero-v3-headline {
  filter: brightness(1.05) !important;
}

.glow-title {
  text-shadow:
    0 0 12px rgba(96, 165, 250, 0.6),
    0 0 28px rgba(59, 130, 246, 0.4),
    0 0 60px rgba(59, 130, 246, 0.2) !important;
}

/* ── 2. Radial Depth Behind Hero ── */
#hero {
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(59, 130, 246, 0.15) 0%,
      rgba(59, 130, 246, 0.05) 30%,
      transparent 65%) !important;
  pointer-events: none;
  z-index: 0;
}

.hero-v3-inner {
  position: relative;
  z-index: 10;
}

/* ── 3. Subtext Hierarchy ── */
.hero-v3-sub {
  opacity: 0.8 !important;
  /* Slight reduction for hierarchy */
  line-height: 1.65 !important;
}

/* ── 4. Primary CTA ── */
#hero-start {
  box-shadow:
    0 0 12px rgba(139, 92, 246, 0.6),
    0 0 28px rgba(99, 102, 241, 0.4),
    0 8px 30px rgba(0, 0, 0, 0.4) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

#hero-start:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 0 18px rgba(139, 92, 246, 0.8),
    0 0 40px rgba(99, 102, 241, 0.5) !important;
}

/* ── 5. Secondary CTA ── */
#hero-talk {
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
}

#hero-talk:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08) !important;
}

/* ── 6. Background Particles ── */
#neural-canvas {
  opacity: 0.6 !important;
  /* Softens overall density/brightness of particles visually */
}


/* ══════════════════════════════════════════
   FINAL CTA REFINEMENT
══════════════════════════════════════════ */

/* ── 1. Section Depth Enhancement ── */
#cta-band .cta-glow {
  background: radial-gradient(circle at center,
      rgba(139, 92, 246, 0.18) 0%,
      rgba(59, 130, 246, 0.12) 25%,
      transparent 65%) !important;
}

/* ── 2. Headline Refinement ── */
#cta-band .cta-title {
  filter: brightness(1.08) !important;
  text-shadow:
    0 0 10px rgba(96, 165, 250, 0.5),
    0 0 25px rgba(59, 130, 246, 0.3) !important;
}

/* ── 3. Primary CTA Button Enhancement ── */
#cta-main {
  box-shadow:
    0 0 14px rgba(139, 92, 246, 0.7),
    0 0 32px rgba(99, 102, 241, 0.5),
    0 10px 30px rgba(0, 0, 0, 0.4) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

#cta-main:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 0 20px rgba(139, 92, 246, 0.85),
    0 0 40px rgba(99, 102, 241, 0.6) !important;
}

/* ── 4. Secondary Button Adjustment ── */
#cta-talk {
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
}

#cta-talk:hover {
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08) !important;
}

/* ── 5. Background Particle Control ── */
#cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 40, 0.45);
  /* Effectively dims the particles behind this specific section */
  pointer-events: none;
  z-index: 0;
}

#cta-band .cta-inner {
  position: relative;
  z-index: 10;
}

/* ── 6. Subtle Divider Glow Above Footer ── */
#footer {
  position: relative;
}

#footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(139, 92, 246, 0.4),
      transparent) !important;
}


/* ══════════════════════════════════════════
   HERO SURGICAL POLISH — FINAL
══════════════════════════════════════════ */

/* ── 1. Headline Brightness Balance ── */
.hero-v3-headline {
  filter: brightness(1.09) !important;
  /* +4% boost */
}

/* ── 2. Glow Center Correction ── */
.glow-title {
  text-shadow:
    0 0 10px rgba(96, 165, 250, 0.55),
    0 0 25px rgba(59, 130, 246, 0.35),
    0 0 50px rgba(59, 130, 246, 0.18) !important;
}

/* ── 3. Vertical Spacing Adjustment (+6px, +4px, +8px) ── */
.hero-headline-wrap {
  margin-bottom: 24px !important;
  /* was 18px */
}

.hero-v3-sub {
  margin-bottom: 20px !important;
  /* was 16px */
}

.hero-v3-desc {
  margin-bottom: 36px !important;
  /* was 28px */
}

/* ── 4. CTA Button Glow Refinement ── */
#hero-start {
  box-shadow:
    0 0 10px rgba(139, 92, 246, 0.6),
    0 0 24px rgba(99, 102, 241, 0.4),
    0 8px 25px rgba(0, 0, 0, 0.35) !important;
}

#hero-start:hover {
  transform: translateY(-2px) !important;
  /* Reduced movement */
}

/* ── 5. Secondary Button Subtle Elevation ── */
#hero-talk:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}

/* ── 6. Background Particle Refinement ── */
#neural-canvas {
  opacity: 0.52 !important;
  /* Reduced from 0.6 */
}


/* ══════════════════════════════════════════
   HERO TRUST STRIP
══════════════════════════════════════════ */

.hero-trust-strip {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
  /* Merges naturally into the next section */
  border-radius: 16px 16px 0 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 24px;
  text-align: center;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.trust-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-metric-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.trust-highlight-cyan {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.4);
}

.trust-highlight-violet {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(167, 139, 250, 0.4);
}

/* Ensure the hero section naturally pads around the absolute strip on mobile */
@media (max-width: 768px) {
  .hero-trust-strip {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    border-radius: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin: 40px auto 0;
    width: calc(100% - 48px);
  }
}