/* ─── Google Fonts & CDN Fonts ───────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600,700,800,900&display=swap');

/* ─── @property for animated angle ───────────────────────────────── */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ─── CSS Variables ──────────────────────────────────────────────── */
:root {
  --bg-primary: #0A0A0F;
  --bg-secondary: #111118;
  --bg-card: #16161E;
  --bg-card-hover: #1C1C26;
  --border-subtle: #222233;
  --border-hover: #333344;

  --text-primary: #FFFFFF;
  --text-secondary: #8888AA;
  --text-muted: #555566;

  --accent-primary: #FF6B2B;
  --accent-secondary: #FFB347;
  --accent-glow: rgba(255, 107, 43, 0.2);
  --accent-gradient: linear-gradient(135deg, #FF4444, #FF6B2B, #FFB347);
  --accent-gradient-text: linear-gradient(135deg, #FF4444, #FF6B2B, #FFB347);

  --nav-bg: rgba(10, 10, 15, 0.85);
  --nav-border: rgba(255, 255, 255, 0.06);

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

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: all 0.3s ease;

  --section-pad: 120px 24px;
  --max-width: 1200px;

  --red-tint: rgba(255, 60, 60, 0.06);
  --green-tint: rgba(74, 222, 128, 0.06);
}

/* ─── Reset & Base ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  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)' opacity='0.03'/%3E%3C/svg%3E");
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

/* ─── Typography Utilities ───────────────────────────────────────── */
.font-display {
  font-family: var(--font-display);
}

.font-mono {
  font-family: var(--font-mono);
}

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

.text-secondary {
  color: var(--text-secondary);
}

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

.text-accent {
  color: var(--accent-primary);
}

.gradient-text {
  background: var(--accent-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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;
}

/* ─── Layout ─────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-pad);
}

/* ─── Scroll Reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ─── Navigation — Floating Pill ─────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
}

#main-nav.scrolled .nav-inner {
  background: rgba(10, 10, 15, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  pointer-events: all;
  width: auto;
  max-width: 880px;
  margin: 0 auto;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  white-space: nowrap;
  margin-right: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 6px rgba(255, 107, 43, 0.5));
}

.nav-logo .logo-cold {
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-logo .logo-pumper {
  color: var(--text-primary);
  font-weight: 800;
}

/* Legacy compat */
.nav-logo .logo-m365 {
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-logo .logo-pump {
  color: var(--text-primary);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 9999px;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-link:hover {
  color: #fff;
}

.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  white-space: nowrap;
  margin-left: 12px;
  padding: 7px 18px;
  font-size: 13px;
  border-radius: 9999px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 6px;
  color: var(--text-primary);
  align-items: center;
  justify-content: center;
}

/* Mobile nav menu */
#mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

#mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

#mobile-menu .nav-link {
  font-size: 15px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  background: none;
}

#mobile-menu .btn-primary {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 8px;
}

/* ─── Buttons — Pill Shape ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #FF4444 0%, #FF6B2B 50%, #FFB347 100%);
  color: #000000;
  box-shadow: 0 0 20px rgba(255, 107, 43, 0.2);
}

.btn-primary:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 35px rgba(255, 107, 43, 0.35);
  transform: translateY(-1px);
  color: #000;
}

/* Pulsing glow for hero CTA */
.btn-glow {
  animation: btn-pulse 3s ease-in-out infinite;
}

@keyframes btn-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 107, 43, 0.2);
  }

  50% {
    box-shadow: 0 0 50px rgba(255, 107, 43, 0.4), 0 8px 40px rgba(255, 107, 43, 0.25);
  }
}

.btn-glow:hover {
  animation: none;
  box-shadow: 0 0 60px rgba(255, 107, 43, 0.5), 0 8px 40px rgba(255, 107, 43, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(255, 107, 43, 0.05);
}

.btn-lg {
  padding: 12px 32px;
  font-size: 16px;
}

.btn-sm {
  padding: 7px 18px;
  font-size: 13px;
}

/* ─── Section Headers ────────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.section-label::before {
  content: '⟩';
  font-size: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

/* ─── Electric Border Card Animation ────────────────────────────── */
.electric-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  overflow: visible;
  z-index: 1;
}

