:root {
  /* ── Signature Palette ── */
  --bg: #05050F;
  --bg-alt: #0A0A18;
  --bg-card: rgba(15,15,30,0.7);
  --fg: #FFFFFF;
  --fg-dim: rgba(255,255,255,0.55);
  --fg-dimmer: rgba(255,255,255,0.28);

  /* Brand: signature gradient (blue → magenta → purple) */
  --blue: #3B82F6;
  --magenta: #A855F7;
  --purple: #6366F1;
  --teal: #00E5C9;
  --amber: #F59E0B;
  --green: #10B981;

  /* Dimensional versions */
  --blue-dim: rgba(59,130,246,0.12);
  --blue-border: rgba(59,130,246,0.22);
  --magenta-dim: rgba(168,85,247,0.10);
  --magenta-border: rgba(168,85,247,0.18);
  --teal-dim: rgba(0,229,201,0.10);
  --teal-border: rgba(0,229,201,0.18);
  --amber-dim: rgba(245,158,11,0.10);
  --green-dim: rgba(16,185,129,0.10);
  --green-border: rgba(16,185,129,0.18);

  /* Surface colors */
  --navy-card: #0D0D20;
  --border: rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.12);

  /* Radius system */
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Premium easing curves */
  --ease-text:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-apple:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-decor:   cubic-bezier(0.65, 0, 0.35, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor-ring {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  /* No CSS transition — all cursor ring state changes (hover/click/leave) are
     handled by the RAF/LERP loop in animations.js. CSS transitions on position or
     transform conflict with the RAF loop during animation frames, causing lag. */
  mix-blend-mode: normal;
}
.cursor-ring::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.cursor-ring.hovering {
  width: 48px;
  height: 48px;
  border-color: var(--magenta);
}
.cursor-ring.hovering::after { opacity: 0.3; }
.cursor-ring.clicking {
  width: 20px;
  height: 20px;
  border-color: var(--teal);
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--magenta), var(--purple));
  z-index: 1000;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── NEURAL MESH BACKGROUND ── */
.neural-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  overflow: hidden;
}
.neural-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, backdrop-filter 0.3s, background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(5,5,15,0.82);
  box-shadow: 0 1px 32px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-dimmer);
  font-weight: 400;
  margin-left: 4px;
}
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 13px;
  color: var(--fg-dim);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width 0.28s var(--ease-spring);
}
.nav-link:hover { color: var(--fg); }
.nav-link:hover::after { width: 100%; }
.nav-link.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59,130,246,0.35);
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 140px 32px 96px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  z-index: 2;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_184339/9ff289f3-55b8-4c6f-b36a-790800e42d8b.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* Signature gradient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.orb-1 {
  width: 600px; height: 600px;
  background:
    radial-gradient(circle at 40% 40%, rgba(59,130,246,0.22) 0%, transparent 45%),
    radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  top: -200px; right: -120px;
  filter: blur(80px);
  animation: orbDriftA 28s ease-in-out infinite;
}
.orb-2 {
  width: 440px; height: 440px;
  background:
    radial-gradient(circle at 55% 55%, rgba(168,85,247,0.18) 0%, transparent 45%),
    radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 70%);
  bottom: -80px; left: 40px;
  filter: blur(70px);
  animation: orbDriftB 34s ease-in-out infinite 5s;
}
.orb-3 {
  width: 360px; height: 360px;
  background:
    radial-gradient(circle at 45% 45%, rgba(99,102,241,0.14) 0%, transparent 50%),
    radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
  top: 30%; left: 20%;
  filter: blur(100px);
  animation: orbDriftC 40s ease-in-out infinite 12s;
}
@keyframes orbDriftA {
  0%   { transform: translate(0,0) scale(1); }
  25%  { transform: translate(32px,-20px) scale(1.04); }
  50%  { transform: translate(-20px,16px) scale(0.98); }
  75%  { transform: translate(16px,28px) scale(1.02); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes orbDriftB {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(-36px,28px) scale(1.06); }
  66%  { transform: translate(28px,-16px) scale(0.97); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes orbDriftC {
  0%   { transform: translate(0,0) rotate(0deg) scale(1); }
  25%  { transform: translate(44px,-28px) rotate(90deg) scale(1.03); }
  50%  { transform: translate(-28px,22px) rotate(180deg) scale(0.99); }
  75%  { transform: translate(22px,-16px) rotate(270deg) scale(1.02); }
  100% { transform: translate(0,0) rotate(360deg) scale(1); }
}

/* Floating geo shapes */
.geo-shape {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}
.geo-1 {
  width: 60px; height: 60px;
  border: 1.5px solid rgba(59,130,246,0.3);
  border-radius: 8px;
  top: 15%; right: 6%;
  animation: geoFloat 7s ease-in-out infinite, geoSpin 22s linear infinite;
}
.geo-2 {
  width: 36px; height: 36px;
  background: rgba(168,85,247,0.07);
  border-radius: 50%;
  top: 62%; left: 4%;
  animation: geoFloat 9s ease-in-out infinite 2s;
}
.geo-3 {
  width: 50px; height: 50px;
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 4px;
  bottom: 18%; right: 14%;
  animation: geoFloat 8s ease-in-out infinite 4s, geoRotate 14s linear infinite;
}
.geo-4 {
  width: 26px; height: 26px;
  background: rgba(59,130,246,0.05);
  border-radius: 50%;
  top: 28%; left: 10%;
  animation: geoFloat 6s ease-in-out infinite 1s;
}
@keyframes geoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.14; }
  50% { transform: translateY(-20px) rotate(18deg); opacity: 0.26; }
}
@keyframes geoSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes geoRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hero content */
.hero-content { position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid var(--blue-border);
  border-radius: 100px;
  font-size: 11px;
  color: var(--blue);
  background: var(--blue-dim);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  width: fit-content;
  font-weight: 500;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: badgePulse 2.4s infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.7); }
}

