:root {
  --crew-orange: #FF4D00;
  --teal: #00F0FF;
  --bg-dark: #0a0a0a;
  --bg-header: #111111;
  --text-primary: #ffffff;
  --text-muted: #b0b0b0;
}

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

body {
  font-family: 'Chakra Petch', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ───────────────────────────────────────
   Header
   ─────────────────────────────────────── */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: var(--bg-header);
  border-bottom: 2px solid var(--crew-orange);
}

/* ── Logo with glow ── */

.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  color: var(--crew-orange);
  text-decoration: none;
  text-shadow:
    0 0 7px var(--crew-orange),
    0 0 20px var(--crew-orange),
    0 0 40px rgba(255, 77, 0, 0.5),
    0 0 80px rgba(255, 77, 0, 0.25);
  transition: text-shadow 0.3s ease;
}

.logo:hover {
  text-shadow:
    0 0 10px var(--crew-orange),
    0 0 30px var(--crew-orange),
    0 0 60px rgba(255, 77, 0, 0.6),
    0 0 100px rgba(255, 77, 0, 0.35);
}

/* ── Desktop Nav ── */

.nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ── GET APP Button ── */

.btn-get-app {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--crew-orange);
  text-decoration: none;
  border: 2px solid var(--crew-orange);
  border-radius: 4px;
  padding: 8px 20px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-get-app:hover {
  background: var(--crew-orange);
  color: var(--bg-dark);
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.4);
}

/* ── Mobile Menu Button ── */

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav Drawer ── */

.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg-header);
  border-bottom: 2px solid var(--crew-orange);
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav.open {
  max-height: 300px;
}

.mobile-nav-link {
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-nav-link.btn-get-app {
  border: none;
  border-radius: 0;
  color: var(--crew-orange);
  padding: 16px 0;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .header {
    padding: 0 20px;
  }

  .nav,
  .header .btn-get-app {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }
}

/* ───────────────────────────────────────
   Interactive Map Tutorial
   ─────────────────────────────────────── */

.tutorial-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 64px);
  height: calc(100dvh - 64px);
  overflow: hidden;
  background: var(--bg-dark);
}

.tutorial-map {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ── Grain overlay ── */

.tutorial-grain {
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── Vignette ── */

.tutorial-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
}

/* ── Skip button ── */

.tutorial-skip {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 30;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 8px 18px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease, color 0.2s ease, border-color 0.2s ease;
}

.tutorial-skip.visible {
  opacity: 1;
}

.tutorial-skip:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ── Girl character ── */

.tutorial-girl {
  position: absolute;
  bottom: 0;
  right: 4%;
  z-index: 10;
  height: 55vh;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.6));
}

.tutorial-girl.visible {
  transform: translateY(0);
}

.girl-pose {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.girl-pose.active {
  opacity: 1;
}

/* ── Dialogue panel (glassmorphism) ── */

.tutorial-dialogue {
  position: absolute;
  bottom: 48px;
  left: 40px;
  z-index: 20;
  max-width: 500px;
  background: rgba(8, 8, 12, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 240, 255, 0.12);
  border-left: 3px solid var(--teal);
  border-radius: 10px;
  padding: 26px 30px;
  box-shadow:
    0 0 40px rgba(0, 0, 0, 0.4),
    inset 0 0 40px rgba(0, 240, 255, 0.02);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tutorial-dialogue.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Typewriter text ── */

.tutorial-text {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-primary);
  transition: opacity 0.3s ease;
}

.tutorial-text.fading {
  opacity: 0;
}

.glow-live {
  color: var(--crew-orange);
  font-weight: 700;
  text-shadow:
    0 0 7px var(--crew-orange),
    0 0 20px var(--crew-orange),
    0 0 40px rgba(255, 77, 0, 0.4);
}

.type-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--teal);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: cursorBlink 0.6s step-end infinite;
}

@keyframes cursorBlink {
  50% { opacity: 0; }
}

/* ── Tap to continue ── */

.tutorial-advance {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--teal);
  text-align: center;
  margin-top: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tutorial-advance.visible {
  animation: tapPulse 2.2s ease-in-out infinite;
}

@keyframes tapPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

/* ── CTA buttons ── */