.electric-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: conic-gradient(from var(--angle),
      transparent 0%,
      transparent 70%,
      var(--accent-primary) 85%,
      var(--accent-secondary) 90%,
      var(--accent-primary) 95%,
      transparent 100%);
  animation: rotate-border 5s linear infinite;
  animation-delay: var(--card-delay, 0s);
  z-index: -2;
  opacity: 0.5;
  transition: opacity 0.3s ease, animation-duration 0.3s ease;
}

.electric-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background: var(--bg-card);
  z-index: -1;
  transition: background 0.3s ease;
}

.electric-card:hover::before {
  opacity: 1;
  animation-duration: 2s;
}

.electric-card:hover::after {
  background: var(--bg-card-hover);
}

.electric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

@keyframes rotate-border {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 360deg;
  }
}

/* ─── Cards (legacy compat) ─────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 43, 0), transparent);
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 107, 43, 0.08);
}

.card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(255, 107, 43, 0.3), transparent);
}

.card-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Grid Layouts ───────────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ─── Icon Wrap ──────────────────────────────────────────────────── */
.icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 43, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

/* ─── Hero Section ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 24px 100px;
  overflow: hidden;
}

#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Parallax Layers */
.parallax-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.parallax-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
  filter: blur(40px);
}

.orb-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
}

.orb-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
}

.orb-3 {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 5%;
}

.orb-4 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: 20%;
}

.parallax-bolt {
  position: absolute;
  font-size: 24px;
  opacity: 0.08;
  filter: blur(1px);
}

.bolt-1 {
  top: 25%;
  right: 25%;
}

.bolt-2 {
  bottom: 30%;
  left: 30%;
}

.parallax-envelope {
  position: absolute;
  font-size: 20px;
  opacity: 0.06;
}

.env-1 {
  top: 40%;
  left: 60%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 43, 0.12);
  border: 1px solid rgba(255, 107, 43, 0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-secondary);
  margin-bottom: 32px;
}

/* Word-by-word hero headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 900px;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
  animation: hero-word-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes hero-word-in {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Stagger: each word gets an increasing delay */
.hero-word:nth-child(1) {
  animation-delay: 0.4s;
}

.hero-word:nth-child(2) {
  animation-delay: 0.48s;
}

.hero-word:nth-child(3) {
  animation-delay: 0.56s;
}

.hero-word:nth-child(4) {
  animation-delay: 0.64s;
}

.hero-word:nth-child(5) {
  animation-delay: 0.72s;
}

.hero-word:nth-child(6) {
  animation-delay: 0.80s;
}

.hero-word:nth-child(7) {
  animation-delay: 0.88s;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

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

.hero-note span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-note .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* ─── Pump Mascot — Angry Gradient Electrified ───────────────────── */
.mascot-wrapper {
  margin-bottom: 32px;
  display: flex;
  justify-content: flex-start;
}

.mascot {
  position: relative;
  width: 220px;
  height: 240px;
  animation: mascot-float 3s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(1.5deg); }
  50% { transform: translateY(-10px) rotate(0deg); }
  75% { transform: translateY(-6px) rotate(-1.5deg); }
}

