/* ============================================================
   CrewOS — Premium Marketing Site
   Animated gradient hero, scroll reveals, section rhythm, glow FX
   3-color: dark bg + red CTAs + orange accents + blue technical
   Bebas Neue / DM Sans / JetBrains Mono
   ============================================================ */

:root {
  --crew-dark: #1a1a2e;
  --crew-blue: #16213e;
  --crew-accent: #e94560;
  --crew-light: #f5f5f5;
  --steel: #a2a2a2;
  --concrete: #d4d4d4;
  --safety-orange: #ff6b35;
  --blueprint: #0f3460;
  --surface-0: #0d0d1a;
  --surface-1: #1e1e3a;
  --surface-2: #1a1a35;
  --surface-3: #252548;
  --surface-card: rgba(30, 38, 68, 0.7);
  --text-primary: #f0f0f0;
  --text-secondary: #d1d1d1;
  --text-muted: #8888a8;
  --border-subtle: rgba(255,255,255,0.06);
  --border-medium: rgba(255,255,255,0.14);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur-norm: 250ms;
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400; line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface-0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400; line-height: 1.0;
  letter-spacing: 0.04em;
}

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

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: 96px 0; background: #0e0e1e; }
.section--alt { background: #1a1a38; }
.section--proof { background: #0e0e1e; }
.section--cta {
  background: linear-gradient(135deg, var(--blueprint) 0%, #0a1e3d 100%);
  text-align: center;
}
@media (max-width: 767px) { .section { padding: 64px 0; } }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--safety-orange) 30%, var(--safety-orange) 70%, transparent);
  opacity: 0.3; max-width: 1200px; margin: 0 auto;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background var(--dur-norm) var(--ease-out), box-shadow var(--dur-norm) var(--ease-out);
}
.nav--scrolled {
  background: rgba(13,13,26,0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-subtle);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

/* Official CrewOS Logo — Exo 2 900 + signal bars + orange #F05A1A */
.crewos-logo {
  display: inline-flex; align-items: center;
  gap: 10px; text-decoration: none; line-height: 1;
}
.crewos-bars { display: flex; align-items: flex-end; gap: 3px; }
.crewos-bars span { display: block; width: 4px; background: #F05A1A; border-radius: 2px; }
.crewos-bars .b1 { height: 0.28em; opacity: 0.3; }
.crewos-bars .b2 { height: 0.46em; opacity: 0.6; }
.crewos-bars .b3 { height: 0.66em; }
.crewos-wordmark {
  display: inline-flex; align-items: baseline;
  font-family: 'Exo 2', sans-serif; font-weight: 900;
  font-size: 26px; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1;
}
.crewos-crew { color: #F8F8F8; }
.crewos-os-wrap { position: relative; display: inline-flex; align-items: baseline; }
.crewos-os { color: #F05A1A; }
.crewos-os-wrap::after {
  content: ''; position: absolute;
  bottom: -0.1em; left: 0; right: 0;
  height: 0.055em; background: #F05A1A; border-radius: 2px;
}
.nav__links { display: none; align-items: center; gap: 32px; list-style: none; }
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__links a {
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.85rem;
  color: var(--text-secondary); text-decoration: none; letter-spacing: 0.03em;
  text-transform: uppercase; transition: color var(--dur-fast) var(--ease-out); cursor: pointer;
}
.nav__links a:hover { color: var(--text-primary); }
.nav__cta {
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.08em;
  color: #fff; background: var(--crew-accent); border: none;
  padding: 10px 24px; border-radius: 2px; cursor: pointer; text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(233,69,96,0.3); }
.nav__mobile-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer; color: var(--text-primary);
}
@media (min-width: 768px) { .nav__mobile-toggle { display: none; } }
.nav__mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(13,13,26,0.98); backdrop-filter: blur(20px); z-index: 101;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.nav__mobile-menu.active { display: flex; }
.nav__mobile-menu a {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
  letter-spacing: 0.06em; color: var(--text-primary); text-decoration: none;
}
.nav__mobile-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--text-primary); cursor: pointer;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: 0.08em;
  padding: 15px 34px; border-radius: 2px; border: none;
  cursor: pointer; text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  white-space: nowrap; position: relative;
}
.btn:active { transform: scale(0.97); }
.btn--primary { color: #fff; background: var(--crew-accent); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(233,69,96,0.4); }
.btn--secondary { color: var(--text-primary); background: transparent; border: 1px solid rgba(255,255,255,0.2); }
.btn--secondary:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); transform: translateY(-1px); }
.btn--glow { animation: btn-glow 3s ease-in-out infinite; }
@keyframes btn-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(233,69,96,0.15), 0 4px 16px rgba(233,69,96,0.1); }
  50% { box-shadow: 0 0 40px rgba(233,69,96,0.35), 0 4px 24px rgba(233,69,96,0.2); }
}
.btn--glow:hover { animation: none; box-shadow: 0 6px 28px rgba(233,69,96,0.4); }

