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

/* ---- Accessibility ---- */
.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;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 999;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border-radius: 0 0 0.5rem 0.5rem;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

:root {
  --navy: #060B18;
  --navy-light: #0F172A;
  --accent: #6366F1;
  --accent-light: #818CF8;
  --accent-glow: rgba(99,102,241,0.4);
  --cyan: #22D3EE;
  --safe: #10B981;
  --purple: #A78BFA;
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-60: rgba(255,255,255,0.6);
  --white-50: rgba(255,255,255,0.5);
  --white-40: rgba(255,255,255,0.4);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.08);
  --white-05: rgba(255,255,255,0.03);
}

html, body {
  overflow-x: clip;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Grid Background ---- */
/* Use a static background on body instead of a fixed overlay to avoid compositing cost */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ---- Glow Orbs ---- */
/* Using pre-blurred radial gradients instead of filter:blur for perf */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  top: -200px; left: 50%; margin-left: -300px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,211,238,0.08) 0%, transparent 70%);
  top: 400px; right: -100px;
}
.orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.08) 0%, transparent 70%);
  bottom: -100px; left: -150px;
}

section, nav, footer, main { position: relative; z-index: 1; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 1.5rem;
  background: rgba(6,11,24,0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--white-10);
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}
.logo-text {
  color: var(--white);
}
.logo-text-accent {
  background: linear-gradient(135deg, var(--accent-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sm {
  font-size: 1.25rem;
}
.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 0.55rem 1.3rem;
  border-radius: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 20px rgba(99,102,241,0.2);
}
.nav-cta:hover {
  background: var(--accent-light);
  box-shadow: 0 0 30px rgba(99,102,241,0.4);
}

/* ---- Hero ---- */
.hero {
  padding: 12rem 1.5rem 6rem;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  color: var(--accent-light);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  animation: float 3s ease-in-out infinite;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--safe);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-light), var(--cyan), var(--purple));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero .subtitle {
  font-size: 1.2rem;
  color: var(--white-50);
  max-width: 550px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent), #4F46E5);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 25px rgba(99,102,241,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(99,102,241,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* ---- Terminal Visual ---- */