/* Pump body — angular, forward-leaning, gradient-colored */
.mascot-body {
  position: relative;
  width: 120px;
  height: 140px;
  margin: 20px auto 0;
  background: linear-gradient(160deg, #FF4444 0%, #FF6B2B 40%, #FFB347 100%);
  border-radius: 12px 16px 20px 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 60px rgba(255, 107, 43, 0.35),
    0 0 120px rgba(255, 68, 68, 0.15),
    inset 0 2px 20px rgba(255, 255, 255, 0.15),
    inset 0 -8px 20px rgba(0, 0, 0, 0.2);
  overflow: visible;
  transform: rotate(5deg);
  transform-origin: center bottom;
  animation: body-electric 2s ease-in-out infinite;
}

@keyframes body-electric {
  0%, 100% {
    box-shadow:
      0 0 60px rgba(255, 107, 43, 0.35),
      0 0 120px rgba(255, 68, 68, 0.15),
      inset 0 2px 20px rgba(255, 255, 255, 0.15),
      inset 0 -8px 20px rgba(0, 0, 0, 0.2);
    filter: brightness(1);
  }
  25% {
    box-shadow:
      0 0 80px rgba(255, 107, 43, 0.5),
      0 0 160px rgba(255, 68, 68, 0.25),
      inset 0 2px 30px rgba(255, 255, 255, 0.25),
      inset 0 -8px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(1.15);
  }
  50% {
    box-shadow:
      0 0 60px rgba(255, 107, 43, 0.35),
      0 0 120px rgba(255, 68, 68, 0.15),
      inset 0 2px 20px rgba(255, 255, 255, 0.15),
      inset 0 -8px 20px rgba(0, 0, 0, 0.2);
    filter: brightness(1);
  }
  75% {
    box-shadow:
      0 0 90px rgba(255, 179, 71, 0.5),
      0 0 180px rgba(255, 107, 43, 0.2),
      inset 0 2px 30px rgba(255, 255, 255, 0.3),
      inset 0 -8px 20px rgba(0, 0, 0, 0.1);
    filter: brightness(1.2);
  }
}

/* Electric arc sweep across body surface */
.mascot-body::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 45%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.4) 55%,
    transparent 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: electric-sweep 2s linear infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes electric-sweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Electric body surface crackle overlay */
.mascot-body::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.3) 0%, transparent 8%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.2) 0%, transparent 6%),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.25) 0%, transparent 7%);
  animation: surface-sparks 0.8s steps(3) infinite;
  pointer-events: none;
}

@keyframes surface-sparks {
  0% { opacity: 0.6; }
  33% { opacity: 0; }
  66% { opacity: 0.8; }
  100% { opacity: 0.3; }
}

/* Pump handle — angular weapon grip */
.mascot-pump-handle {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 26px;
  background: linear-gradient(180deg, #FF6B2B 0%, #FF4444 100%);
  border-radius: 4px 4px 2px 2px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-bottom: none;
  animation: pump-action 4s ease-in-out infinite;
  box-shadow: 0 -4px 15px rgba(255, 107, 43, 0.3);
}

/* Handle crossbar grip */
.mascot-pump-handle::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 10px;
  background: linear-gradient(90deg, #FF4444, #FFB347, #FF4444);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 107, 43, 0.4);
}

@keyframes pump-action {
  0%, 70%, 100% {
    transform: translateX(-50%) translateY(0) scaleY(1);
  }
  76% {
    transform: translateX(-50%) translateY(12px) scaleY(0.8);
  }
  82% {
    transform: translateX(-50%) translateY(-8px) scaleY(1.15);
  }
  88% {
    transform: translateX(-50%) translateY(0) scaleY(1);
  }
}

/* Nozzle — thick cannon barrel, gradient colored */
.mascot-nozzle {
  position: absolute;
  top: 24px;
  right: -36px;
  width: 40px;
  height: 18px;
  background: linear-gradient(135deg, #FF6B2B, #FFB347);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-left: none;
  border-radius: 0 10px 10px 0;
  transform: rotate(-20deg);
  transform-origin: left center;
  box-shadow: 0 0 20px rgba(255, 107, 43, 0.4);
}

/* Nozzle tip glow */
.mascot-nozzle::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 12px;
  background: #fff;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 107, 43, 0.6);
  animation: nozzle-glow 1.5s ease-in-out infinite;
}

@keyframes nozzle-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 107, 43, 0.4); }
  50% { box-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 107, 43, 0.8); }
}

/* Base — wide solid stance, gradient */
.mascot-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 16px;
  background: linear-gradient(180deg, #FF6B2B 0%, #FF4444 100%);
  border-radius: 4px 4px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 30px rgba(255, 68, 68, 0.3), 0 0 40px rgba(255, 107, 43, 0.15);
}

/* Eyes — angry slits matching logo */
.mascot-eyes {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}

