/* Space — thème cosmos / holographique */

:root {
  --bg-deep: #000000;
  --bg-elevated: rgba(8, 10, 22, 0.92);
  --bg-card: rgba(10, 14, 28, 0.72);
  --navy-mid: #05060d;
  --accent-cyan: #5ce1ff;
  --accent-violet: #b388ff;
  --accent-pink: #ff7ec4;
  --accent-mint: #7dffb3;
  --text-bright: #e8f4ff;
  --text: #dce8f8;
  --text-muted: rgba(220, 232, 248, 0.62);
  --border-subtle: rgba(120, 200, 255, 0.2);
  --border-glow: rgba(100, 220, 255, 0.45);
  --holo-shine: linear-gradient(
    120deg,
    #5ce1ff 0%,
    #b388ff 40%,
    #ff7ec4 72%,
    #7dffb3 100%
  );
  --font-display: "Syne", system-ui, sans-serif;
  --font-serif: "DM Sans", system-ui, sans-serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.65);
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(90, 60, 160, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 0% 80%, rgba(40, 140, 200, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse 60% 40% at 100% 60%, rgba(200, 80, 160, 0.08) 0%, transparent 40%),
    var(--bg-deep);
  min-height: 100vh;
}

.cosmic-aurora {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  background:
    radial-gradient(ellipse 90% 70% at 15% 20%, rgba(120, 90, 220, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 88% 75%, rgba(50, 180, 220, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(200, 100, 180, 0.08) 0%, transparent 45%);
}

@media (prefers-reduced-motion: no-preference) {
  .cosmic-aurora {
    animation: auroraDrift 50s ease-in-out infinite alternate;
  }

  @keyframes auroraDrift {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 0.5;
    }
    50% {
      opacity: 0.62;
    }
    100% {
      transform: translate(-2%, 1%) scale(1.04);
      opacity: 0.52;
    }
  }
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.045;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--text-bright);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(3, 5, 12, 0.94) 0%, rgba(3, 6, 16, 0.68) 70%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 10, 22, 0.9);
  border-bottom-color: var(--border-subtle);
}

.header-inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand:hover {
  color: var(--text-bright);
}

