/* =============================================
   NERD HEROES — style.css
   Brutalist / Techy / Bold Coral + Black
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Bebas+Neue&family=Darker+Grotesque:wght@400;700;900&display=swap');

/* ─── CSS Variables ─────────────────────────── */
:root {
  --black:   #000000;
  --white:   #ffffff;
  --red:     #FF4444;
  --red-dark:#CC2222;
  --red-dim: #FF444422;
  --mono:    'Space Mono', monospace;
  --display: 'Bebas Neue', sans-serif;
  --body:    'Darker Grotesque', sans-serif;
  --shadow:  8px 8px 0 var(--black);
  --shadow-red: 8px 8px 0 var(--red);
  --border:  3px solid var(--black);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

/* ─── Custom Cursor ─────────────────────────── */
#cursor {
  width: 20px; height: 20px;
  background: var(--red);
  border: 2px solid var(--black);
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s, background 0.15s, width 0.15s, height 0.15s;
}
#cursor.cursor-hover {
  width: 40px; height: 40px;
  background: var(--black);
}
a, button, [data-hover] { cursor: none; }

/* ─── Noise Overlay ─────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  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='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9998;
}

/* ─── Typography ────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: 0.02em;
  line-height: 0.95;
}
.mono { font-family: var(--mono); }
.red  { color: var(--red); }
.uppercase { text-transform: uppercase; }

/* ─── Utility ───────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.section-black { background: var(--black); color: var(--white); }
.section-red { background: var(--red); color: var(--black); }

.hard-shadow { box-shadow: var(--shadow); }
.hard-shadow-red { box-shadow: var(--shadow-red); }
.border-box { border: var(--border); }

/* ─── Buttons ───────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: var(--border);
  padding: 14px 32px;
  transition: transform 0.1s, box-shadow 0.1s, background 0.1s, color 0.1s;
  position: relative;
}
.btn-primary {
  background: var(--red);
  color: var(--black);
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--black);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  box-shadow: 8px 8px 0 var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(255,255,255,0.3);
}
.btn-black {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-black:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--red);
}

/* ─── NAV ───────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: var(--border);
  border-bottom-color: var(--red);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta { font-size: 0.8rem !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile Nav */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: var(--display);
  font-size: 3.5rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}
#mobile-menu a:hover { color: var(--red); }
.menu-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--white);
  font-family: var(--mono);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── HERO ──────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,68,68,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,68,68,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}
.hero-headline {
  font-size: clamp(4rem, 10vw, 9rem);
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
}
.hero-headline .accent { color: var(--red); }
.hero-headline .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero-sub {
  font-family: var(--mono);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.6s;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.8s;
}
.hero-stats {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1s;
}
.hero-stat {
  text-align: right;
  border-right: 3px solid var(--red);
  padding-right: 1rem;
}
.hero-stat-num {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.2s;
}
.scroll-hint::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

/* ─── MARQUEE ───────────────────────────────── */
.marquee-section {
  background: var(--red);
  border-top: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 0 2rem;
  color: var(--black);
}
.marquee-dot {
  color: var(--black);
  opacity: 0.4;
  padding: 0 0.5rem;
}

/* ─── PROBLEM SECTION ───────────────────────── */
#problem {
  background: var(--black);
  padding: 120px 0;
}
.problem-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2rem;
}
.problem-headline {
  font-size: clamp(3rem, 7vw, 7rem);
  color: var(--white);
  margin-bottom: 2rem;
}
.problem-body {
  font-family: var(--mono);
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin-bottom: 4rem;
  line-height: 1.8;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 2px solid rgba(255,255,255,0.1);
}
.stat-block {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.stat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
}
.stat-num {
  font-family: var(--display);
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
  display: block;
}
.stat-text {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ─── SOLUTION SECTION ──────────────────────── */
#solution {
  background: var(--white);
  padding: 120px 0;
}
.solution-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 1rem;
}
.solution-headline {
  font-size: clamp(3.5rem, 7vw, 7rem);
  margin-bottom: 1rem;
  line-height: 0.9;
}
.solution-headline .fix { color: var(--red); }
.solution-sub {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: rgba(0,0,0,0.5);
  max-width: 440px;
  margin-bottom: 4rem;
  line-height: 1.7;
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border);
}
.cap-card {
  padding: 2rem;
  border: var(--border);
  margin: -1px;
  transition: background 0.15s, color 0.15s;
  position: relative;
  overflow: hidden;
}
.cap-card:hover {
  background: var(--black);
  color: var(--white);
}
.cap-card:hover .cap-icon { border-color: var(--red); color: var(--red); }
.cap-card:hover .cap-title { color: var(--white); }
.cap-card:hover .cap-desc { color: rgba(255,255,255,0.55); }
.cap-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.cap-icon {
  width: 48px; height: 48px;
  border: 2px solid var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  transition: border-color 0.15s, color 0.15s;
}
.cap-title {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.cap-desc {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.6;
  transition: color 0.15s;
}

/* ─── RESULTS SECTION ───────────────────────── */
#results {
  background: var(--black);
  padding: 120px 0;
}
.results-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.results-headline {
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--white);
  margin-bottom: 4rem;
}
.big-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid rgba(255,255,255,0.1);
  margin-bottom: 5rem;
}
.big-stat {
  padding: 3rem 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.big-stat-num {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  color: var(--red);
  line-height: 1;
  display: block;
}
.big-stat-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.testimonial {
  border: 2px solid rgba(255,255,255,0.12);
  padding: 2.5rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--display);
  font-size: 6rem;
  color: var(--red);
  line-height: 0;
  position: absolute;
  top: 2.5rem;
  left: 2rem;
  opacity: 0.4;
}
.testimonial-text {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}
.testimonial-author {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--red);
  letter-spacing: 0.05em;
}