.mascot-eye {
  width: 28px;
  height: 10px;
  background: linear-gradient(135deg, #fff 30%, #FFB347 100%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 107, 43, 0.6);
  animation: eye-blink 5s infinite, eye-flare 2s ease-in-out infinite;
  animation-delay: calc(var(--blink-offset, 0) * 1s);
}

/* Angry angle — left eye tilts inward-down, right tilts inward-down */
.left-eye {
  --blink-offset: 0;
  transform: skewY(-8deg);
}

.right-eye {
  --blink-offset: 0.05;
  transform: skewY(8deg);
}

@keyframes eye-blink {
  0%, 94%, 100% { transform: scaleY(1) var(--eye-skew, skewY(0deg)); opacity: 1; }
  96% { transform: scaleY(0.1); opacity: 0.5; }
  98% { transform: scaleY(1); opacity: 1; }
}

@keyframes eye-flare {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 107, 43, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 60px rgba(255, 107, 43, 0.8), 0 0 80px rgba(255, 68, 68, 0.3);
  }
}

/* Angry mouth — sharp V gritted teeth */
.mascot-mouth {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 6px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  background: rgba(255, 255, 255, 0.3);
}

/* Lightning crackle — aggressive flicker */
.mascot-lightning {
  position: absolute;
  font-size: 14px;
  opacity: 0;
  animation: lightning-crackle 0.3s steps(2) infinite;
  filter: drop-shadow(0 0 4px rgba(255, 107, 43, 0.8));
}

.lt-1 {
  top: 10px;
  right: -28px;
  animation-delay: 0s;
  font-size: 18px;
}

.lt-2 {
  top: 80px;
  left: -24px;
  animation-delay: 0.4s;
  font-size: 16px;
}

.lt-3 {
  bottom: 25px;
  right: -22px;
  animation-delay: 0.9s;
  font-size: 14px;
}

@keyframes lightning-crackle {
  0% { opacity: 0; transform: scale(0.7) rotate(-10deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(5deg); }
  100% { opacity: 0; transform: scale(0.7) rotate(-10deg); }
}

/* Electric arc between body and nozzle */
.mascot-arc {
  position: absolute;
  top: 20px;
  right: -10px;
  width: 30px;
  height: 60px;
  overflow: visible;
  pointer-events: none;
}

.mascot-arc::before,
.mascot-arc::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, transparent, #fff, #FFB347, transparent);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 179, 71, 0.8);
  animation: arc-flicker 0.2s steps(3) infinite;
}

.mascot-arc::before {
  top: 0;
  left: 8px;
  transform: rotate(30deg);
  animation-delay: 0s;
}

.mascot-arc::after {
  top: 25px;
  left: 15px;
  transform: rotate(-20deg);
  animation-delay: 0.1s;
}

@keyframes arc-flicker {
  0% { opacity: 1; height: 20px; }
  33% { opacity: 0.3; height: 15px; }
  66% { opacity: 0.9; height: 22px; }
  100% { opacity: 0.5; height: 18px; }
}

/* Email burst from nozzle — projectile speed */
.mascot-email-burst {
  position: absolute;
  top: 22px;
  right: -36px;
  width: 0;
  height: 0;
  pointer-events: none;
}

.burst-envelope {
  position: absolute;
  font-size: 10px;
  opacity: 0;
  animation: email-fly 0.4s linear infinite;
  animation-delay: var(--burst-delay, 0s);
}

.burst-envelope:nth-child(1) {
  --burst-delay: 3s;
  --fly-x: 160px;
  --fly-y: -50px;
}

.burst-envelope:nth-child(2) {
  --burst-delay: 3.04s;
  --fly-x: 180px;
  --fly-y: 0px;
}

.burst-envelope:nth-child(3) {
  --burst-delay: 3.08s;
  --fly-x: 150px;
  --fly-y: 40px;
}

.burst-envelope:nth-child(4) {
  --burst-delay: 3.02s;
  --fly-x: 170px;
  --fly-y: -25px;
}

.burst-envelope:nth-child(5) {
  --burst-delay: 3.06s;
  --fly-x: 160px;
  --fly-y: 20px;
}

@keyframes email-fly {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--fly-x), var(--fly-y)) scale(0.2);
  }
}

/* Mascot sparks container */
.mascot-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Mini mascot for footer — idle float only */
.mascot-mini {
  width: 50px;
  height: 55px;
  position: relative;
  animation: mascot-float 3s ease-in-out infinite;
}