/* Word-by-word hero headline — the signature entrance */
.hero-headline-wrap {
  overflow: hidden;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.hero-headline .word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
}
.hero-headline .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.hero-headline .word.in {
  animation: wordSlideUp 0.75s var(--ease-spring) both;
}
.hero-headline .accent {
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes wordSlideUp {
  0%   { transform: translateY(110%); opacity: 0; }
  55%  { transform: translateY(-6px); opacity: 1; }
  72%  { transform: translateY(3px); }
  88%  { transform: translateY(-1px); }
  100% { transform: translateY(0); opacity: 1; }
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease-text), transform 0.75s var(--ease-text);
  transition-delay: 0.6s;
}
.hero-sub.in { opacity: 1; transform: translateY(0); }

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease-text), transform 0.65s var(--ease-text);
  transition-delay: 0.85s;
}
.hero-cta-row.in { opacity: 1; transform: translateY(0); }

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(59,130,246,0);
  transition: transform 0.18s var(--ease-spring), box-shadow 0.18s, opacity 0.15s;
}
.hero-cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.22) 50%, transparent 80%);
  background-size: 200% 100%;
  background-position: -200% center;
  animation: shimmerSweep 1.5s var(--ease-text) 2s both;
}
@keyframes shimmerSweep {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 16px rgba(59,130,246,0.25), 0 4px 20px rgba(0,0,0,0.2); }
  50%       { box-shadow: 0 0 28px rgba(168,85,247,0.4), 0 8px 32px rgba(0,0,0,0.25); }
}
.hero-cta-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(59,130,246,0.45), 0 0 0 1px rgba(168,85,247,0.3);
}
.hero-cta-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 16px rgba(59,130,246,0.3);
}
.hero-cta-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.15s;
}
.hero-cta-primary.rippling::after { opacity: 1; }

.hero-cta-secondary {
  font-size: 14px;
  color: var(--fg-dimmer);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-cta-secondary:hover { color: var(--fg-dim); }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-text), transform 0.6s var(--ease-text);
  transition-delay: 1.1s;
}
.hero-social-proof.in { opacity: 1; transform: translateY(0); }
.social-proof-avatars { display: flex; flex-direction: row; }
.social-proof-avatars span {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  margin-left: -8px;
}
.social-proof-avatars span:first-child { margin-left: 0; }
.social-proof-text { font-size: 12px; color: var(--fg-dimmer); line-height: 1.4; }
.social-proof-text strong { color: var(--fg-dim); font-weight: 600; }