.brand-mark {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 2.5rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(6, 10, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(120, 200, 255, 0.12);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 16% 18%;
  border-radius: 7px;
  border: 1px solid rgba(120, 200, 255, 0.18);
  pointer-events: none;
  z-index: 2;
}

.brand-mark-img {
  display: block;
  width: 2.65rem;
  height: 2.65rem;
  object-fit: contain;
  position: relative;
  z-index: 0;
  transform: translateY(14%);
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  box-shadow:
    0 0 0 1px rgba(180, 220, 255, 0.22),
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(140, 200, 255, 0.2);
  transform: scale(1.04);
}

.brand:hover .brand-mark-img,
.brand:focus-visible .brand-mark-img {
  transform: translateY(-38%);
}

.brand:active .brand-mark-img {
  transform: translateY(-48%);
  transition-duration: 0.28s;
}

@media (prefers-reduced-motion: no-preference) {
  .brand-mark {
    animation: brandIdle 8s ease-in-out infinite;
  }

  .brand.is-launching .brand-mark-img {
    animation: brandMarkLaunch 0.75s cubic-bezier(0.33, 1, 0.32, 1) both;
  }

  @keyframes brandMarkLaunch {
    0% {
      transform: translateY(14%);
    }
    35% {
      transform: translateY(-72%);
    }
    65% {
      transform: translateY(-18%);
    }
    100% {
      transform: translateY(14%);
    }
  }

  .brand:hover.is-launching .brand-mark-img,
  .brand:focus-visible.is-launching .brand-mark-img {
    animation-name: brandMarkLaunchHover;
  }

  @keyframes brandMarkLaunchHover {
    0% {
      transform: translateY(-38%);
    }
    35% {
      transform: translateY(-78%);
    }
    65% {
      transform: translateY(-28%);
    }
    100% {
      transform: translateY(-38%);
    }
  }

  @keyframes brandIdle {
    0%,
    100% {
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 28px rgba(120, 200, 255, 0.12);
    }
    50% {
      box-shadow:
        0 0 0 1px rgba(180, 200, 255, 0.2),
        0 10px 36px rgba(0, 0, 0, 0.48),
        0 0 32px rgba(160, 120, 255, 0.18);
    }
  }
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--holo-shine);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
  .brand-name {
    animation: brandNameHolo 14s ease-in-out infinite;
  }

  @keyframes brandNameHolo {
    0%,
    100% {
      background-position: 0% center;
    }
    50% {
      background-position: 100% center;
    }
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list a {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.35s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.85;
}

.nav-list a:hover {
  color: var(--text-bright);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta::after {
  display: none;
}

.nav-cta {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: rgba(100, 210, 255, 0.06);
  color: var(--text-bright) !important;
}

.nav-cta:hover {
  border-color: rgba(100, 210, 255, 0.45);
  background: rgba(100, 210, 255, 0.12);
}

@media (prefers-reduced-motion: no-preference) {
  .nav-cta {
    animation: navCtaHalo 5s ease-in-out infinite;
  }

  @keyframes navCtaHalo {
    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(100, 210, 255, 0);
    }
    50% {
      box-shadow: 0 0 20px 1px rgba(100, 210, 255, 0.12);
    }
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 1px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: center;
  padding-top: var(--header-h);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  inset: -4% -2%;
  will-change: transform;
}

.hero-starfield {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  background-color: #000000;
  background-image:
    radial-gradient(1.2px 1.2px at 8% 12%, rgba(255, 255, 255, 0.95), transparent),
    radial-gradient(1px 1px at 18% 44%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1.5px 1.5px at 32% 8%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1px 1px at 45% 62%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1px 1px at 58% 22%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.2px 1.2px at 72% 78%, rgba(255, 255, 255, 0.95), transparent),
    radial-gradient(1px 1px at 88% 35%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 12% 88%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 28% 28%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1.2px 1.2px at 52% 92%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1px 1px at 68% 48%, rgba(255, 255, 255, 0.72), transparent),
    radial-gradient(1px 1px at 95% 68%, rgba(255, 255, 255, 0.78), transparent),
    radial-gradient(1px 1px at 5% 52%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 38% 72%, rgba(255, 255, 255, 0.88), transparent),
    radial-gradient(1px 1px at 82% 12%, rgba(255, 255, 255, 0.82), transparent),
    radial-gradient(1px 1px at 22% 96%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 48% 38%, rgba(255, 255, 255, 0.68), transparent),
    radial-gradient(1.2px 1.2px at 92% 88%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1px 1px at 62% 8%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1px 1px at 15% 68%, rgba(255, 255, 255, 0.65), transparent);
  background-size: 100% 100%;
}

.twinkle-star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 4px rgba(150, 220, 255, 0.8);
  opacity: var(--o, 0.55);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .twinkle-star {
    animation: twinkle 3.5s ease-in-out infinite;
  }

  @keyframes twinkle {
    0%,
    100% {
      opacity: 0.2;
      transform: scale(0.85);
    }
    50% {
      opacity: 1;
      transform: scale(1.1);
    }
  }

  .hero-starfield {
    animation: starfieldDrift 80s linear infinite;
  }

  @keyframes starfieldDrift {
    0% {
      filter: brightness(1);
    }
    50% {
      filter: brightness(1.08);
    }
    100% {
      filter: brightness(1);
    }
  }
}

.hero-nebula {
  position: absolute;
  inset: -15% -10%;
  background:
    radial-gradient(ellipse 55% 45% at 70% 25%, rgba(120, 80, 200, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(40, 140, 200, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 85% 75%, rgba(200, 100, 180, 0.12) 0%, transparent 45%);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.85;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-nebula {
    animation: nebulaDrift 42s ease-in-out infinite alternate;
  }

  @keyframes nebulaDrift {
    0% {
      transform: translate(0, 0) scale(1) rotate(0deg);
      opacity: 0.82;
    }
    100% {
      transform: translate(-3%, 2%) scale(1.07) rotate(1.5deg);
      opacity: 0.94;
    }
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 42%, rgba(0, 0, 0, 0.88) 100%),
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(120, 100, 255, 0.09) 0%, transparent 52%),
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(80, 200, 255, 0.06) 0%, transparent 50%);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-overlay {
    animation: heroOverlayBreath 14s ease-in-out infinite alternate;
  }
}

@keyframes heroOverlayBreath {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.92;
  }
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.35;
}

.hero-orb--1 {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  top: 10%;
  right: 8%;
  background: radial-gradient(circle, rgba(180, 140, 255, 0.38) 0%, rgba(100, 210, 255, 0.18) 45%, transparent 70%);
  animation: orbFloat1 18s ease-in-out infinite;
}

.hero-orb--2 {
  width: min(35vw, 320px);
  height: min(35vw, 320px);
  bottom: 18%;
  left: 5%;
  background: radial-gradient(circle, rgba(80, 200, 255, 0.22) 0%, transparent 70%);
  animation: orbFloat2 22s ease-in-out infinite;
}

.hero-orb--3 {
  width: min(28vw, 260px);
  height: min(28vw, 260px);
  top: 40%;
  left: 35%;
  background: radial-gradient(circle, rgba(255, 120, 200, 0.2) 0%, rgba(100, 210, 255, 0.14) 50%, transparent 65%);
  animation: orbFloat3 26s ease-in-out infinite;
  opacity: 0.28;
}

@keyframes orbFloat1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-4%, 6%) scale(1.08);
  }
}