.tutorial-cta {
  display: none;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tutorial-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.tutorial-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: var(--crew-orange);
  color: var(--bg-dark);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 6px;
  box-shadow:
    0 0 20px rgba(255, 77, 0, 0.35),
    0 0 60px rgba(255, 77, 0, 0.15);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.tutorial-cta-btn:hover {
  box-shadow:
    0 0 30px rgba(255, 77, 0, 0.55),
    0 0 80px rgba(255, 77, 0, 0.25);
  transform: translateY(-2px);
}

.cta-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.tutorial-cta-secondary {
  text-align: center;
  margin-top: 12px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ── Custom map markers (matching iOS MapMarkerView) ── */

.meetz-marker {
  position: relative;
  width: 70px;
  height: 70px;
  cursor: pointer;
  opacity: 0;
}

.meetz-marker.show {
  opacity: 1;
}

.meetz-marker.show .marker-outer {
  animation: markerScaleIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes markerScaleIn {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.marker-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--crew-orange);
  animation: none;
}

.meetz-marker.show .marker-pulse {
  animation: markerPulse 1.6s ease-in-out infinite;
}

@keyframes markerPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.marker-outer {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--crew-orange), rgba(255, 77, 0, 0.55));
}

.meetz-marker.live .marker-outer {
  box-shadow: 0 0 14px rgba(255, 77, 0, 0.5);
}

.meetz-marker.grey .marker-outer {
  background: linear-gradient(135deg, #888, rgba(136, 136, 136, 0.55));
  box-shadow: none;
}

.marker-fill {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}

.marker-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ── Tutorial Responsive ── */

@media (max-width: 1024px) {
  .tutorial-girl {
    height: 45vh;
    right: 2%;
  }

  .tutorial-dialogue {
    max-width: 420px;
    left: 30px;
    bottom: 36px;
    padding: 22px 24px;
  }
}

@media (max-width: 768px) {
  .tutorial-girl {
    height: 40vh;
    right: 0;
  }

  .tutorial-dialogue {
    left: 14px;
    right: auto;
    bottom: 20px;
    max-width: 55%;
    padding: 20px 20px;
  }

  .tutorial-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .tutorial-skip {
    top: 14px;
    right: 14px;
    padding: 10px 18px;
    min-height: 44px;
    min-width: 44px;
  }

  .meetz-marker {
    width: 55px;
    height: 55px;
  }

  .tutorial-cta-btn {
    font-size: 0.82rem;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .tutorial-girl {
    height: 32vh;
    right: 0;
  }

  .tutorial-dialogue {
    left: 10px;
    right: auto;
    bottom: 14px;
    max-width: 60%;
    padding: 16px 16px;
  }

  .tutorial-text {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .meetz-marker {
    width: 48px;
    height: 48px;
  }

  .tutorial-cta-btn {
    font-size: 0.75rem;
    padding: 12px 14px;
    letter-spacing: 0.08em;
  }
}

/* ── Bottom fade on tutorial (blends into next section) ── */

.tutorial-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-dark) 100%);
}

/* ───────────────────────────────────────
   Built For Drivers — Feature Showcase
   ─────────────────────────────────────── */

.features-section {
  position: relative;
  padding: 100px 40px 120px;
  background: var(--bg-dark);
  overflow: hidden;
}

.features-grain {
  position: absolute;
  inset: 0;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.features-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
}

/* ── Section heading ── */

.features-heading {
  position: relative;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--text-primary);
}

.features-divider {
  position: relative;
  width: 60px;
  height: 3px;
  margin: 18px auto 0;
  background: var(--crew-orange);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 77, 0, 0.5);
}

/* ── Three-column grid ── */

.features-grid {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  margin-top: 70px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 380px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card--center {
  flex: 0 1 400px;
}

/* ── Phone mockup shell ── */

.phone-mockup {
  position: relative;
  width: 300px;
  height: 650px;
  border-radius: 46px;
  padding: 10px;
  background: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.08);
  animation: phoneFloat 6s ease-in-out infinite;
}

.feature-card--left .phone-mockup {
  animation-delay: 0s;
}

.feature-card--center .phone-mockup {
  width: 320px;
  height: 694px;
  animation-delay: -2s;
}

.feature-card--right .phone-mockup {
  animation-delay: -4s;
}

/* ── Phone screen (inner content area) ── */

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
}

.phone-screen video,
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* ── Glow variants ── */

.phone-mockup--glow {
  border-color: var(--teal);
  box-shadow:
    0 0 15px rgba(0, 240, 255, 0.3),
    0 0 40px rgba(0, 240, 255, 0.15),
    0 0 80px rgba(0, 240, 255, 0.08),
    inset 0 0 20px rgba(0, 240, 255, 0.05);
  animation: phoneFloat 6s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
}

.phone-mockup--subtle {
  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 0, 0, 0.3);
}

/* ── Floating animation ── */

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ── Glow pulse ── */

@keyframes glowPulse {
  0%, 100% {
    box-shadow:
      0 0 15px rgba(0, 240, 255, 0.3),
      0 0 40px rgba(0, 240, 255, 0.15),
      0 0 80px rgba(0, 240, 255, 0.08),
      inset 0 0 20px rgba(0, 240, 255, 0.05);
  }
  50% {
    box-shadow:
      0 0 20px rgba(0, 240, 255, 0.45),
      0 0 55px rgba(0, 240, 255, 0.25),
      0 0 100px rgba(0, 240, 255, 0.12),
      inset 0 0 30px rgba(0, 240, 255, 0.08);
  }
}