/* Dashboard mock visual */
.hero-visual { position: relative; }
.dashboard-mock {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.06);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.8s var(--ease-text), transform 0.8s var(--ease-text);
  transition-delay: 1.2s;
}
.dashboard-mock.in { opacity: 1; transform: translateY(0) scale(1); }
.mock-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #FF5F57; }
.mock-dots span:nth-child(2) { background: #FFBD2E; }
.mock-dots span:nth-child(3) { background: #28C840; }
.mock-title { font-size: 12px; color: var(--fg-dim); margin: 0 auto; }
.mock-body { display: grid; grid-template-columns: 120px 1fr; min-height: 300px; }
.mock-sidebar { border-right: 1px solid var(--border); padding: 16px 8px; display: flex; flex-direction: column; gap: 4px; }
.sidebar-item { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 6px; font-size: 11px; color: var(--fg-dim); }
.sidebar-item.active { background: var(--blue-dim); color: var(--blue); border: 1px solid var(--blue-border); }
.s-icon { font-size: 10px; }
.mock-main { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.mock-topic { display: flex; flex-direction: column; gap: 6px; }
.topic-label { font-size: 10px; color: var(--fg-dimmer); text-transform: uppercase; letter-spacing: 0.08em; }
.topic-box {
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  border-radius: 6px; padding: 8px 12px; font-size: 12px;
  color: var(--blue); font-style: italic;
}
.mock-result { display: flex; flex-direction: column; gap: 10px; }
.result-label { font-size: 10px; color: var(--fg-dimmer); text-transform: uppercase; letter-spacing: 0.08em; }
.result-text { display: flex; flex-direction: column; gap: 3px; font-size: 12px; line-height: 1.5; color: var(--fg-dim); }
.dim { color: var(--fg-dimmer); font-size: 11px; }
.result-hashtags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: 10px; padding: 3px 8px; border-radius: 100px;
  background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(245,158,11,0.18);
}
.result-status { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--green); margin-top: 4px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; }
.status-dot.green { background: var(--green); }
.mock-actions { display: flex; gap: 8px; }
.action-chip {
  font-size: 11px; padding: 7px 14px; border-radius: 6px;
  border: 1px solid var(--border); color: var(--fg-dim);
  text-align: center; transition: border-color 0.15s, color 0.15s;
}
.action-chip.approve { background: var(--green-dim); border-color: var(--green-border); color: var(--green); }
.action-chip:hover { border-color: var(--fg-dimmer); color: var(--fg); }

/* Float cards */
.float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  display: flex; flex-direction: column; gap: 2px;
  backdrop-filter: blur(10px);
}
.float-1 {
  bottom: -20px; left: -28px;
  animation: floatUp 3.2s ease-in-out infinite;
}
.float-2 {
  top: 36px; right: -20px;
  animation: floatUp 4.5s ease-in-out infinite 0.6s;
}
.float-icon { font-size: 10px; color: var(--blue); }
.float-icon.green { color: var(--green); }
.float-val {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--fg); line-height: 1;
}
.float-lab { font-size: 10px; color: var(--fg-dim); }
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-text), transform 0.7s var(--ease-text), filter 0.5s var(--ease-text);
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

.section-headline {
  opacity: 0;
  transform: translateX(-24px);
  filter: blur(4px);
  transition: opacity 0.75s var(--ease-text), transform 0.75s var(--ease-text), filter 0.6s var(--ease-text);
}
.section-headline.visible { opacity: 1; transform: translateX(0); filter: blur(0); }
.section-label { opacity: 0; transform: translateY(12px); transition: opacity 0.5s var(--ease-text), transform 0.5s var(--ease-text); }
.section-label.visible { opacity: 1; transform: translateY(0); }