.mascot-body-mini {
  width: 32px;
  height: 38px;
  margin: 4px auto 0;
  border-radius: 12px 12px 16px 16px;
  border-width: 1px;
  background: linear-gradient(180deg, #2a2a4e 0%, #1a1a2e 100%);
  border: 1px solid rgba(255, 107, 43, 0.3);
  box-shadow: 0 0 15px rgba(255, 107, 43, 0.1);
}

.mascot-eyes-mini {
  top: 10px;
  gap: 8px;
}

.mini-eye {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 6px rgba(255, 107, 43, 0.5);
}

.mascot-mini .mascot-nozzle-mini {
  position: absolute;
  top: 16px;
  right: 2px;
  width: 10px;
  height: 5px;
  background: #2a2a4e;
  border: 1px solid rgba(255, 107, 43, 0.3);
  border-left: none;
  border-radius: 0 4px 4px 0;
  transform: rotate(-15deg);
}

.mascot-mini .mascot-base-mini {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 5px;
  background: linear-gradient(180deg, #2a2a4e 0%, #1a1a2e 100%);
  border-radius: 2px 2px 4px 4px;
  border: 1px solid rgba(255, 107, 43, 0.15);
}

/* ─── Cost Comparison ────────────────────────────────────────────── */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.cost-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: var(--transition);
}

.cost-card-bad {
  border-color: rgba(255, 60, 60, 0.2);
  background: linear-gradient(160deg, rgba(255, 60, 60, 0.04) 0%, var(--bg-card) 100%);
}

.cost-card-good {
  border-color: rgba(74, 222, 128, 0.2);
  background: linear-gradient(160deg, rgba(74, 222, 128, 0.04) 0%, var(--bg-card) 100%);
}

.cost-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

.cost-title-bad {
  color: #ff6b6b;
}

.cost-title-good {
  color: #4ADE80;
}

.cost-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.cost-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.cost-item span:nth-child(2) {
  flex: 1;
}

.cost-x {
  font-size: 14px;
  flex-shrink: 0;
}

.cost-check {
  font-size: 14px;
  flex-shrink: 0;
}

.cost-amount {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.bad-amount {
  color: #ff6b6b;
}

.good-amount {
  color: #4ADE80;
}

.cost-total {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.cost-total-bad {
  color: #ff6b6b;
}

.cost-total-good {
  color: #4ADE80;
}

.cost-counter {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
}

.cost-sanity {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
}

.cost-or {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
}

/* Save callout */
.save-callout {
  text-align: center;
  padding: 48px 32px;
  margin-bottom: 64px;
}

.save-amount {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.save-sub {
  font-size: 18px;
  color: var(--text-secondary);
}

/* Mini comparison table */
.comparison-mini-wrap {
  margin-top: 0;
}

.comparison-mini-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
}

/* ─── Pain Points ────────────────────────────────────────────────── */
.pain-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}

.pain-pair {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 16px;
  align-items: stretch;
}

.pain-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-primary);
  font-weight: 700;
}

.pain-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.pain-emoji {
  font-size: 28px;
  flex-shrink: 0;
}

.pain-card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.pain-side {
  background: linear-gradient(135deg, rgba(255, 60, 60, 0.08) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(255, 60, 60, 0.15);
}

.pain-side p {
  color: var(--text-secondary);
  font-style: italic;
}

.solution-side {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.06) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(74, 222, 128, 0.15);
}

.solution-side p {
  color: var(--text-secondary);
}

/* ─── Testimonials ───────────────────────────────────────────────── */
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.view-all-link {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 15px;
}

.view-all-link:hover {
  color: var(--accent-secondary);
}

.testimonials-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.testimonial-card {
  transition: var(--transition);
}

.testimonial-large {
  padding: 36px;
}

.testimonial-small {
  padding: 24px;
  min-width: 340px;
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 32px;
  color: var(--accent-primary);
  font-weight: 700;
  line-height: 1;
  opacity: 0.6;
}

.testimonial-small .testimonial-quote {
  font-size: 14px;
}

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