.hero-visual {
  margin-top: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.hero-terminal {
  background: rgba(15,23,42,0.95);
  border: 1px solid var(--white-10);
  border-radius: 1rem;
  overflow: hidden;
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--white-10);
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot.red { background: #EF4444; }
.terminal-dot.yellow { background: #F59E0B; }
.terminal-dot.green { background: #10B981; }
.terminal-title {
  flex: 1; text-align: center;
  font-size: 0.75rem;
  color: var(--white-40);
  font-weight: 500;
}
.terminal-body {
  padding: 1.5rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.85rem;
  line-height: 1.8;
}
.terminal-line { display: flex; gap: 0.75rem; }
.terminal-prompt { color: var(--cyan); font-weight: 600; }
.terminal-text { color: var(--white-60); }
.terminal-highlight { color: var(--accent-light); }
.terminal-safe { color: var(--safe); }
.terminal-warning { color: #F59E0B; }
.terminal-cursor {
  display: inline-block;
  width: 8px; height: 16px;
  background: var(--accent-light);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 2px;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.terminal-output { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--white-10); }
.result-bar { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.bar-label { font-size: 0.8rem; color: var(--white-50); min-width: 120px; }
.bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 3px; transition: width 1.5s ease; width: 0; }
.bar-fill.high { background: linear-gradient(90deg, #EF4444, #F59E0B); }
.bar-fill.medium { background: linear-gradient(90deg, #F59E0B, var(--safe)); }
.bar-fill.low { background: linear-gradient(90deg, var(--safe), var(--cyan)); }
.bar-value { font-size: 0.8rem; font-weight: 600; min-width: 35px; text-align: right; }
.bar-value.high { color: #EF4444; }
.bar-value.medium { color: #F59E0B; }
.bar-value.low { color: var(--safe); }

/* ---- How It Works ---- */
.how-it-works { padding: 6rem 1.5rem; position: relative; }
.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-subtitle {
  text-align: center;
  color: var(--white-40);
  max-width: 500px;
  margin: 0 auto 4rem;
  font-size: 1rem;
}
.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--white-10);
  border-radius: 1.25rem;
  padding: 2.25rem;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.step-card:hover::before { opacity: 1; }
.step-card:hover {
  border-color: rgba(99,102,241,0.2);
  background: rgba(99,102,241,0.03);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), #4F46E5);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}
.step-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.step-card p { font-size: 0.9rem; color: var(--white-50); line-height: 1.65; }

/* ---- Features ---- */
.features { padding: 6rem 1.5rem; background: rgba(255,255,255,0.01); }
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--white-10);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: border-color 0.3s;
}
.feature-card:hover {
  border-color: rgba(99,102,241,0.15);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon.purple { background: rgba(167,139,250,0.1); color: var(--purple); }
.feature-icon.cyan { background: rgba(34,211,238,0.1); color: var(--cyan); }
.feature-icon.green { background: rgba(16,185,129,0.1); color: var(--safe); }
.feature-icon.blue { background: rgba(99,102,241,0.1); color: var(--accent-light); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--white-50); line-height: 1.6; }

/* ---- Pricing ---- */
.pricing { padding: 6rem 1.5rem; }
.pricing-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--white-10);
  border-radius: 1.25rem;
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s;
}
.pricing-card.featured {
  border-color: rgba(99,102,241,0.3);
  background: rgba(99,102,241,0.04);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
}
.pricing-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(99,102,241,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.pricing-price .currency { font-size: 1.5rem; }
.pricing-period {
  font-size: 0.85rem;
  color: var(--white-40);
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--white-60);
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-features li svg { color: var(--safe); flex-shrink: 0; }
.pricing-features li.disabled { color: var(--white-20); }
.pricing-features li.disabled svg { color: var(--white-20); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--white-20);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(99,102,241,0.1);
  color: var(--white);
  box-shadow: 0 0 20px rgba(99,102,241,0.15);
}
.btn-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: linear-gradient(135deg, var(--accent), #4F46E5);
  color: var(--white);
  cursor: pointer;
  transition: box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(99,102,241,0.3);
}
.btn-full:hover {
  box-shadow: 0 6px 30px rgba(99,102,241,0.5);
}

/* ---- Waitlist Modal ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(6,11,24,0.85);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--navy-light);
  border: 1px solid var(--white-10);
  border-radius: 1.25rem;
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  position: relative;
  animation: modal-in 0.3s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--white-40);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--white); }
.modal h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.modal p {
  font-size: 0.9rem;
  color: var(--white-50);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.modal-form { display: flex; flex-direction: column; gap: 0.75rem; }
.modal-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--white-10);
  border-radius: 0.6rem;
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.modal-input::placeholder { color: var(--white-20); }
.modal-input:focus { border-color: var(--accent); }
.modal-success {
  text-align: center;
  padding: 1.5rem 0;
}
.modal-success .check-circle {
  width: 56px; height: 56px;
  background: rgba(16,185,129,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.modal-success .check-circle svg { color: var(--safe); }
.modal-success h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.modal-success p {
  color: var(--white-50);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---- Social Proof ---- */
.social-proof { padding: 5rem 1.5rem; }
.proof-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.proof-value {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.proof-value.gradient {
  background: linear-gradient(135deg, var(--accent-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-label { font-size: 0.85rem; color: var(--white-40); font-weight: 500; }

/* ---- CTA ---- */
.cta { padding: 6rem 1.5rem; text-align: center; position: relative; }
.cta-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(34,211,238,0.05));
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 1.5rem;
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  position: relative;
}
.cta p {
  color: var(--white-50);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(99,102,241,0.4);
  background: rgba(99,102,241,0.06);
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(99,102,241,0.15);
  box-shadow: 0 0 25px rgba(99,102,241,0.2);
}

/* ---- Footer ---- */
.footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--white-10);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer p { font-size: 0.82rem; color: var(--white-40); }
.footer a { color: var(--accent-light); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .steps-grid, .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hero { padding: 8rem 1rem 3rem; }
  .hero h1 { font-size: clamp(2.25rem, 10vw, 4rem); }
  .hero .subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .hero-visual { margin-top: 2.5rem; }
  .hero-terminal { border-radius: 0.75rem; }
  .terminal-body { padding: 1rem; font-size: 0.75rem; }
  .bar-label { min-width: 90px; font-size: 0.7rem; }
  .bar-value { font-size: 0.7rem; min-width: 30px; }
  .result-bar { gap: 0.5rem; }
  .btn-primary { padding: 0.85rem 1.5rem; font-size: 0.95rem; }
  .nav-cta { padding: 0.45rem 0.8rem; font-size: 0.75rem; white-space: nowrap; }
  .navbar { padding: 0.75rem 1rem; }
  .logo { font-size: 1.3rem; }
  .section-label { font-size: 0.7rem; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 2.5rem; }
  .step-card, .feature-card { padding: 1.5rem; }
  .pricing-card { padding: 1.75rem; }
  .pricing-price { font-size: 2rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer p { font-size: 0.75rem; }
  .cta-card { padding: 2.5rem 1.25rem; }
  .cta h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .cta p { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-outline { justify-content: center; font-size: 0.9rem; padding: 0.85rem 1.5rem; }
  .proof-value { font-size: 2rem; }
  .proof-label { font-size: 0.75rem; }
  .how-it-works, .features, .pricing, .social-proof, .cta { padding: 4rem 1rem; }
  .modal { padding: 1.75rem; margin: 1rem; }
  .modal h2 { font-size: 1.2rem; }
  .orb { display: none; }
}

@media (max-width: 380px) {
  .hero { padding: 7rem 0.75rem 2.5rem; }
  .nav-cta { font-size: 0.7rem; padding: 0.4rem 0.6rem; }
  .logo { font-size: 1.15rem; }
  .btn-primary { padding: 0.75rem 1.25rem; font-size: 0.88rem; gap: 0.5rem; }
  .terminal-body { padding: 0.75rem; font-size: 0.7rem; }
  .bar-label { min-width: 75px; }
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }

/* Hide the old .grid-bg div since we use body::before now */
.grid-bg { display: none; }