/* ── FEATURES ── */
.features { padding: 100px 32px; }
.features-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 14px; font-weight: 700;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.025em;
  margin-bottom: 56px;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.feature-card {
  background: var(--bg-alt);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
  transition: background 0.2s var(--ease-apple);
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  transition: width 0.38s var(--ease-spring);
  z-index: 2;
}
.feature-card:hover { background: #111628; }
.feature-card:hover::before { width: 100%; }

.feat-icon {
  font-size: 18px;
  background: var(--blue-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  color: var(--blue);
  /* animation starts when card gets .visible (via IntersectionObserver) — see .feature-card.visible .feat-icon */
}
@keyframes iconEntrance {
  0% { opacity: 0; transform: scale(0.5) rotate(-15deg); }
  60% { transform: scale(1.15) rotate(5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
/* Icon fires its entrance when the card gets .visible from IntersectionObserver — single delay = synced */
.feature-card.visible .feat-icon {
  animation: iconEntrance 0.5s var(--ease-spring) 0.1s both;
}
.feat-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.3; }
.feat-body { font-size: 14px; color: var(--fg-dim); line-height: 1.65; }

/* Feature action button — idle float + glow pulse + hover */
.feature-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 8px 16px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: 8px;
  color: var(--blue);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  /* cursor:pointer removed — body: cursor:none handles all, custom ring is pointer-events:none */
  text-decoration: none;
  position: relative;
  overflow: hidden;
  width: fit-content;
  /* idle float + glow pulse — each card uses nth-child delay for offset */
  animation: featBtnFloat 3.4s ease-in-out infinite;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.feature-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: 0 0 0 0 rgba(59,130,246,0);
  transition: box-shadow 0.3s;
}
.feature-btn:hover {
  transform: scale(1.07) translateY(-2px);
  background: rgba(59,130,246,0.18);
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(59,130,246,0.28), 0 0 16px rgba(59,130,246,0.12);
}
.feature-btn:hover::before {
  box-shadow: 0 0 20px rgba(59,130,246,0.35);
}
.feature-btn:active {
  transform: scale(0.97);
}
.feature-card:nth-child(1) .feature-btn { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-btn { animation-delay: 0.6s; }
.feature-card:nth-child(3) .feature-btn { animation-delay: 1.2s; }
.feature-card:nth-child(4) .feature-btn { animation-delay: 0.3s; }
.feature-card:nth-child(5) .feature-btn { animation-delay: 0.9s; }
.feature-card:nth-child(6) .feature-btn { animation-delay: 1.5s; }
@keyframes featBtnFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(59,130,246,0); }
  50%       { transform: translateY(-4px); box-shadow: 0 0 14px rgba(59,130,246,0.18); }
}
/* Scroll entrance for feature buttons — staggered with card reveal */
.feature-btn {
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.5s var(--ease-spring), transform 0.5s var(--ease-spring);
}
.feature-card.visible .feature-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.35s;
}
/* Reduced motion: disable float animation, keep hover only */
@media (prefers-reduced-motion: reduce) {
  .feature-btn { animation: none; }
  .feature-card.visible .feature-btn { transition-delay: 0.05s; }
}

/* 3D card tilt */
.feature-card, .pricing-card, .testimonial-card {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.3s var(--ease-apple), border-color 0.25s;
}
.feature-card:hover {
  transform: perspective(1000px) rotateX(-1.5deg) rotateY(1.5deg) translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(59,130,246,0.08);
}
.pricing-card:hover {
  transform: perspective(1000px) rotateX(-0.5deg) rotateY(0.5deg) translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.testimonial-card:hover {
  transform: perspective(1000px) rotateX(-0.5deg) rotateY(0.5deg) translateY(-5px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.3);
}

/* ── HOW IT WORKS ── */
.howitworks { padding: 100px 32px; background: var(--bg-alt); }
.howitworks-inner { max-width: 1280px; margin: 0 auto; }
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0;
}
.step { display: flex; flex-direction: column; gap: 12px; }
.step-num {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 0.1em;
}
.step-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; line-height: 1.3; }
.step-body { font-size: 14px; color: var(--fg-dim); line-height: 1.65; }
.step-connector { display: flex; align-items: center; padding-top: 28px; justify-content: center; }
.step-visual { margin-top: 16px; }

