/* ============================================================
   VOLERYO — Bioluminescent Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Molgan';
  src: url('../assets/MolganRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Brand Palette — Bioluminescent */
  --bg-base:       #040E1C;
  --bg-surface:    #071626;
  --bg-card:       rgba(0, 255, 209, 0.04);
  --bg-card-hover: rgba(0, 255, 209, 0.08);

  --teal-400:  #00FFD1;
  --teal-500:  #00D4AE;
  --teal-600:  #00A888;
  --lime-400:  #A8FF3E;
  --lime-500:  #8AE032;
  --navy-800:  #0A1E35;
  --navy-700:  #0D2645;
  --navy-600:  #112E52;

  --text-primary:   #F0FAF8;
  --text-secondary: #8BB8B0;
  --text-muted:     #4A7A72;

  /* Typography */
  --font-display: 'Molgan', 'Manrope', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  /* Fluid type */
  --text-hero:  clamp(2.8rem, 7vw, 5.5rem);
  --text-h2:    clamp(1.8rem, 4vw, 3rem);
  --text-h3:    clamp(1.25rem, 2.5vw, 1.75rem);
  --text-body:  clamp(1rem, 1.2vw, 1.125rem);
  --text-sm:    0.875rem;
  --text-xs:    0.75rem;

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container:   1200px;
  --gutter:      clamp(1rem, 5vw, 2.5rem);

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  /* Shadows / Glows */
  --glow-teal:  0 0 40px rgba(0, 255, 209, 0.15), 0 0 80px rgba(0, 255, 209, 0.07);
  --glow-lime:  0 0 40px rgba(168, 255, 62, 0.12);
  --shadow-card: 0 1px 0 rgba(0,255,209,0.08) inset, 0 8px 32px rgba(0,0,0,0.4);

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.64, 0, 0.78, 0);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Section base ── */
.section {
  padding-block: var(--section-pad);
  position: relative;
}

/* ── Label chip ── */
.label-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-400);
  background: rgba(0, 255, 209, 0.08);
  border: 1px solid rgba(0, 255, 209, 0.2);
  border-radius: var(--radius-xl);
  padding: 5px 14px;
  margin-bottom: 1.5rem;
}
.label-chip::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal-400);
}

/* ── Section heading ── */
.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
  max-width: 22ch;
  color: var(--text-primary);
}
.section-heading .accent {
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--lime-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtext {
  font-size: var(--text-body);
  color: var(--text-secondary);
  max-width: 52ch;
  margin-top: 1rem;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms var(--ease-out);
  white-space: nowrap;
  user-select: none;
  font-size: 0.9375rem;
}
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--md { padding: 10px 22px; }

.btn--primary {
  background: var(--teal-400);
  color: var(--bg-base);
  box-shadow: 0 0 20px rgba(0,255,209,0.3), 0 2px 8px rgba(0,0,0,0.3);
}
.btn--primary:hover {
  background: var(--lime-400);
  box-shadow: 0 0 28px rgba(168,255,62,0.35), 0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  border-color: rgba(0,255,209,0.25);
  color: var(--teal-400);
}
.btn--ghost:hover {
  background: rgba(0,255,209,0.07);
  border-color: rgba(0,255,209,0.5);
  transform: translateY(-1px);
}

/* ── Glass card ── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0, 255, 209, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: background 250ms var(--ease-out), border-color 250ms var(--ease-out), transform 250ms var(--ease-out);
}
.glass-card.pricing-card--featured {
  overflow: visible;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,255,209,0.35) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0,255,209,0.22);
  transform: translateY(-3px);
}

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 80ms; }
[data-reveal][data-delay="2"] { transition-delay: 160ms; }
[data-reveal][data-delay="3"] { transition-delay: 240ms; }
[data-reveal][data-delay="4"] { transition-delay: 320ms; }
[data-reveal][data-delay="5"] { transition-delay: 400ms; }
[data-reveal][data-delay="6"] { transition-delay: 480ms; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 18px;
  transition: background 300ms var(--ease-out), border-color 300ms var(--ease-out), padding 300ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(4, 14, 28, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-color: rgba(0, 255, 209, 0.08);
  padding-block: 12px;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar__logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--teal-400), var(--lime-400));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(0,255,209,0.4);
}
.navbar__logo-mark svg { width: 18px; height: 18px; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.navbar__links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color 150ms;
}
.navbar__links a:hover { color: var(--teal-400); }

.navbar__cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 250ms var(--ease-out);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--section-pad) + 80px);
  padding-bottom: var(--section-pad);
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

/* Mesh glow background */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse 70% 60% at 50% 30%,
    rgba(0, 255, 209, 0.18) 0%,
    rgba(0, 100, 80, 0.08) 50%,
    transparent 75%);
  filter: blur(1px);
}
.hero__bg::after {
  content: '';
  position: absolute;
  top: 30%;
  right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(168, 255, 62, 0.10) 0%,
    transparent 65%);
}

/* Grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,209,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,209,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__text {}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 1.5rem;
  padding: 6px 14px 6px 8px;
  border: 1px solid rgba(0,255,209,0.2);
  border-radius: var(--radius-xl);
  background: rgba(0,255,209,0.06);
  width: fit-content;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--teal-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal-400);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--teal-400); }
  50% { opacity: 0.6; box-shadow: 0 0 20px var(--teal-400), 0 0 30px rgba(0,255,209,0.4); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
  margin-bottom: 1.5rem;
}
.hero__headline .line-accent {
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--lime-400) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 3rem;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__avatars {
  display: flex;
}
.hero__avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-400);
  margin-left: -10px;
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__proof-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.hero__proof-text strong { color: var(--teal-400); font-weight: 600; }

/* Hero visual — dashboard mockup */
.hero__visual {
  position: relative;
}
.hero__dashboard {
  background: rgba(7, 22, 38, 0.8);
  border: 1px solid rgba(0,255,209,0.15);
  border-radius: 20px;
  padding: 24px 24px 36px;
  box-shadow: 0 0 60px rgba(0,255,209,0.1), 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.hero__dashboard::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,209,0.5), transparent);
}
.dashboard__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,255,209,0.08);
}
.dashboard__dots { display: flex; gap: 6px; }
.dashboard__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dashboard__dots span:nth-child(1) { background: #FF5F57; }
.dashboard__dots span:nth-child(2) { background: #FFBD2E; }
.dashboard__dots span:nth-child(3) { background: #28C840; }
.dashboard__title {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  margin-left: auto;
}

.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.dash-stat {
  background: rgba(0,255,209,0.05);
  border: 1px solid rgba(0,255,209,0.08);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.dash-stat__val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal-400);
  line-height: 1;
  margin-bottom: 4px;
}
.dash-stat__label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.dashboard__agents {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.agent-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
}
.agent-row__icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  color: var(--teal-400);
}
.agent-row__icon svg { width: 13px; height: 13px; stroke: currentColor; }
.agent-row__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  flex: 1;
}
.agent-row__status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.agent-row__status.active { color: var(--teal-400); }
.agent-row__status.active::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--teal-400);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--teal-400);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.agent-row__status.idle { color: var(--text-muted); }
.agent-row__status.idle::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--text-muted);
  border-radius: 50%;
}
.agent-row__bar { width: 60px; height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.agent-row__bar-fill { height: 100%; background: linear-gradient(90deg, var(--teal-400), var(--lime-400)); border-radius: 2px; }

/* floating badge */
.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: rgba(4,14,28,0.9);
  border: 1px solid rgba(0,255,209,0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), var(--glow-teal);
  font-size: var(--text-sm);
  font-weight: 600;
}
.hero__badge-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: var(--teal-400); flex-shrink: 0; }
.hero__badge-icon svg { width: 14px; height: 14px; fill: currentColor; }
.hero__badge-val { color: var(--teal-400); font-family: var(--font-display); font-size: 1.1rem; }
.hero__badge-label { color: var(--text-muted); font-size: 11px; }

/* ============================================================
   MARQUEE — Trusted by
   ============================================================ */