@keyframes orbFloat2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(5%, -4%) scale(1.05);
  }
}

@keyframes orbFloat3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(3%, -3%);
  }
  66% {
    transform: translate(-2%, 2%);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 92vw);
  margin-inline: auto;
  padding: 4rem 0 5.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: end;
}

.hero-copy {
  min-width: 0;
}

.hero-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-rocket-tile {
  position: relative;
  width: min(100%, 320px);
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(4, 6, 14, 0.92);
  border: 1px solid var(--border-subtle);
  box-shadow:
    0 0 0 1px rgba(120, 200, 255, 0.1),
    0 28px 80px rgba(0, 0, 0, 0.65),
    0 0 50px rgba(100, 200, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-rocket-tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 23px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(100, 220, 255, 0.45),
    rgba(180, 140, 255, 0.35),
    rgba(255, 120, 200, 0.3),
    rgba(100, 220, 255, 0.45)
  );
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-rocket-tile::before {
    animation: holoCardBorder 16s ease-in-out infinite;
  }

  @keyframes holoCardBorder {
    0%,
    100% {
      background-position: 0% 50%;
      opacity: 0.55;
    }
    50% {
      background-position: 100% 50%;
      opacity: 0.85;
    }
  }
}

.hero-rocket-tile__stars {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0.55;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.95), transparent),
    radial-gradient(1px 1px at 30% 65%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(200, 230, 255, 0.9), transparent),
    radial-gradient(1px 1px at 72% 48%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1px 1px at 88% 82%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 22% 88%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1.2px 1.2px at 45% 40%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1px 1px at 92% 30%, rgba(255, 255, 255, 0.7), transparent);
  pointer-events: none;
  z-index: 0;
}