.testimonial-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-small .testimonial-avatar-img {
  width: 36px;
  height: 36px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-handle {
  font-size: 13px;
  color: var(--accent-primary);
  font-family: var(--font-mono);
}

/* Testimonial scroll ticker */
.testimonials-scroll-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-scroll-inner {
  display: flex;
  gap: 24px;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

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

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

.testimonials-scroll-track:hover .testimonials-scroll-inner {
  animation-play-state: paused;
}

/* ─── Works With / Connect Providers ─────────────────────────────── */
.provider-rows {
  display: flex;
  flex-direction: column;
}

.provider-row-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.provider-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.provider-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.provider-pill:hover {
  border-color: var(--accent-primary);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(255, 107, 43, 0.1);
}

.provider-icon {
  font-size: 18px;
}

/* ─── Section Separator (Electric) ───────────────────────────────── */
.section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  margin: 0 auto;
  max-width: 800px;
}

.section-sep-electric {
  height: 1px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.section-sep-electric::after {
  content: '';
  position: absolute;
  top: -1px;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), transparent);
  border-radius: 2px;
  animation: sep-pulse 4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 107, 43, 0.4);
}

@keyframes sep-pulse {
  0% {
    left: -120px;
  }

  100% {
    left: 100%;
  }
}

/* ─── CTA Section ────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-title {
  margin: 0 auto 16px;
}

.cta-section .section-sub {
  margin: 0 auto 40px;
  text-align: center;
}

.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 24px 40px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand .nav-logo {
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  opacity: 0.7;
}

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

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

.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Features Page ──────────────────────────────────────────────── */
.feature-category {
  margin-bottom: 80px;
}

.feature-category:last-child {
  margin-bottom: 0;
}

.category-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid rgba(255, 107, 43, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.category-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  display: flex;
  gap: 16px;
}

.feature-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

.feature-item-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 43, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item-content {
  flex: 1;
}

.feature-item-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.feature-item-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Pricing ────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: rgba(255, 107, 43, 0.4);
  background: linear-gradient(160deg, #1C1A26 0%, #16161E 100%);
  box-shadow: 0 0 60px rgba(255, 107, 43, 0.1), 0 0 0 1px rgba(255, 107, 43, 0.2);
}

.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.badge-value {
  background: rgba(255, 107, 43, 0.15);
  color: var(--accent-secondary);
  border: 1px solid rgba(255, 107, 43, 0.3);
}

.badge-popular {
  background: var(--accent-gradient);
  color: #000;
}