.marquee-section {
  padding-block: 3rem;
  border-top: 1px solid rgba(0,255,209,0.06);
  border-bottom: 1px solid rgba(0,255,209,0.06);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(176,200,196,0.5);
  white-space: nowrap;
  transition: color 200ms;
}
.marquee-item:hover { color: var(--teal-400); }
.marquee-item svg { opacity: 0.5; }
.marquee-item:hover svg { opacity: 1; }
.marquee-item img { width: 20px; height: 20px; object-fit: contain; opacity: 0.7; flex-shrink: 0; }
.marquee-item:hover img { opacity: 1; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,255,209,0.08);
  border: 1px solid rgba(0,255,209,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--bg-base);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 200ms;
}
.stat-item:hover { background: rgba(0,255,209,0.03); }
.stat-item__val {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--lime-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   FEATURES — 7 Agents
   ============================================================ */
.features-section {}

.features-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.features-header .section-heading { max-width: unset; }
.features-header .section-subtext { margin-inline: auto; }

.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.agent-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}

.agent-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
  color: var(--teal-400);
}
.agent-card__icon svg { width: 20px; height: 20px; stroke: currentColor; }
.agent-card.lime .agent-card__icon { color: var(--lime-400); }
.agent-card.blue .agent-card__icon { color: #60A5FA; }
.agent-card.violet .agent-card__icon { color: #A78BFA; }
.agent-card.amber .agent-card__icon { color: #FBBF24; }
.agent-card.rose .agent-card__icon { color: #FB7185; }
.agent-card.cyan .agent-card__icon { color: #22D3EE; }
.agent-card__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.15;
}

.agent-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.agent-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
}
.agent-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0,255,209,0.08);
  border: 1px solid rgba(0,255,209,0.15);
  color: var(--teal-400);
  width: fit-content;
  margin-top: auto;
}
.agent-card__tag.lime {
  background: rgba(168,255,62,0.08);
  border-color: rgba(168,255,62,0.18);
  color: var(--lime-400);
}

/* Accent border colors per agent */
.agent-card.teal  { border-color: rgba(0,255,209,0.18); }
.agent-card.lime  { border-color: rgba(168,255,62,0.18); }
.agent-card.blue  { border-color: rgba(96,165,250,0.18); }
.agent-card.violet { border-color: rgba(167,139,250,0.18); }
.agent-card.amber { border-color: rgba(251,191,36,0.18); }
.agent-card.rose  { border-color: rgba(251,113,133,0.18); }
.agent-card.cyan  { border-color: rgba(34,211,238,0.18); }

.agent-icon-bg--teal   { background: rgba(0,255,209,0.1); }
.agent-icon-bg--lime   { background: rgba(168,255,62,0.1); }
.agent-icon-bg--blue   { background: rgba(96,165,250,0.1); }
.agent-icon-bg--violet { background: rgba(167,139,250,0.1); }
.agent-icon-bg--amber  { background: rgba(251,191,36,0.1); }
.agent-icon-bg--rose   { background: rgba(251,113,133,0.1); }
.agent-icon-bg--cyan   { background: rgba(34,211,238,0.1); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  background: var(--bg-surface);
}
.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 4rem;
}
.steps-track::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal-400), var(--lime-400));
  opacity: 0.25;
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 32px 20px 28px;
  position: relative;
  z-index: 1;
}
.step-card__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 2px solid rgba(0,255,209,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-400);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: border-color 250ms, box-shadow 250ms;
}
.step-card:hover .step-card__num {
  border-color: var(--teal-400);
  box-shadow: 0 0 20px rgba(0,255,209,0.3);
}
.step-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.step-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   SECURITY & TRUST
   ============================================================ */
.security-section {
  background: var(--bg-surface);
}

.security-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.security-copy .section-heading { max-width: 20ch; }

.security-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.security-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 250ms var(--ease-out), border-color 250ms var(--ease-out), transform 250ms var(--ease-out);
}

.security-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,255,209,0.08);
  border: 1px solid rgba(0,255,209,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  flex-shrink: 0;
  margin-bottom: 4px;
}
.security-card__icon svg { stroke: currentColor; }

.security-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.security-card__desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Trust bar */
.security-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(0,255,209,0.03);
  border: 1px solid rgba(0,255,209,0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  flex-wrap: wrap;
  row-gap: 1.5rem;
}

.security-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-inline: 2.5rem;
  flex: 1;
  min-width: 120px;
}