.hero-rocket-stage {
  position: relative;
  z-index: 1;
  min-height: clamp(220px, 32vh, 300px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
}

.hero-rocket-bundle {
  position: relative;
  width: min(72%, 200px);
  display: flex;
  justify-content: center;
}

.hero-rocket-motion {
  position: relative;
  z-index: 2;
  transform-origin: 50% 85%;
  filter: drop-shadow(0 6px 28px rgba(100, 210, 255, 0.35)) drop-shadow(0 0 20px rgba(180, 140, 255, 0.25));
}

.hero-rocket-icon {
  display: block;
  width: 100%;
  height: auto;
  max-width: 180px;
  margin-inline: auto;
}

.hero-rocket-exhaust {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 4%;
  width: 56%;
  max-width: 100px;
  height: clamp(72px, 14vh, 100px);
  transform: translateX(-50%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
}

.hero-rocket-flame {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 42%;
  height: 100%;
  transform: translateX(-50%);
  border-radius: 50% 50% 45% 45% / 65% 65% 35% 35%;
  background: linear-gradient(
    180deg,
    rgba(255, 200, 120, 0) 0%,
    rgba(255, 150, 200, 0.35) 28%,
    rgba(100, 210, 255, 0.55) 55%,
    rgba(180, 140, 255, 0.45) 78%,
    rgba(100, 210, 255, 0.15) 100%
  );
  filter: blur(3px);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero-rocket-flame--2 {
  width: 62%;
  height: 88%;
  opacity: 0.65;
  animation-delay: -0.2s;
}

.hero-rocket-flame--3 {
  width: 28%;
  height: 72%;
  opacity: 0.5;
  filter: blur(5px);
  animation-delay: -0.45s;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-rocket-motion {
    animation: rocketTakeoff 3.4s cubic-bezier(0.42, 0, 0.2, 1) infinite;
  }

  @keyframes rocketTakeoff {
    0%,
    100% {
      transform: translateY(12px) rotate(-0.6deg);
    }
    20% {
      transform: translateY(-8px) rotate(0.4deg);
    }
    45% {
      transform: translateY(-36px) rotate(-1deg);
    }
    65% {
      transform: translateY(-18px) rotate(0.7deg);
    }
    85% {
      transform: translateY(4px) rotate(-0.3deg);
    }
  }

  .hero-rocket-flame,
  .hero-rocket-flame--2,
  .hero-rocket-flame--3 {
    animation: flamePulse 0.45s ease-in-out infinite alternate;
  }

  .hero-rocket-flame--2 {
    animation-duration: 0.38s;
  }

  .hero-rocket-flame--3 {
    animation-duration: 0.52s;
  }

  @keyframes flamePulse {
    0% {
      transform: translateX(-50%) scaleY(0.88) scaleX(1.05);
      opacity: 0.65;
    }
    100% {
      transform: translateX(-50%) scaleY(1.12) scaleX(1);
      opacity: 1;
    }
  }

  .hero-rocket-tile {
    animation: heroCardFloat 9s ease-in-out infinite;
  }

  @keyframes heroCardFloat {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }
}

.hero-kicker {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 0 1.25rem;
  color: #fff;
  text-shadow: 0 2px 48px rgba(0, 0, 0, 0.65);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-title {
    background: var(--holo-shine);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleShimmer 12s ease-in-out infinite;
  }

  @keyframes titleShimmer {
    0%,
    100% {
      background-position: 0% center;
    }
    50% {
      background-position: 100% center;
    }
  }
}

.hero-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 400;
  max-width: 36ch;
  margin: 0 0 2rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.5;
  animation: scrollHintFade 3s ease-in-out infinite;
}

@keyframes scrollHintFade {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.75;
  }
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--accent-cyan) 0%, transparent 100%);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Buttons */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  color: #030508;
  background: var(--holo-shine);
  background-size: 200% 200%;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 32px rgba(100, 210, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 10px 44px rgba(100, 210, 255, 0.45), 0 0 40px rgba(180, 140, 255, 0.2);
  color: #030508;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: no-preference) {
  .btn-primary {
    animation: btnHolo 7s ease-in-out infinite alternate;
  }

  @keyframes btnHolo {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
}

.btn-label {
  position: relative;
  z-index: 1;
}

.btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%,
  20% {
    transform: translateX(-100%);
  }
  40%,
  100% {
    transform: translateX(100%);
  }
}

.btn-ghost {
  color: var(--text-bright);
  background: rgba(12, 17, 24, 0.5);
  border-color: var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(100, 210, 255, 0.45);
  background: rgba(100, 210, 255, 0.08);
  color: #fff;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* Sections */

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-services {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--navy-mid) 50%, var(--bg-deep) 100%);
}

.section-method {
  background: var(--bg-deep);
}

.section-about {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(120, 100, 255, 0.1) 0%, transparent 50%), var(--bg-elevated);
  border-block: 1px solid var(--border-subtle);
}

.section-contact {
  padding-bottom: 6rem;
}

.section--cosmic {
  overflow: clip;
}

.section--cosmic::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.42;
  background:
    radial-gradient(ellipse 65% 50% at 15% 25%, rgba(100, 210, 255, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse 55% 48% at 88% 72%, rgba(180, 120, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 45% 35% at 50% 100%, rgba(255, 120, 200, 0.04) 0%, transparent 45%);
}

.section--cosmic > .container {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .section--cosmic::before {
    animation: sectionCosmicDrift 32s ease-in-out infinite alternate;
  }

  @keyframes sectionCosmicDrift {
    0% {
      transform: translate(0, 0);
      opacity: 0.38;
    }
    100% {
      transform: translate(1.5%, -1%);
      opacity: 0.52;
    }
  }
}

.micro-star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 6px rgba(150, 220, 255, 0.55);
  pointer-events: none;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .micro-star {
    animation: microTwinkle var(--ms-dur, 4s) ease-in-out infinite;
    animation-delay: var(--ms-delay, 0s);
  }

  @keyframes microTwinkle {
    0%,
    100% {
      opacity: 0.12;
      transform: scale(0.8);
    }
    50% {
      opacity: 1;
      transform: scale(1.2);
    }
  }
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head--left {
  text-align: left;
}

.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-head.is-visible .section-label {
    animation: labelSignal 8s ease-in-out infinite;
  }

  @keyframes labelSignal {
    0%,
    100% {
      opacity: 0.92;
      text-shadow: 0 0 0 transparent;
    }
    50% {
      opacity: 1;
      text-shadow: 0 0 24px rgba(100, 210, 255, 0.35);
    }
  }
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  letter-spacing: 0.02em;
  margin: 0 auto 1.25rem;
  max-width: 22ch;
  line-height: 1.25;
  color: var(--text-bright);
}