/* ── Feature labels ── */

.feature-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-align: center;
  margin-top: 28px;
}

.feature-subtitle {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ── Features Responsive ── */

@media (max-width: 1024px) {
  .features-section {
    padding: 80px 30px 100px;
  }

  .features-grid {
    gap: 30px;
  }

  .phone-mockup {
    width: 250px;
    height: 542px;
    border-radius: 40px;
  }

  .feature-card--center .phone-mockup {
    width: 270px;
    height: 585px;
  }

  .phone-screen {
    border-radius: 30px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 20px 80px;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .feature-card {
    flex: none;
    width: 100%;
    max-width: 340px;
  }

  .phone-mockup,
  .feature-card--center .phone-mockup {
    width: 280px;
    height: 607px;
    border-radius: 42px;
  }
}

@media (max-width: 480px) {
  .features-heading {
    font-size: 1.6rem;
  }

  .phone-mockup,
  .feature-card--center .phone-mockup {
    width: 240px;
    height: 520px;
    border-radius: 36px;
    padding: 8px;
  }

  .phone-screen {
    border-radius: 28px;
  }
}

/* ── Bottom fade on features section ── */

.features-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-dark) 100%);
}

/* ───────────────────────────────────────
   Join The Streets — CTA
   ─────────────────────────────────────── */

.cta-section {
  position: relative;
  padding: 60px 40px 100px;
  background: var(--bg-dark);
  display: flex;
  justify-content: center;
}

.cta-card {
  position: relative;
  width: 100%;
  max-width: 720px;
  padding: 80px 60px;
  border-radius: 20px;
  background: linear-gradient(170deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid rgba(255, 77, 0, 0.15);
  box-shadow:
    0 0 60px rgba(0, 0, 0, 0.5),
    inset 0 0 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-heading {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: var(--text-primary);
}

.cta-body {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin: 24px auto 0;
}

.cta-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 16px 44px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--bg-dark);
  text-decoration: none;
  background: var(--teal);
  border-radius: 8px;
  box-shadow:
    0 0 20px rgba(0, 240, 255, 0.35),
    0 0 60px rgba(0, 240, 255, 0.15);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.cta-download:hover {
  box-shadow:
    0 0 30px rgba(0, 240, 255, 0.55),
    0 0 80px rgba(0, 240, 255, 0.25);
  transform: translateY(-2px);
}

.cta-android {
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 18px;
  opacity: 0.6;
}

/* ── CTA Responsive ── */

@media (max-width: 768px) {
  .cta-section {
    padding: 40px 20px 80px;
  }

  .cta-card {
    padding: 60px 30px;
    border-radius: 16px;
  }

  .cta-download {
    padding: 14px 32px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .cta-card {
    padding: 50px 24px;
  }

  .cta-download {
    padding: 14px 24px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }
}

/* ───────────────────────────────────────
   Quote / Tagline
   ─────────────────────────────────────── */

.quote-section {
  position: relative;
  padding: 80px 40px;
  background: #121215;
  display: flex;
  justify-content: center;
}

.quote-card {
  position: relative;
  width: 100%;
  max-width: 660px;
  padding: 50px 60px;
  border-radius: 16px;
  border: 1px solid var(--teal);
  background: rgba(0, 240, 255, 0.02);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-mark {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--crew-orange);
  line-height: 1;
  display: block;
}

.quote-mark--open {
  text-align: center;
  margin-bottom: 12px;
}

.quote-mark--close {
  text-align: center;
  margin-top: 12px;
}

.quote-text {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

/* ── Quote Responsive ── */

@media (max-width: 768px) {
  .quote-section {
    padding: 60px 20px;
  }

  .quote-card {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .quote-card {
    padding: 32px 24px;
  }

  .quote-mark {
    font-size: 2rem;
  }
}

/* ───────────────────────────────────────
   Footer
   ─────────────────────────────────────── */

.site-footer {
  background: var(--bg-dark);
  padding: 48px 40px 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  color: var(--crew-orange);
  text-decoration: none;
  text-shadow:
    0 0 7px var(--crew-orange),
    0 0 20px var(--crew-orange),
    0 0 40px rgba(255, 77, 0, 0.4);
}

.footer-nav {
  display: flex;
  gap: 36px;
}

.footer-link {
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-social {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.footer-copy {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.5;
}

/* ── Footer Responsive ── */

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px 28px;
  }

  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-nav {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-copy {
    margin-top: 28px;
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-link {
    font-size: 0.65rem;
  }
}