.badge-team {
  background: rgba(136, 136, 170, 0.15);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.pricing-price {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.pricing-period {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-add {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 24px 0;
}

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

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature .check {
  color: #4ADE80;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.pricing-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(255, 107, 43, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  gap: 16px;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--text-secondary);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item.open .faq-icon {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── Comparison Page ────────────────────────────────────────────── */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  white-space: normal;
  vertical-align: middle;
  word-break: break-word;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text-secondary);
  padding-left: 28px;
  width: 26%;
}

.comparison-table thead th {
  background: var(--bg-secondary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 20px;
}

.comparison-table th.col-highlight {
  background: rgba(255, 107, 43, 0.08);
  border-left: 1px solid rgba(255, 107, 43, 0.3);
  border-right: 1px solid rgba(255, 107, 43, 0.3);
  color: var(--accent-primary);
}

.comparison-table td.col-highlight {
  background: rgba(255, 107, 43, 0.04);
  border-left: 1px solid rgba(255, 107, 43, 0.15);
  border-right: 1px solid rgba(255, 107, 43, 0.15);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.01);
}

.comparison-table tr:nth-child(odd) td.col-highlight {
  background: rgba(255, 107, 43, 0.05);
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.comparison-table tr:hover td.col-highlight {
  background: rgba(255, 107, 43, 0.07);
}

.check-yes {
  color: #4ADE80;
  font-size: 18px;
}

.check-no {
  color: #666688;
  font-size: 18px;
}

.check-warn {
  color: #F59E0B;
  font-size: 18px;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

/* ─── Hero (Sub-pages) ───────────────────────────────────────────── */
.page-hero {
  padding: 180px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at top center, rgba(255, 107, 43, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .section-title {
  max-width: 800px;
  margin: 0 auto 20px;
}

.page-hero .section-sub {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ─── LinkedIn Extractor Hero ────────────────────────────────────── */
.extractor-hero {
  padding: 140px 24px 60px;
  text-align: center;
}

.extractor-hero .hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.extractor-hero .hero-note {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── LinkedIn Pumper Mascot ─────────────────────────────────────── */
.li-mascot-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.li-mascot {
  position: relative;
  width: 160px;
  height: 180px;
  animation: li-mascot-float 3s ease-in-out infinite;
}

@keyframes li-mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.li-mascot-body {
  position: relative;
  width: 120px;
  height: 130px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1a1a3e, #0e0e2a);
  border-radius: 20px 20px 16px 16px;
  border: 2px solid rgba(255, 107, 43, 0.3);
  box-shadow: 0 0 30px rgba(255, 107, 43, 0.15), inset 0 0 20px rgba(0, 0, 0, 0.3);
  overflow: visible;
}

/* LinkedIn "in" badge on the body */
.li-mascot-screen {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 28px;
  background: linear-gradient(135deg, #0077B5, #00A0DC);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 119, 181, 0.5);
  animation: li-screen-pulse 2s ease-in-out infinite;
}

.li-mascot-in {
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  font-family: var(--font-display);
}

@keyframes li-screen-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(0, 119, 181, 0.5); }
  50% { box-shadow: 0 0 25px rgba(0, 119, 181, 0.8), 0 0 40px rgba(0, 119, 181, 0.3); }
}

/* Angry eyes */
.li-mascot-eyes {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.li-mascot-eye {
  width: 16px;
  height: 10px;
  background: radial-gradient(circle, #FFB347, #FF6B2B);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 107, 43, 0.8);
  animation: li-eye-glow 2s ease-in-out infinite;
}

.li-mascot-eye.left {
  transform: skewY(-8deg);
}

.li-mascot-eye.right {
  transform: skewY(8deg);
}

@keyframes li-eye-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 43, 0.6); }
  50% { box-shadow: 0 0 22px rgba(255, 107, 43, 1), 0 0 35px rgba(255, 107, 43, 0.4); }
}

/* Nozzle pointing right */
.li-mascot-nozzle {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 18px;
  background: linear-gradient(90deg, #2a2a4e, #FF6B2B);
  border-radius: 0 8px 8px 0;
  border: 1px solid rgba(255, 107, 43, 0.4);
  box-shadow: 0 0 10px rgba(255, 107, 43, 0.3);
}

/* Email burst from nozzle */
.li-email-burst {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.li-email {
  position: absolute;
  font-size: 14px;
  opacity: 0;
  animation: li-email-fire 4s ease-out infinite;
}

.li-email.e1 { animation-delay: 0s; }
.li-email.e2 { animation-delay: 0.15s; }
.li-email.e3 { animation-delay: 0.3s; }
.li-email.e4 { animation-delay: 0.45s; }
.li-email.e5 { animation-delay: 0.6s; }

@keyframes li-email-fire {
  0% { opacity: 0; transform: translate(0, 0) scale(1); }
  5% { opacity: 1; }
  15% { opacity: 1; transform: translate(60px, -20px) scale(0.8); }
  30% { opacity: 0; transform: translate(140px, -35px) scale(0.3); }
  100% { opacity: 0; transform: translate(140px, -35px) scale(0.3); }
}

.li-email.e2 { --y: 5px; }
.li-email.e3 { --y: -10px; }
.li-email.e4 { --y: 15px; }
.li-email.e5 { --y: -25px; }

@keyframes li-email-fire {
  0% { opacity: 0; transform: translate(0, 0) scale(1); }
  5% { opacity: 1; }
  15% { opacity: 1; transform: translate(60px, var(--y, -20px)) scale(0.8); }
  30% { opacity: 0; transform: translate(140px, var(--y, -35px)) scale(0.3); }
  100% { opacity: 0; }
}

/* Lightning bolts crackling */
.li-mascot-bolt {
  position: absolute;
  font-size: 14px;
  opacity: 0;
  animation: li-bolt-crackle 3s steps(2) infinite;
  filter: drop-shadow(0 0 4px rgba(255, 107, 43, 0.8));
}

.li-mascot-bolt.b1 { top: 8px; right: -8px; animation-delay: 0s; }
.li-mascot-bolt.b2 { top: 80px; left: -12px; animation-delay: 1.1s; }
.li-mascot-bolt.b3 { bottom: 5px; right: 5px; animation-delay: 2.2s; font-size: 11px; }

@keyframes li-bolt-crackle {
  0%, 45%, 55%, 100% { opacity: 0; }
  47%, 53% { opacity: 1; }
}

/* Base */
.li-mascot-base {
  width: 80px;
  height: 8px;
  margin: 6px auto 0;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 43, 0.3), transparent);
  border-radius: 50%;
  animation: li-base-pulse 3s ease-in-out infinite;
}

@keyframes li-base-pulse {
  0%, 100% { opacity: 0.5; width: 80px; }
  50% { opacity: 0.8; width: 90px; }
}

/* ─── Stats Section ──────────────────────────────────────────────── */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 80px 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  padding: 40px 24px;
  border-right: 1px solid var(--border-subtle);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── How It Works ───────────────────────────────────────────────── */
.how-intro {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 16px;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-hover);
  font-size: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: rgba(255, 107, 43, 0.3);
  box-shadow: 0 0 40px rgba(255, 107, 43, 0.08);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 16px;
  opacity: 0.8;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Alt BG ─────────────────────────────────────────────────────── */
.bg-alt {
  background: var(--bg-secondary);
}

/* ─── Pills ──────────────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ─── Floating Lightning (ambient) ───────────────────────────────── */
.floating-bolt {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  font-size: 16px;
  opacity: 0.06;
  animation: float-drift 20s linear infinite;
}

@keyframes float-drift {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.06;
  }

  90% {
    opacity: 0.06;
  }

  100% {
    transform: translateY(-100vh) translateX(50px) rotate(360deg);
    opacity: 0;
  }
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .step-connector {
    display: none;
  }

  .comparison-cards {
    grid-template-columns: 1fr;
  }

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

  .pain-pair {
    grid-template-columns: 1fr;
  }

  .pain-arrow {
    transform: rotate(90deg);
  }

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

@media (max-width: 768px) {
  :root {
    --section-pad: 80px 20px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

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

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #main-nav {
    padding: 0 16px;
  }

  #mobile-menu {
    display: flex;
  }

  .hero-headline {
    font-size: 42px;
  }

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

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .mascot {
    width: 140px;
    height: 140px;
  }

  .mascot-body {
    width: 80px;
    height: 110px;
  }

  .mascot-eyes {
    top: 28px;
    gap: 16px;
  }

  .mascot-eye {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 640px) {
  .hero-headline {
    font-size: 36px;
  }

  .card {
    padding: 24px;
  }

  .electric-card {
    padding: 24px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    min-width: 160px;
  }

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

  .testimonial-small {
    min-width: 280px;
  }
}

/* ─── NEW Badge & Extractor Nav Button ───────────────────────────── */
.nav-extractor-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 107, 43, 0.12);
  border: 1px solid rgba(255, 107, 43, 0.35);
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.nav-extractor-btn:hover {
  background: rgba(255, 107, 43, 0.22);
  border-color: rgba(255, 107, 43, 0.6);
  box-shadow: 0 0 16px rgba(255, 107, 43, 0.2);
}

.nav-extractor-btn.active {
  background: rgba(255, 107, 43, 0.2);
  border-color: var(--accent-primary);
}

.nav-item-new {
  position: relative;
}

.nav-item-new .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 14px 6px;
}

.nav-link-bold {
  font-weight: 800;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.new-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: var(--accent-primary);
  padding: 1px 6px;
  border-radius: 4px;
  line-height: 1.4;
  animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% {
    box-shadow: 0 0 4px rgba(255, 107, 43, 0.4);
    background: var(--accent-primary);
  }
  50% {
    box-shadow: 0 0 16px rgba(255, 107, 43, 0.9), 0 0 30px rgba(255, 107, 43, 0.4);
    background: var(--accent-secondary);
  }
}

.nav-link-new {
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── Page Load/Entrance Animation ───────────────────────────────── */
body {
  animation: page-fade-in 0.6s ease forwards;
}

@keyframes page-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#main-nav {
  animation: nav-slide-in 0.5s ease 0.3s both;
}

@keyframes nav-slide-in {
  from {
    opacity: 0;
    margin-top: -20px;
  }

  to {
    opacity: 1;
    margin-top: 0;
  }
}