*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1a2d4f;
  --navy-deep: #0d1b35;
  --navy-mid: #223660;
  --red: #bf1f3a;
  --red-light: #e8253f;
  --bg: #f0f4f8;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
}
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 32px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.25s, box-shadow 0.25s;
}
nav.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.nav-logo { color: #fff; font-size: 1.25rem; font-weight: 800; letter-spacing: -0.5px; text-decoration: none; transition: color 0.25s; }
nav.scrolled .nav-logo { color: var(--navy); }
.nav-logo span { color: var(--red); }
.nav-center { display: flex; align-items: center; gap: 4px; }
.nav-link { color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 500; text-decoration: none; padding: 8px 14px; border-radius: 8px; transition: all 0.15s; }
nav.scrolled .nav-link { color: var(--muted); }
.nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
nav.scrolled .nav-link:hover { color: var(--navy); background: var(--bg); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-app-btn {
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); text-decoration: none;
  padding: 8px 16px; border: 1px solid rgba(255,255,255,0.25); border-radius: 8px; transition: all 0.15s;
}
nav.scrolled .nav-app-btn { color: var(--muted); border-color: var(--border); }
.nav-app-btn:hover { color: white; border-color: rgba(255,255,255,0.6); }
nav.scrolled .nav-app-btn:hover { color: var(--navy); border-color: var(--navy); background: var(--bg); }
.nav-cta {
  background: var(--red); color: #fff; border: none; padding: 9px 20px;
  border-radius: 8px; font-size: 0.82rem; font-weight: 700;
  text-decoration: none; transition: background 0.15s, transform 0.1s;
}
.nav-cta:hover { background: var(--red-light); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  background: var(--navy-deep);
  min-height: 100vh;
  padding: 120px 32px 80px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(191,31,58,0.14) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: orbDrift 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(66,102,220,0.1) 0%, transparent 70%);
  bottom: 0; left: -80px;
  animation: orbDrift 18s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(191,31,58,0.08) 0%, transparent 70%);
  bottom: 100px; right: 30%;
  animation: orbDrift 10s ease-in-out infinite 3s;
}
.hero-inner {
  max-width: 1100px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(191,31,58,0.18); border: 1px solid rgba(191,31,58,0.35);
  color: #fca5a5; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 28px;
}
.hero-badge::before { content: '✦'; font-size: 0.6rem; }
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -1.5px;
  color: #fff; margin-bottom: 22px;
}
.hero h1 em { color: #ff8a96; font-style: normal; }
.hero p { color: rgba(255,255,255,0.62); font-size: 1.05rem; max-width: 440px; margin-bottom: 38px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--red); color: #fff; padding: 14px 32px;
  border-radius: 10px; font-size: 1rem; font-weight: 700;
  text-decoration: none; transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(191,31,58,0.4);
}
.btn-hero-primary:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(191,31,58,0.5); }
.btn-hero-secondary {
  background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2); padding: 14px 32px;
  border-radius: 10px; font-size: 1rem; font-weight: 600;
  text-decoration: none; transition: all 0.15s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.4); }