/* SECTION SHARED */
.section__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--safety-orange); margin-bottom: 16px;
}
.section__title { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; max-width: 700px; }
.section__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem; color: var(--text-primary); max-width: 560px; line-height: 1.7;
}

/* ============================================================ HERO */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface-0);
}

.hero__gradient {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0d0d1a 0%, #0f3460 25%, #1a1a2e 50%, #3a1020 75%, #0d0d1a 100%);
  background-size: 400% 400%;
  animation: hero-grad 18s ease infinite;
}
@keyframes hero-grad {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 0%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}

.hero__grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(15,52,96,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,52,96,0.3) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: grid-pulse 8s ease-in-out infinite;
  mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 85%);
}
@keyframes grid-pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.55; } }

.hero__noise {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px;
}

.hero__floats { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero__float {
  position: absolute; width: 32px; height: 32px;
  color: rgba(255,107,53,0.07);
  animation: float-drift 20s ease-in-out infinite;
}
.hero__float--1 { top: 12%; left: 8%; animation-delay: 0s; animation-duration: 22s; }
.hero__float--2 { top: 25%; right: 12%; animation-delay: -4s; animation-duration: 18s; width: 40px; height: 40px; }
.hero__float--3 { top: 60%; left: 5%; animation-delay: -8s; animation-duration: 24s; }
.hero__float--4 { top: 45%; right: 6%; animation-delay: -12s; animation-duration: 20s; width: 28px; height: 28px; }
.hero__float--5 { top: 15%; left: 55%; animation-delay: -2s; animation-duration: 26s; width: 36px; height: 36px; }
.hero__float--6 { top: 70%; right: 25%; animation-delay: -6s; animation-duration: 19s; }
@keyframes float-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  25% { transform: translateY(-20px) rotate(5deg); opacity: 1; }
  50% { transform: translateY(-8px) rotate(-3deg); opacity: 0.5; }
  75% { transform: translateY(-25px) rotate(2deg); opacity: 0.9; }
}

.hero__center {
  position: relative; z-index: 3; flex: 1;
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 40px; text-align: center;
}
.hero__center .container { display: flex; flex-direction: column; align-items: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--safety-orange);
  background: rgba(255,107,53,0.06);
  border: 1px solid rgba(255,107,53,0.15);
  padding: 5px 14px; border-radius: 2px; margin-bottom: 28px;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--safety-orange); animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero__title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.92; letter-spacing: 0.03em; margin-bottom: 24px;
}
.hero__title-word {
  display: inline-block; opacity: 0; transform: translateY(30px);
  animation: word-in 0.8s var(--ease-out) forwards;
  animation-delay: calc(var(--word-i, 0) * 0.12s + 0.3s);
}
@keyframes word-in { to { opacity: 1; transform: translateY(0); } }
.hero__title-accent { color: var(--crew-accent); }

.hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary); line-height: 1.7;
  max-width: 520px; margin-bottom: 40px;
}

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

.hero__product-wrap {
  position: relative; z-index: 3;
  max-width: 960px; margin: 0 auto; padding: 0 16px;
  overflow: hidden; max-height: 420px;
}
@media (max-width: 767px) { .hero__product-wrap { max-height: 240px; } }