.brief-box {
  background: var(--bg-card); border: 1px solid var(--border-bright);
  border-radius: 10px; padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
  backdrop-filter: blur(10px);
}
.brief-line { font-size: 12px; color: var(--fg-dim); }
.brief-line.dim { color: var(--fg-dimmer); font-size: 11px; }
.brief-submit {
  font-size: 11px; color: var(--blue); font-weight: 600;
  padding: 8px 14px; background: var(--blue-dim); border: 1px solid var(--blue-border);
  border-radius: 6px; text-align: center; margin-top: 4px; width: fit-content;
}
.post-preview {
  background: var(--bg-card); border: 1px solid var(--border-bright);
  border-radius: 10px; overflow: hidden; backdrop-filter: blur(10px);
}
.post-img-placeholder {
  background: linear-gradient(135deg, #1a2540, #0f1a2e);
  height: 90px; display: flex; align-items: center; justify-content: center;
}
.img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; width: 60px; }
.img-cell { background: rgba(59,130,246,0.08); border-radius: 4px; height: 28px; }
.post-meta { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.post-caption-line { height: 8px; background: rgba(255,255,255,0.12); border-radius: 4px; width: 90%; }
.post-caption-line.short { width: 60%; }
.post-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.mini-tag {
  font-size: 9px; padding: 2px 6px; border-radius: 100px;
  background: var(--blue-dim); color: var(--blue); border: 1px solid var(--blue-border);
}
.approve-ui { display: flex; gap: 8px; }
.approve-btn {
  font-size: 11px; padding: 8px 14px; background: var(--green-dim);
  border: 1px solid var(--green-border); border-radius: 6px; color: var(--green);
}
.reject-btn {
  font-size: 11px; padding: 8px 14px; border: 1px solid var(--border);
  border-radius: 6px; color: var(--fg-dim);
  transition: border-color 0.15s, color 0.15s;
}
.reject-btn:hover { border-color: var(--fg-dimmer); color: var(--fg); }
.schedule-note { font-size: 11px; color: var(--fg-dimmer); margin-top: 6px; }

/* ── PRICING ── */
.pricing { padding: 100px 32px; background: var(--bg-alt); }
.pricing-inner { max-width: 1280px; margin: 0 auto; }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 16px; max-width: 1100px; margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border-bright);
  border-radius: 18px; padding: 36px 32px;
  display: flex; flex-direction: column;
  backdrop-filter: blur(12px);
  position: relative;
  /* overflow hidden removed — badge sits above the card (top:-14px) and needs to be visible */
}
.pricing-card.featured {
  border-color: var(--blue-border);
  box-shadow: 0 0 40px rgba(59,130,246,0.1), inset 0 0 40px rgba(59,130,246,0.03);
}
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 24px rgba(59,130,246,0.1), inset 0 0 20px rgba(59,130,246,0.03); }
  50%       { box-shadow: 0 0 48px rgba(168,85,247,0.2), inset 0 0 36px rgba(59,130,246,0.06); }
}
.pricing-card.featured { animation: borderGlow 4s ease-in-out infinite; }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  color: #fff; font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
  z-index: 5;
  /* pop-in entrance when pricing section scrolls into view */
  opacity: 0;
  transform: translateX(-50%) scale(0.6) translateY(6px);
  transition: opacity 0.45s var(--ease-spring), transform 0.45s var(--ease-spring);
}
.pricing-card.visible .pricing-badge,
.pricing-card.revealed .pricing-badge {
  opacity: 1;
  transform: translateX(-50%) scale(1) translateY(0);
  transition-delay: 0.2s;
}
@keyframes badgePopIn {
  0%   { opacity: 0; transform: translateX(-50%) scale(0.5) translateY(-8px); }
  65%  { opacity: 1; transform: translateX(-50%) scale(1.08) translateY(0); }
  80%  { transform: translateX(-50%) scale(0.96) translateY(0); }
  100% { opacity: 1; transform: translateX(-50%) scale(1) translateY(0); }
}
.plan-name {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--fg-dimmer); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px;
}
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-amount {
  font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800;
  color: var(--fg); line-height: 1; letter-spacing: -0.03em;
}
.price-amount.teal {
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.price-period { font-size: 14px; color: var(--fg-dimmer); }
.plan-desc { font-size: 14px; color: var(--fg-dim); margin-bottom: 28px; line-height: 1.5; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--fg-dim); line-height: 1.4; }
.plan-feature-icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue-dim); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; font-size: 10px; color: var(--blue);
}
.plan-cta {
  display: block; padding: 13px 24px; text-align: center;
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
  border-radius: 10px; border: 1px solid var(--border-bright); color: var(--fg-dim);
  text-decoration: none; transition: all 0.15s; width: 100%;
}
.plan-cta.primary {
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  color: #fff; border-color: transparent;
  position: relative; overflow: hidden;
}
.plan-cta.primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.2) 50%, transparent 80%);
  background-size: 200% 100%;
  background-position: -200% center;
  animation: shimmerSweep 1.5s var(--ease-text) 0.3s both;
}
.plan-cta.primary:hover {
  opacity: 0.9; transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(59,130,246,0.4);
}
.plan-cta:hover { border-color: var(--fg-dimmer); color: var(--fg); }
.pricing-note { text-align: center; font-size: 12px; color: var(--fg-dimmer); margin-top: 20px; }