/* ─── PROCESS SECTION ───────────────────────── */
#process {
  background: var(--white);
  padding: 120px 0;
}
.process-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.35);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.process-headline {
  font-size: clamp(3rem, 6vw, 6rem);
  margin-bottom: 4rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: var(--border);
}
.process-step {
  padding: 2.5rem 1.5rem;
  border: var(--border);
  margin: -1px;
  position: relative;
}
.step-num {
  font-family: var(--display);
  font-size: 5rem;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.5rem;
}
.step-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}
.step-title {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.step-desc {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
}

/* ─── PRICING SECTION ───────────────────────── */
#pricing {
  background: var(--black);
  padding: 120px 0;
}
.pricing-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pricing-headline {
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.pricing-sub {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.pricing-card {
  border: 2px solid rgba(255,255,255,0.15);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--red); }
.pricing-card.featured {
  border-color: var(--red);
  background: rgba(255,68,68,0.05);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border: 2px solid var(--black);
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--display);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pricing-period {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.pricing-tagline {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
  line-height: 1.5;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
}
.pricing-features li {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-features li::before {
  content: '→';
  color: var(--red);
  font-size: 0.8rem;
}
.pricing-guarantee {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
}
.pricing-guarantee span { color: var(--red); }

/* ─── FAQ SECTION ───────────────────────────── */
#faq {
  background: var(--white);
  padding: 120px 0;
}
.faq-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.35);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.faq-headline {
  font-size: clamp(3rem, 6vw, 6rem);
  margin-bottom: 4rem;
}
.faq-list { max-width: 800px; }
.faq-item {
  border: var(--border);
  margin-bottom: -1px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: none;
  transition: background 0.15s, color 0.15s;
}
.faq-question:hover { background: var(--black); color: var(--white); }
.faq-question:hover .faq-icon { color: var(--red); }
.faq-icon {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s, color 0.15s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.03);
}
.faq-answer-inner {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.8;
  padding: 1.5rem 2rem;
}

/* ─── FINAL CTA ─────────────────────────────── */
#cta {
  background: var(--red);
  padding: 140px 0;
  text-align: center;
  border-top: var(--border);
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: 'NERD\AHEROES';
  white-space: pre;
  font-family: var(--display);
  font-size: 25vw;
  color: rgba(0,0,0,0.06);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -0.02em;
  line-height: 0.85;
  pointer-events: none;
}
.cta-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}
.cta-headline {
  font-size: clamp(3rem, 7vw, 8rem);
  color: var(--black);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.cta-sub {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ─── FOOTER ────────────────────────────────── */
#footer {
  background: var(--black);
  padding: 3rem 2rem;
  border-top: 3px solid var(--red);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.footer-logo span { color: var(--red); }
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--red); }
.footer-copy {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* ─── Scroll Animations ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Keyframe Animations ───────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { width: 40px; }
  50%       { width: 60px; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,68,68,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(255,68,68,0); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glitch {
  0%   { transform: translate(0); }
  20%  { transform: translate(-2px, 2px); }
  40%  { transform: translate(2px, -2px); }
  60%  { transform: translate(-1px, 1px); }
  80%  { transform: translate(1px, -1px); }
  100% { transform: translate(0); }
}
.glitch-hover:hover { animation: glitch 0.3s steps(1) infinite; }

/* ─── RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .hamburger { display: flex; }

  .stats-grid { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr 1fr; }
  .big-stats { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
}
@media (max-width: 600px) {
  .capabilities-grid { grid-template-columns: 1fr; }
  .big-stats { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