.section-head--left .section-title {
  margin-left: 0;
}

.ornament {
  width: 120px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  position: relative;
}

.ornament::before,
.ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid var(--accent-cyan);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.7;
}

.ornament::before {
  left: 0;
}

.ornament::after {
  right: 0;
}

.ornament--left {
  margin-left: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-head.is-visible .ornament {
    animation: ornamentPulse 7s ease-in-out infinite;
  }

  @keyframes ornamentPulse {
    0%,
    100% {
      opacity: 1;
      filter: drop-shadow(0 0 4px rgba(100, 210, 255, 0.15));
    }
    50% {
      opacity: 0.92;
      filter: drop-shadow(0 0 12px rgba(100, 210, 255, 0.45));
    }
  }
}

/* Section head cascade */

.reveal-head .section-label,
.reveal-head .section-title,
.reveal-head .ornament {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-head .section-title {
  transition-delay: 0.1s;
}

.reveal-head .ornament {
  transition-delay: 0.22s;
}

.reveal-head.is-visible .section-label,
.reveal-head.is-visible .section-title,
.reveal-head.is-visible .ornament {
  opacity: 1;
  transform: translateY(0);
}

.reveal-head .ornament::before,
.reveal-head .ornament::after {
  opacity: 0;
  transform: translateY(-50%) rotate(45deg) scale(0.6);
  transition: opacity 0.5s ease 0.35s, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.reveal-head.is-visible .ornament::before,
.reveal-head.is-visible .ornament::after {
  opacity: 0.7;
  transform: translateY(-50%) rotate(45deg) scale(1);
}

/* Services grid */

.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.06) 48%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.06) 52%,
    transparent 62%
  );
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.85s ease;
  pointer-events: none;
}

.service-card:hover::before {
  transform: translateX(120%) skewX(-12deg);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(100, 210, 255, 0.15),
    transparent 40%,
    transparent 60%,
    rgba(100, 210, 255, 0.12)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(100, 210, 255, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(100, 210, 255, 0.12);
}

.service-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent-violet);
  opacity: 0.85;
  transition: transform 0.4s ease, color 0.3s ease;
}

.service-card:hover .service-num {
  transform: translateX(4px);
  color: var(--accent-cyan);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0.5rem 0 0.75rem;
  color: var(--text-bright);
}

.service-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Timeline */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
  margin-left: 0.75rem;
  border-left: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(100, 210, 255, 0.55) 0%, var(--border-subtle) 55%, rgba(100, 210, 255, 0.25) 100%);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline.is-line-visible::before {
  transform: scaleY(1);
}

.timeline-step {
  position: relative;
  padding: 0 0 2.5rem 2.25rem;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -5px;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 0 4px rgba(100, 210, 255, 0.2);
  transform: scale(0);
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-step.is-visible .timeline-dot {
  transform: scale(1);
}

@media (prefers-reduced-motion: no-preference) {
  .timeline-dot {
    animation: dotGlow 3.2s ease-in-out infinite;
    animation-play-state: paused;
  }

  .timeline-step.is-visible .timeline-dot {
    animation-play-state: running;
  }

  @keyframes dotGlow {
    0%,
    100% {
      box-shadow: 0 0 0 4px rgba(100, 210, 255, 0.2);
    }
    50% {
      box-shadow: 0 0 0 6px rgba(100, 210, 255, 0.28), 0 0 20px rgba(100, 210, 255, 0.15);
    }
  }
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  color: var(--text-bright);
}

.timeline-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* About */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 22px;
  border: 1px solid rgba(120, 200, 255, 0.2);
  animation: aboutRing 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes aboutRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}

.about-visual .about-rocket-tile {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  margin-inline: auto;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 40px rgba(120, 200, 255, 0.12));
}

.about-visual .about-rocket-stage {
  min-height: clamp(260px, 34vh, 360px);
}