/* ── PROOF ── */
.proof { padding: 100px 32px; }
.proof-inner { max-width: 1280px; margin: 0 auto; }
.proof-headline {
  font-family: 'Syne', sans-serif; font-size: clamp(20px, 3vw, 32px);
  font-weight: 700; text-align: center; margin-bottom: 48px; color: var(--fg-dim);
}
.proof-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; margin-bottom: 56px;
}
.stat {
  background: var(--bg-alt); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  align-items: center; text-align: center;
}
.stat-val {
  font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--fg-dim); line-height: 1.4; }

.testimonials-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-bright);
  border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.3s;
}
.testimonial-card:hover { border-color: var(--blue-border); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }

/* Quote mark animated entrance */
.testimonial-card::after {
  content: '\u201C';
  position: absolute; top: 16px; right: 20px;
  font-family: 'Syne', sans-serif; font-size: 64px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; opacity: 0.08;
  transition: opacity 0.4s var(--ease-text);
}
.testimonial-card:hover::after { opacity: 0.2; }

/* Alternating slide-in for testimonials */
@keyframes slideInLeft {
  0%   { opacity: 0; transform: translateX(-36px) rotate(-1.5deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0deg); }
}
@keyframes slideInRight {
  0%   { opacity: 0; transform: translateX(36px) rotate(1.5deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0deg); }
}
.testimonial-card:nth-child(odd)  { animation: slideInLeft  0.7s var(--ease-spring) both; }
.testimonial-card:nth-child(even) { animation: slideInRight 0.7s var(--ease-spring) both; }

.testimonial-stars { display: flex; gap: 4px; color: var(--amber); font-size: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--fg-dim); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--blue); flex-shrink: 0;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-size: 13px; font-weight: 600; }
.testimonial-role { font-size: 11px; color: var(--fg-dimmer); }

/* ── CLOSING ── */
.closing {
  position: relative; padding: 120px 32px; text-align: center; overflow: hidden;
}
.closing-bg { position: absolute; inset: 0; pointer-events: none; }
.mesh-3 {
  position: absolute; width: 800px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); filter: blur(70px);
}
.closing-inner { position: relative; max-width: 760px; margin: 0 auto; }
.closing-glow {
  font-size: 48px; color: var(--blue); opacity: 0.4; margin-bottom: 24px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.closing-headline {
  font-family: 'Syne', sans-serif; font-size: clamp(34px, 5vw, 60px);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px; color: var(--fg-dim); line-height: 1.7;
  margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.closing-cta {
  position: relative;
  display: inline-block; padding: 16px 44px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  color: #fff; font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800;
  border-radius: 12px; text-decoration: none; margin-bottom: 16px;
  box-shadow: 0 0 32px rgba(59,130,246,0.3);
  transition: transform 0.18s var(--ease-spring), box-shadow 0.18s;
}
.closing-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 40px rgba(59,130,246,0.5);
}
.closing-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.2s;
}
.closing-note { font-size: 13px; color: var(--fg-dimmer); }