.hero__product-glow {
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 200px;
  background: radial-gradient(ellipse, rgba(15,52,96,0.4) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero__product {
  position: relative; z-index: 1;
  transform: perspective(1200px) rotateX(8deg);
  transition: transform 1s var(--ease-out);
}
.hero__product--revealed { transform: perspective(1200px) rotateX(2deg); }

.hero__panel {
  position: relative; z-index: 3;
  border-top: 1px solid rgba(15,52,96,0.5);
  background: rgba(8,8,18,0.8); padding: 28px 0;
}
.panel__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.panel__cell {
  text-align: center; padding: 12px 0;
  border-right: 1px solid rgba(15,52,96,0.4);
}
.panel__cell:last-child { border-right: none; }
.panel__value {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: 0.05em; color: var(--text-primary); line-height: 1; margin-bottom: 6px;
}
.panel__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--safety-orange);
}
@media (max-width: 479px) {
  .panel__grid { grid-template-columns: repeat(2, 1fr); }
  .panel__cell:nth-child(2) { border-right: none; }
  .panel__cell:nth-child(3), .panel__cell:nth-child(4) { border-top: 1px solid rgba(15,52,96,0.4); }
}

/* CAPABILITIES — forward-looking, no negative framing */
.capabilities {
  display: grid; gap: 16px; margin-top: 48px;
}
@media (min-width: 640px) { .capabilities { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .capabilities { grid-template-columns: repeat(3, 1fr); } }

.capability {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--safety-orange);
  border-radius: 0 3px 3px 0;
  transition: border-color var(--dur-norm) var(--ease-out), transform var(--dur-norm) var(--ease-out);
}
.capability:hover {
  border-color: rgba(255,107,53,0.2);
  border-left-color: var(--safety-orange);
  transform: translateY(-2px);
}
.capability__icon {
  flex-shrink: 0; width: 22px; height: 22px;
  color: var(--safety-orange); margin-top: 2px;
}
.capability__text {
  font-size: 1rem; color: var(--text-primary); line-height: 1.6;
  margin: 0;
}

/* MODULES */
.modules__grid { display: grid; gap: 16px; margin-top: 48px; }
@media (min-width: 640px) { .modules__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .modules__grid { grid-template-columns: repeat(4, 1fr); } }
.module-card {
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--safety-orange);
  border-radius: 0 3px 3px 0; padding: 24px;
  transition: all var(--dur-norm) var(--ease-out);
}
.module-card:hover {
  border-left-color: var(--crew-accent);
  border-color: rgba(255,107,53,0.2);
  border-left-color: var(--crew-accent);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255,107,53,0.15), var(--shadow-md);
}
.module-card__icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px; background: rgba(255,107,53,0.08);
  color: var(--safety-orange); margin-bottom: 16px;
}
.module-card__icon svg { width: 18px; height: 18px; }
.module-card__name {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.04em; margin-bottom: 6px; text-transform: none;
}
.module-card__name span { color: var(--safety-orange); }
.module-card__desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* HOW IT WORKS */
.how__steps { display: grid; gap: 32px; margin-top: 48px; }
@media (min-width: 768px) { .how__steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.how__step { position: relative; min-height: 160px; }
.how__step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(7rem, 14vw, 10rem);
  color: rgba(255,255,255,0.04); line-height: 1; user-select: none;
  position: absolute; top: -12px; left: -4px;
  letter-spacing: 0.02em; z-index: 0;
}
.how__step-content { position: relative; z-index: 1; padding-top: 36px; }
.how__step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.06em; margin-bottom: 8px;
}
.how__step-desc { color: var(--text-secondary); line-height: 1.7; }
@media (min-width: 768px) {
  .how__step:not(:last-child)::after {
    content: ''; position: absolute;
    top: 50px; right: -12px; width: 24px; height: 1px; background: var(--border-medium);
  }
}

/* SCHEDULING SPOTLIGHT */
.spotlight {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 960px) {
  .spotlight { grid-template-columns: 380px 1fr; gap: 56px; }
}
.spotlight__copy {}
.spotlight__features {
  list-style: none; display: flex; flex-direction: column; gap: 14px;
  margin-top: 32px;
}
.spotlight__features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6;
}
.spotlight__features li::before {
  content: '';
  flex-shrink: 0; width: 6px; height: 6px;
  background: var(--safety-orange);
  border-radius: 1px;
  margin-top: 8px;
}
.spotlight__screenshot { position: relative; }
.browser-frame--spotlight {
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
  box-shadow: 0 0 50px rgba(15,52,96,0.2), 0 12px 40px rgba(0,0,0,0.5);
}