.security-trust-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-400);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.security-trust-label {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.security-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,255,209,0.1);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .security-layout { grid-template-columns: 1fr; gap: 3rem; }
  .security-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .security-pillars { grid-template-columns: 1fr; }
  .security-trust-divider { display: none; }
  .security-trust-item { padding-inline: 1rem; }
}

/* ============================================================
   INTEGRATIONS
   ============================================================ */
.integrations-section {}
.integrations-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}
.integrations-copy .section-heading { max-width: 18ch; }

.integration-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,255,209,0.08);
}
.integration-stat__val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-400);
  letter-spacing: -0.02em;
}
.integration-stat__label { font-size: var(--text-sm); color: var(--text-muted); }

.integrations-visual { position: relative; }

.orbital-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
}

.orbital-grid::before {
  content: 'V';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(0,255,209,0.06);
  pointer-events: none;
  z-index: 0;
}

.integration-chip {
  background: rgba(0,255,209,0.04);
  border: 1px solid rgba(0,255,209,0.1);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 200ms var(--ease-out);
  cursor: default;
  position: relative;
  z-index: 1;
}
.integration-chip:hover {
  background: rgba(0,255,209,0.09);
  border-color: rgba(0,255,209,0.25);
  color: var(--text-primary);
  transform: translateY(-2px);
}
.integration-chip__icon {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.integration-chip__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  filter: none;
  transition: filter 200ms;
}
.integration-chip:hover .integration-chip__icon img {
  filter: brightness(1.1) drop-shadow(0 0 4px rgba(0,255,209,0.3));
}
/* Notion is black — invert to white on dark bg */
.integration-chip__icon img[alt="Notion"] {
  filter: invert(1) brightness(0.9);
}
.integration-chip:hover .integration-chip__icon img[alt="Notion"] {
  filter: invert(1) brightness(1.1) drop-shadow(0 0 4px rgba(0,255,209,0.3));
}
/* Klaviyo is also dark charcoal — lighten */
.integration-chip__icon img[alt="Klaviyo"] {
  filter: brightness(0) invert(1) opacity(0.8);
}
.integration-chip:hover .integration-chip__icon img[alt="Klaviyo"] {
  filter: brightness(0) invert(1) opacity(1) drop-shadow(0 0 4px rgba(0,255,209,0.3));
}
/* Apollo is also dark */
.integration-chip__icon img[alt="Apollo"] {
  filter: brightness(0) invert(1) opacity(0.8);
}
.integration-chip:hover .integration-chip__icon img[alt="Apollo"] {
  filter: brightness(0) invert(1) opacity(1) drop-shadow(0 0 4px rgba(0,255,209,0.3));
}
/* Amazon: invert so black 'a' becomes white; orange arrow inverts to blue—then hue-rotate back to warm */
.integration-chip__icon img[alt="Amazon"] {
  filter: invert(1) brightness(0.95);
}
.integration-chip:hover .integration-chip__icon img[alt="Amazon"] {
  filter: invert(1) brightness(1.05) drop-shadow(0 0 4px rgba(0,255,209,0.3));
}
/* +More chip */
.integration-chip--more {
  cursor: default;
}
.integration-chip__plus {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-400);
  line-height: 1;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { overflow: hidden; }

.testimonials-header {
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.testimonials-header .section-heading { max-width: unset; }
.testimonials-header .section-subtext { margin-inline: auto; }

.marquee-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 1rem;
}
.marquee-row {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-row.reverse { animation-direction: reverse; animation-duration: 35s; }
.marquee-row:hover { animation-play-state: paused; }

.tcard {
  width: 320px;
  flex-shrink: 0;
  padding: 24px;
}
.tcard__quote {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  border: 1px solid rgba(0,255,209,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-400);
  flex-shrink: 0;
}
.tcard__name { font-size: var(--text-sm); font-weight: 700; color: var(--text-primary); }
.tcard__role { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: var(--bg-surface); }

.pricing-header {
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.pricing-header .section-heading { max-width: unset; }

.pricing-toggle { display: none; }
.pricing-toggle--hidden {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 3rem;
}
.pricing-toggle label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}
.pricing-toggle label.active { color: var(--text-primary); }

.toggle-switch {
  width: 48px; height: 26px;
  background: rgba(0,255,209,0.15);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(0,255,209,0.2);
  transition: background 200ms;
}
.toggle-switch.on { background: rgba(0,255,209,0.3); }
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--teal-400);
  border-radius: 50%;
  transition: transform 200ms var(--ease-out);
  box-shadow: 0 0 8px rgba(0,255,209,0.5);
}
.toggle-switch.on::after { transform: translateX(22px); }