/* ── PRICING BADGE PULSE ── */
.pricing-badge.pulse {
  animation: badgePopIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both, badgePulseSoft 3s ease-in-out 0.5s infinite;
}
@keyframes badgePulseSoft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
  50% { box-shadow: 0 0 12px 2px rgba(59,130,246,0.3); }
}

/* ── SECONDARY CTA ── */
.secondary-cta { padding: 0 32px 80px; }
.secondary-cta-inner { max-width: 1100px; margin: 0 auto; }
.cta-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  background: var(--bg-alt); border: 1px solid var(--border-bright);
  border-radius: 20px; padding: 40px 48px;
}
.cta-left { flex: 1; }
.cta-headline {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--fg); margin: 0 0 8px;
}
.cta-sub { font-size: 15px; color: var(--fg-dimmer); margin: 0; line-height: 1.6; }
.cta-right { flex: 0 0 auto; min-width: 320px; }
.cta-form { display: block; }
.cta-input-group { display: flex; gap: 10px; }
.cta-error {
  color: #F87171; font-size: 13px; margin-top: 8px; padding-left: 2px;
}
.cta-success {
  display: flex; align-items: center; gap: 8px;
  color: var(--green); font-size: 15px; margin-top: 10px;
}
.cta-success span { font-size: 18px; }
#cta-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.cta-email {
  flex: 1; padding: 12px 16px; border-radius: 10px;
  background: var(--bg-card); border: 1px solid var(--border-bright);
  color: var(--fg); font-family: 'DM Sans', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.cta-email:focus { border-color: var(--blue-border); }
.cta-submit {
  padding: 12px 20px; border-radius: 10px; white-space: nowrap;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  color: #fff; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  border: none; transition: opacity 0.2s, transform 0.2s;
}
.cta-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.cta-note { font-size: 12px; color: var(--fg-dimmer); margin: 8px 0 0; }
@media (max-width: 768px) {
  .cta-strip { flex-direction: column; padding: 28px 24px; gap: 24px; }
  .cta-right { width: 100%; min-width: 0; }
  .cta-form { flex-direction: column; }
}

/* ── FAQ REVEAL STAGGER ── */
.faq-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-text), transform 0.55s var(--ease-text);
}
.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.faq-item:nth-child(1) { transition-delay: 0ms; }
.faq-item:nth-child(2) { transition-delay: 80ms; }
.faq-item:nth-child(3) { transition-delay: 160ms; }
.faq-item:nth-child(4) { transition-delay: 240ms; }
.faq-item:nth-child(5) { transition-delay: 320ms; }
.faq-item:nth-child(6) { transition-delay: 400ms; }

/* ── STATS BAR REVEAL ── */
.stats-bar {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.7s var(--ease-text), transform 0.7s var(--ease-text);
}
.stats-bar.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── TRUST REVEAL ── */
.trust-section {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease-text), transform 0.6s var(--ease-text);
}
.trust-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FOOTER ── */
.footer { padding: 72px 32px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 280px 1fr; gap: 64px; margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; text-decoration: none;
}
.footer-desc { font-size: 14px; color: var(--fg-dim); line-height: 1.65; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-dim);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s var(--ease-spring);
}
.social-icon:hover {
  color: var(--fg);
  border-color: var(--blue-border);
  background: var(--blue-dim);
  transform: translateY(-2px);
}
.social-icon:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.footer-nav-col {
  display: flex; gap: 48px; justify-content: flex-end;
}
.footer-links-group {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--fg-dimmer);
  margin-bottom: 4px;
}
.footer-link {
  font-size: 13px; color: var(--fg-dim); text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--fg); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--fg-dimmer);
}