/* PROOF */
.proof__layout {}
.proof__content { max-width: 640px; }
.proof__quote { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: 0.04em; line-height: 1.05; margin-bottom: 24px; }
.proof__text { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.proof__metrics { display: flex; flex-wrap: wrap; gap: 32px; padding-top: 24px; border-top: 1px solid var(--border-subtle); }
.proof__metric-value { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 2rem; color: var(--text-primary); line-height: 1; }
.proof__metric-label { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--safety-orange); margin-top: 4px; }
.proof__screenshot { margin-top: 48px; max-width: 900px; position: relative; }
.proof__screenshot-glow {
  position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 160px;
  background: radial-gradient(ellipse, rgba(233,69,96,0.1) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.proof__caption { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.04em; margin-top: 16px; padding-left: 4px; }

/* BROWSER FRAME */
.browser-frame {
  position: relative; z-index: 1;
  background: rgba(8,8,18,0.85);
  border: 1px solid rgba(15,52,96,0.5);
  border-radius: 6px 6px 4px 4px; overflow: hidden;
  box-shadow: 0 0 40px rgba(15,52,96,0.2), 0 8px 32px rgba(0,0,0,0.5);
}
.browser-frame--proof {
  transform: perspective(1400px) rotateY(-1.5deg) rotateX(1.5deg);
  box-shadow: 0 0 60px rgba(15,52,96,0.2), 0 16px 48px rgba(0,0,0,0.5);
}
.browser-frame__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px; background: rgba(15,52,96,0.3);
  border-bottom: 1px solid rgba(15,52,96,0.4);
}
.browser-frame__dots { display: flex; gap: 5px; }
.browser-frame__dots span { width: 8px; height: 8px; border-radius: 50%; }
.browser-frame__dots span:nth-child(1) { background: #e94560; }
.browser-frame__dots span:nth-child(2) { background: #ff6b35; }
.browser-frame__dots span:nth-child(3) { background: #4ade80; }
.browser-frame__url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.03em;
  background: rgba(0,0,0,0.2); padding: 3px 10px; border-radius: 3px;
  flex: 1; max-width: 280px;
}
.browser-frame__viewport { line-height: 0; }
.browser-frame__viewport img { width: 100%; height: auto; display: block; }

/* CTA */
.cta-band__title { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-band__sub { font-size: 1.1rem; color: rgba(240,240,240,0.7); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band__form { display: flex; flex-direction: column; gap: 8px; max-width: 440px; margin: 0 auto; }
@media (min-width: 480px) { .cta-band__form { flex-direction: row; } }
.cta-band__input {
  flex: 1; font-family: 'DM Sans', sans-serif; font-size: 1rem;
  padding: 14px 16px; background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 2px;
  color: var(--text-primary); outline: none;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.cta-band__input::placeholder { color: rgba(255,255,255,0.35); }
.cta-band__input:focus { border-color: var(--safety-orange); }

/* FOOTER */
.footer { padding: 48px 0; border-top: 1px solid var(--border-subtle); }
.footer__inner { display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center; }
@media (min-width: 768px) { .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__brand { display: flex; flex-direction: column; gap: 8px; align-items: center; }
@media (min-width: 768px) { .footer__brand { align-items: flex-start; } }
.footer__tagline { font-size: 0.85rem; color: var(--text-muted); }
.footer__links { display: flex; gap: 32px; list-style: none; }
.footer__links a { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.85rem; color: var(--text-secondary); text-decoration: none; text-transform: uppercase; letter-spacing: 0.03em; transition: color var(--dur-fast) var(--ease-out); cursor: pointer; }
.footer__links a:hover { color: var(--text-primary); }
.footer__copy { font-size: 0.75rem; color: var(--text-muted); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > .reveal { transition-delay: calc(var(--reveal-i, 0) * 100ms); }

/* GRAIN */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px;
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .hero__title-word { opacity: 1; transform: none; }
  .hero__gradient, .hero__grid, .hero__float, .btn--glow { animation: none; }
  .hero__grid { opacity: 0.4; }
  html { scroll-behavior: auto; }
}

:focus-visible { outline: 2px solid var(--crew-accent); outline-offset: 2px; }
::selection { background: rgba(233,69,96,0.3); color: var(--text-primary); }