.save-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: rgba(168,255,62,0.1);
  border: 1px solid rgba(168,255,62,0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--lime-400);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-inline: auto;
}

.pricing-card {
  padding: 32px 28px;
  position: relative;
}
.pricing-card--featured {
  border-color: rgba(0,255,209,0.3);
  box-shadow: var(--glow-teal), var(--shadow-card);
  overflow: visible;
  padding-top: 44px;
}
.pricing-card--featured::after {
  content: 'Recommended';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--teal-400), var(--lime-400));
  color: var(--bg-base);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 2;
}

.pricing-card__tier {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 0.5rem;
}
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.pricing-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2rem;
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}
.pricing-card__period {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '✓';
  color: var(--teal-400);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card__cta-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 1rem;
}
.faq-copy .section-heading { font-size: var(--text-h2); max-width: 16ch; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.faq-item {
  border-top: 1px solid rgba(0,255,209,0.07);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: 1px solid rgba(0,255,209,0.07); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: color 150ms;
}
.faq-question:hover { color: var(--teal-400); }
.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,255,209,0.08);
  border: 1px solid rgba(0,255,209,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-400);
  font-size: 14px;
  font-weight: 700;
  transition: transform 250ms var(--ease-out), background 200ms;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(0,255,209,0.15);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease-out);
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--bg-surface);
  border-top: 1px solid rgba(0,255,209,0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(0,255,209,0.12) 0%,
    transparent 65%);
  pointer-events: none;
}

.cta-banner__content { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.cta-banner__availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 1.5rem;
}
.cta-banner__availability::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal-400);
  animation: pulse-dot 2s ease-in-out infinite;
}

.cta-banner__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.cta-banner__sub {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta-banner__form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin-inline: auto;
}
.cta-banner__input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,255,209,0.18);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color 200ms, box-shadow 200ms;
}
.cta-banner__input:focus {
  border-color: rgba(0,255,209,0.4);
  box-shadow: 0 0 0 3px rgba(0,255,209,0.07);
}
.cta-banner__input::placeholder { color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding-block: 4rem 2.5rem;
  border-top: 1px solid rgba(0,255,209,0.07);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand .navbar__logo { margin-bottom: 1rem; pointer-events: none; font-family: 'Manrope', system-ui, sans-serif; font-weight: 800; }
.footer__brand p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28ch;
}
.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 150ms;
}
.footer__links a:hover { color: var(--teal-400); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,255,209,0.06);
}
.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
}
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__socials a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(0,255,209,0.05);
  border: 1px solid rgba(0,255,209,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 200ms;
  text-decoration: none;
}
.footer__socials a:hover {
  background: rgba(0,255,209,0.1);
  border-color: rgba(0,255,209,0.25);
  color: var(--teal-400);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__links, .navbar__cta { display: none; }
  .nav-toggle { display: flex; }
  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(4,14,28,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1.5rem var(--gutter) 1.25rem;
    border-bottom: 1px solid rgba(0,255,209,0.1);
    gap: 0;
    z-index: 999;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }
  .navbar__links.open li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .navbar__links.open li:last-child { border-bottom: none; }
  .navbar__links.open a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #8BB8B0;
    transition: color 0.15s;
  }
  .navbar__links.open a:hover { color: #00FFD1; }
  .navbar__cta.open {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 1rem var(--gutter);
    background: rgba(4,14,28,0.98);
    border-top: 1px solid rgba(0,255,209,0.1);
    flex-direction: column;
    z-index: 999;
  }
  .navbar__cta.open .btn { width: 100%; justify-content: center; }

  .hero__content { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .agents-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr 1fr; }
  .steps-track::before { display: none; }
  .integrations-layout { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner__form { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