/* ── MOBILE NAV ── */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.6); border-radius: 2px; transition: all 0.3s var(--ease-spring); }
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav-col { flex-wrap: wrap; gap: 32px; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-ring { display: none; }
  .orb-1 { width: 280px; height: 280px; }
  .orb-2 { width: 200px; height: 200px; }
  .orb-3 { display: none; }
  .geo-shape { display: none; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .nav-tagline { display: none; }
  .stats-bar { flex-wrap: wrap; gap: 12px; padding: 20px; }
  .stats-divider { display: none; }
  .stats-item { min-width: 40%; }
  .trust-logos { gap: 6px; }
  .trust-logo-item { font-size: 11px; padding: 5px 12px; }
  .footer-nav-col { gap: 24px; }
  .footer-links-group { gap: 8px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 16px 72px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .nav-inner { padding: 14px 16px; }
  .hero-cta-row { gap: 12px; }
  .stats-bar-section { padding: 0 16px; }
  .faq { padding: 72px 16px; }
  .footer { padding: 56px 16px 24px; }
  .footer-nav-col { flex-direction: column; gap: 20px; }
  .social-icon { width: 44px; height: 44px; } /* touch target min 44px */
}
@media (max-width: 480px) {
  .hero-headline { font-size: 34px; }
  .stats-item { min-width: 45%; }
  .pricing-card { padding: 28px 24px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .orb, .geo-shape, .hero-badge, .hero-headline, .hero-sub, .hero-cta-row,
  .hero-social-proof, .hero-cta-primary, .float-card, .testimonial-card,
  .section-headline, .section-label, .pricing-card.featured, .cursor-ring { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-ring, .hero-noise, .scroll-progress { display: none; }
  .feature-card, .pricing-card, .testimonial-card { transform: none !important; }
  .hero-headline .word { transform: none !important; opacity: 1 !important; }
  .hero-sub, .hero-cta-row, .hero-social-proof, .dashboard-mock { opacity: 1 !important; transform: none !important; }
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar-section {
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(10, 10, 24, 0.65);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 32px;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.04) 0%, rgba(168,85,247,0.04) 100%);
  border-radius: inherit;
}
.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.stats-val {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stats-lbl {
  font-size: 11px;
  color: var(--fg-dimmer);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}
.stats-divider {
  font-size: 18px;
  color: var(--border-bright);
  padding: 0 16px;
  flex-shrink: 0;
}

/* ── TRUST / LOGO BAR ── */
.trust-section {
  padding: 48px 32px;
  text-align: center;
}
.trust-inner { max-width: 1280px; margin: 0 auto; }
.trust-headline {
  font-size: 13px;
  color: var(--fg-dimmer);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  font-weight: 500;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-logo-item {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-dim);
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.trust-sep {
  font-size: 12px;
  color: var(--fg-dimmer);
}

/* ══════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════ */
.faq { padding: 100px 32px; background: var(--bg-alt); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 56px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-q {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-trigger:hover .faq-q { color: var(--blue); }
.faq-trigger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--fg-dim);
  transition: transform 0.35s var(--ease-spring), color 0.2s;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon svg .faq-icon-v { transition: opacity 0.3s, transform 0.35s var(--ease-spring); }
.faq-item.open .faq-icon {
  color: var(--blue);
  transform: rotate(180deg);
}
/* When open, hide the vertical bar — shows as + transformed to ✓ */
.faq-item.open .faq-icon-v { opacity: 0; transform: rotate(90deg); }

.faq-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-text), opacity 0.35s;
  opacity: 0;
}
.faq-item.open .faq-panel {
  max-height: 120px;
  opacity: 1;
}
.faq-a {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.7;
  padding-bottom: 22px;
}

/* ══════════════════════════════════════════
   ACCESSIBILITY — FOCUS RINGS
══════════════════════════════════════════ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Image alt text (screen-reader only) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.magnetic-btn {
  will-change: transform;
  /* No CSS transition — JS writes inline transform instantly to avoid cursor-lag */
}