.about-visual .hero-rocket-icon {
  max-width: 220px;
}

.about-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.about-quote {
  margin: 0;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--accent-cyan);
  background: rgba(100, 210, 255, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: border-left-color 0.4s ease, box-shadow 0.45s ease, transform 0.45s ease;
}

.about-quote:hover {
  border-left-color: var(--text-bright);
  box-shadow: inset 4px 0 0 rgba(100, 210, 255, 0.35);
  transform: translateX(4px);
}

.about-quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
}

/* Contact */

.contact-grid {
  max-width: 32rem;
  margin-inline: auto;
}

.contact-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.45s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(100, 210, 255, 0.28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-intro {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-x-actions {
  margin: 0 0 1.5rem;
}

.contact-x-actions .btn {
  display: inline-flex;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details li {
  margin-bottom: 1.25rem;
}

.contact-details li:last-child {
  margin-bottom: 0;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.35rem;
}

.contact-details a {
  position: relative;
  font-size: 1.05rem;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-details a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-details a:hover::after,
.contact-details a:focus-visible::after {
  transform: scaleX(1);
}

.contact-details a:hover {
  transform: translateX(3px);
}

/* Footer */

.site-footer {
  position: relative;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-deep);
  overflow: hidden;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -15%;
  width: min(32%, 240px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 210, 255, 0.85), rgba(180, 140, 255, 0.6), transparent);
  opacity: 0.75;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .site-footer::after {
    animation: footerBeamSweep 16s ease-in-out infinite;
  }

  @keyframes footerBeamSweep {
    0% {
      left: -15%;
      opacity: 0.4;
    }
    50% {
      opacity: 0.95;
    }
    100% {
      left: 115%;
      opacity: 0.4;
    }
  }
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 0.4s ease;
}

.footer-brand:hover {
  transform: translateY(-2px);
}

.footer-brand img {
  border-radius: 10px;
  transition: box-shadow 0.45s ease, transform 0.45s ease;
}

.footer-brand:hover img {
  box-shadow:
    0 0 0 1px rgba(180, 210, 255, 0.2),
    0 8px 28px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(140, 200, 255, 0.15);
  transform: scale(1.04);
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-x {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--accent-cyan);
}

.footer-x:hover {
  color: var(--text-bright);
  text-decoration: underline;
}

.footer-top {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
}

.footer-top:hover {
  color: var(--text-bright);
}

/* Reveal animations */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: revealIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-delay-1 {
  animation-delay: 0.12s;
}

.reveal-delay-2 {
  animation-delay: 0.24s;
}

.reveal-delay-3 {
  animation-delay: 0.38s;
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-showcase {
    order: -1;
    width: 100%;
  }

  .hero-rocket-tile {
    margin-inline: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: rgba(4, 8, 20, 0.97);
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-list li:last-child {
    border-bottom: 0;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0.5rem;
  }

  .hero-scroll {
    display: none;
  }

  .hero-content {
    padding-bottom: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-parallax {
    transform: none !important;
  }

  .hero-title {
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
  }

  .brand-name {
    color: var(--text-bright) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
  }

  .brand-mark {
    animation: none !important;
    transform: none !important;
  }

  .brand-mark-img {
    transform: none !important;
  }

  .brand:hover .brand-mark,
  .brand:focus-visible .brand-mark {
    transform: none !important;
  }

  .brand:hover .brand-mark-img,
  .brand:focus-visible .brand-mark-img,
  .brand:active .brand-mark-img {
    transform: none !important;
  }

  .cosmic-aurora,
  .hero-nebula,
  .section--cosmic::before,
  .micro-star,
  .site-footer::after,
  .hero-rocket-tile::before,
  .hero-rocket-tile,
  .hero-rocket-motion,
  .hero-rocket-flame,
  .hero-rocket-flame--2,
  .hero-rocket-flame--3 {
    animation: none !important;
  }

  .reveal,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .reveal-head .section-label,
  .reveal-head .section-title,
  .reveal-head .ornament {
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal-head .ornament::before,
  .reveal-head .ornament::after {
    opacity: 0.7 !important;
    transform: translateY(-50%) rotate(45deg) scale(1) !important;
  }

  .timeline::before {
    transform: scaleY(1) !important;
    transition: none !important;
  }

  .timeline-dot {
    transform: scale(1) !important;
    animation: none !important;
  }
}