/* ── App mockup ── */
.hero-visual { display: flex; justify-content: flex-end; animation: heroVisualIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both 0.2s; }
.mockup-window {
  width: 100%; max-width: 460px;
  background: #131f35; border-radius: 16px; overflow: hidden;
  box-shadow: 0 48px 96px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
  animation: mockupFloat 8s ease-in-out infinite 1.2s;
}
.mockup-chrome { background: #1a2d4f; padding: 10px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.chrome-dots { display: flex; gap: 5px; }
.chrome-dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.chrome-dots i:nth-child(1) { background: #ef4444; }
.chrome-dots i:nth-child(2) { background: #f59e0b; }
.chrome-dots i:nth-child(3) { background: #22c55e; }
.chrome-url { flex: 1; background: rgba(255,255,255,0.08); border-radius: 6px; padding: 4px 12px; font-size: 0.7rem; color: rgba(255,255,255,0.35); text-align: center; }
.mockup-app { display: flex; height: 300px; }
.mockup-sidebar { width: 56px; background: #0d1b35; display: flex; flex-direction: column; align-items: center; padding: 14px 0; gap: 12px; border-right: 1px solid rgba(255,255,255,0.06); }
.m-logo { width: 30px; height: 30px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 800; color: white; margin-bottom: 8px; }
.m-nav-item { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; }
.m-nav-item.m-active { background: rgba(255,255,255,0.14); }
.m-nav-icon { width: 14px; height: 2px; background: rgba(255,255,255,0.4); border-radius: 1px; position: relative; }
.m-nav-icon::before, .m-nav-icon::after { content: ''; position: absolute; left: 0; width: 14px; height: 2px; background: rgba(255,255,255,0.4); border-radius: 1px; }
.m-nav-icon::before { top: -4px; } .m-nav-icon::after { top: 4px; }
.m-nav-item.m-active .m-nav-icon,
.m-nav-item.m-active .m-nav-icon::before,
.m-nav-item.m-active .m-nav-icon::after { background: white; }
.mockup-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.m-topbar { background: #1a2d4f; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.07); flex-shrink: 0; }
.m-topbar-title { width: 40px; height: 8px; background: rgba(255,255,255,0.5); border-radius: 4px; }
.m-tabs { display: flex; gap: 4px; }
.m-tab { width: 24px; height: 22px; border-radius: 4px; background: rgba(255,255,255,0.07); }
.m-tab.m-tab-active { background: rgba(255,255,255,0.18); }
.m-content { flex: 1; padding: 12px; overflow: hidden; }
.m-stats { display: flex; gap: 6px; margin-bottom: 10px; }
.m-stat { flex: 1; background: rgba(255,255,255,0.07); border-radius: 6px; padding: 6px 8px; }
.m-stat-num { width: 20px; height: 8px; background: rgba(255,255,255,0.6); border-radius: 3px; margin-bottom: 4px; }
.m-stat-label { width: 30px; height: 5px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.m-stat.m-stat-green .m-stat-num { background: #22c55e; }
.m-dept-card { background: rgba(255,255,255,0.06); border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.m-dept-header { height: 20px; padding: 0 8px; display: flex; align-items: center; gap: 6px; border-left: 3px solid; }
.m-dept-header.c1 { border-color: #6366f1; background: rgba(99,102,241,0.12); }
.m-dept-header.c2 { border-color: #f59e0b; background: rgba(245,158,11,0.12); }
.m-dept-dot { width: 18px; height: 4px; border-radius: 2px; }
.c1 .m-dept-dot { background: rgba(99,102,241,0.7); }
.c2 .m-dept-dot { background: rgba(245,158,11,0.7); }
.m-dept-label { width: 36px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 2px; }
.m-shift { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.m-shift:last-child { border-bottom: none; }
.m-shift-times { display: flex; flex-direction: column; gap: 2px; min-width: 32px; }
.m-shift-time-line { width: 30px; height: 4px; background: rgba(255,255,255,0.55); border-radius: 2px; }
.m-bar-wrap { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.m-bar-fill { height: 100%; border-radius: 2px; transform-origin: left; animation: fillBar 1s ease both; }
.m-bar-fill.full    { background: #22c55e; animation-delay: 0.8s; }
.m-bar-fill.partial { background: #f59e0b; animation-delay: 1s; }
.m-bar-fill.empty   { background: #ef4444; animation-delay: 1.2s; }
.m-pill { width: 28px; height: 10px; border-radius: 10px; }
.m-pill.published { background: rgba(99,102,241,0.4); }
.m-pill.active    { background: rgba(245,158,11,0.5); animation: statusPulse 2s infinite; }
.m-pill.draft     { background: rgba(255,255,255,0.15); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 32px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.stat-item { padding: 6px 36px; text-align: center; font-size: 0.9rem; color: var(--muted); }
.stat-item strong { color: var(--navy); font-weight: 800; }
.stat-sep { width: 1px; height: 28px; background: var(--border); }

/* ── SECTIONS ── */
.section { padding: 96px 32px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); letter-spacing: -0.8px; margin-bottom: 14px; line-height: 1.2; }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 520px; line-height: 1.7; }

/* ── FEATURE BENTO ── */
.features-bg { background: var(--white); }
.features-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 52px; }
.feature-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 18px;
  padding: 32px 28px; transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-3px); background: white; }
.feature-card.card-large { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.feature-icon-wrap { width: 48px; height: 48px; border-radius: 14px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; }
.feature-card.card-large .feature-icon-wrap { width: 56px; height: 56px; border-radius: 16px; }
.icon-red    { background: rgba(191,31,58,0.1);   color: var(--red); }
.icon-blue   { background: rgba(99,102,241,0.1);  color: #6366f1; }
.icon-amber  { background: rgba(245,158,11,0.1);  color: #d97706; }
.icon-green  { background: rgba(5,150,105,0.1);   color: #059669; }
.icon-purple { background: rgba(139,92,246,0.1);  color: #7c3aed; }
.icon-teal   { background: rgba(20,184,166,0.1);  color: #0d9488; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.2px; }
.feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.feature-card.card-large h3 { font-size: 1.2rem; }
.feature-card.card-large p  { font-size: 0.9rem; }

/* Mini schedule illustration */
.feature-mini-sched { background: var(--navy-deep); border-radius: 12px; padding: 16px; }
.fms-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.fms-row:last-child { margin-bottom: 0; }
.fms-time { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.45); min-width: 44px; font-variant-numeric: tabular-nums; }
.fms-bar { flex: 1; height: 8px; border-radius: 4px; position: relative; overflow: hidden; }
.fms-fill { position: absolute; left: 0; top: 0; height: 100%; border-radius: 4px; animation: fillBar 0.9s ease both; }
.fms-count { font-size: 0.65rem; font-weight: 700; min-width: 24px; text-align: right; }
.fms-pill { font-size: 0.58rem; font-weight: 700; padding: 2px 7px; border-radius: 20px; }
.pill-pub { background: rgba(99,102,241,0.25); color: #a5b4fc; }
.pill-act { background: rgba(245,158,11,0.25); color: #fcd34d; }
.pill-dft { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); }

/* ── PRICING ── */
.pricing-bg { background: var(--navy-deep); color: white; }
.pricing-bg .section-title { color: white; }
.pricing-bg .section-sub { color: rgba(255,255,255,0.5); }
.pricing-toggle { display: flex; background: rgba(255,255,255,0.08); border-radius: 12px; padding: 4px; width: fit-content; gap: 2px; margin: 32px 0; }
.pricing-toggle-btn {
  padding: 9px 22px; border-radius: 9px; border: none;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  background: transparent; color: rgba(255,255,255,0.5);
  transition: all 0.18s; font-family: inherit;
}
.pricing-toggle-btn.active { background: white; color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.pricing-save-badge { background: #059669; color: white; font-size: 0.62rem; font-weight: 800; padding: 2px 7px; border-radius: 5px; margin-left: 6px; vertical-align: middle; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.pricing-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 32px 28px; position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.3); }
.pricing-card.popular { background: white; color: var(--text); border-color: transparent; box-shadow: 0 12px 48px rgba(0,0,0,0.35); }
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: white; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 16px;
  border-radius: 20px; white-space: nowrap;
}
.pricing-tier { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 10px; }
.pricing-card.popular .pricing-tier { color: var(--muted); }
.pricing-price { font-size: 2.8rem; font-weight: 900; color: white; line-height: 1; margin-bottom: 6px; letter-spacing: -1.5px; }
.pricing-card.popular .pricing-price { color: var(--navy); }
.pricing-price sup { font-size: 1.2rem; font-weight: 700; vertical-align: super; letter-spacing: 0; }
.pricing-price span { font-size: 1rem; font-weight: 500; opacity: 0.45; letter-spacing: 0; }
.pricing-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-bottom: 24px; min-height: 18px; }
.pricing-card.popular .pricing-note { color: var(--muted); }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  font-size: 0.875rem; color: rgba(255,255,255,0.75);
  padding: 8px 0; display: flex; align-items: flex-start;
  gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.07); line-height: 1.4;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-card.popular .pricing-features li { color: var(--text); border-bottom-color: var(--border); }
.pricing-features li::before { content: "✓"; color: #4ade80; font-weight: 800; flex-shrink: 0; margin-top: 1px; font-size: 0.85rem; }
.pricing-cta { display: block; text-align: center; padding: 13px 20px; border-radius: 12px; font-size: 0.9rem; font-weight: 700; text-decoration: none; transition: all 0.15s; }
.pricing-cta-ghost { border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }
.pricing-cta-ghost:hover { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.5); }
.pricing-cta-solid { background: var(--red); color: white; box-shadow: 0 4px 16px rgba(191,31,58,0.4); }
.pricing-cta-solid:hover { background: var(--red-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(191,31,58,0.5); }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, #8f1127 0%, var(--red) 50%, #e8253f 100%);
  padding: 88px 32px; text-align: center; color: white;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.12) 0%, transparent 60%);
}
.cta-strip-inner { position: relative; z-index: 1; }
.cta-strip h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 36px; }
.btn-cta {
  display: inline-block; background: white; color: var(--red);
  padding: 15px 40px; border-radius: 12px; font-size: 1rem;
  font-weight: 800; text-decoration: none; letter-spacing: -0.2px;
  transition: transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.28); }
.cta-sub { margin-top: 16px; font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ── FOOTER ── */
footer { background: var(--navy-deep); padding: 64px 32px 36px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand .logo { font-size: 1.2rem; font-weight: 800; color: white; display: inline-block; margin-bottom: 12px; }
.footer-brand .logo span { color: var(--red); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.38); line-height: 1.6; max-width: 220px; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.38); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ── HERO ANIMATIONS ── */
.hero-text-content { animation: heroTextIn 0.7s ease both; }
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  33%  { transform: translate(28px, -20px); }
  66%  { transform: translate(-16px, 12px); }
}
@keyframes mockupFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes fillBar {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-visual { justify-content: center; }
  .hero p { margin: 0 auto 38px; }
  .hero-badge { margin: 0 auto 28px; display: inline-flex; }
  .hero-actions { justify-content: center; }
  .features-bento { grid-template-columns: 1fr 1fr; }
  .feature-card.card-large { grid-column: span 2; grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-center { display: none; }
}
@media (max-width: 600px) {
  .features-bento { grid-template-columns: 1fr; }
  .feature-card.card-large { grid-column: span 1; grid-template-columns: 1fr; }
  .stats-strip { flex-direction: column; gap: 8px; }
  .stat-sep { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  nav { padding: 0 20px; }
  .hero { padding: 100px 20px 64px; }
}
