/* src/components/Nav.css */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: transparent;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}
.nav--scrolled {
  background: rgba(26, 26, 26, 0.97);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 0.875rem 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  position: relative;
  z-index: 2;
}
.nav__logo-img {
  display: block;
  width: auto;
  object-fit: contain;
}
.nav__logo-img--wordmark {
  height: 86px;
  filter: brightness(0) invert(1);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__link {
  font-family: var(--font-headline);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}
.nav__link:hover {
  color: var(--fly-white);
}
.nav__cta {
  padding: 0.6rem 1.5rem;
  font-size: 0.8125rem;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fly-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav__toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle--open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.nav__mobile-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}
.nav__mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nav__mobile-link {
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}
.nav__mobile-link:hover {
  color: var(--fly-white);
}
.nav__mobile-cta {
  display: inline-flex;
  margin-top: 0.5rem;
}
@media (max-width: 980px) {
  .nav__links {
    gap: 1.25rem;
  }
  .nav__link {
    font-size: 0.74rem;
  }
  .nav__cta {
    padding-inline: 1.1rem;
  }
}
@media (max-width: 860px) {
  .nav__logo-img--wordmark {
    height: 64px;
  }
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
}
@media (max-width: 640px) {
  .nav {
    padding: 1rem 0;
  }
  .nav--scrolled {
    padding: 0.8rem 0;
  }
  .nav__mobile-panel {
    padding: 1rem var(--space-md) 1.25rem;
  }
  .nav__mobile-cta {
    width: 100%;
  }
}

/* src/components/Hero.css */
.hero {
  position: relative;
  overflow: clip;
  padding: 9.25rem 0 5.5rem;
  background:
    radial-gradient(
      circle at 82% 16%,
      rgba(227, 30, 36, 0.24),
      transparent 30%),
    radial-gradient(
      circle at 18% 78%,
      rgba(255, 77, 82, 0.08),
      transparent 28%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      transparent 32%),
    var(--fly-black);
  color: var(--fly-white);
}
.hero-bloom {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.02) 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px);
  background-size: 88px 88px;
  mask-image:
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.78),
      transparent 88%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
}
.hero-copy-block {
  padding-top: 1.25rem;
  min-width: 0;
}
.hero-copy-block h1 {
  margin-top: 0.4rem;
  max-width: 11ch;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--fly-white);
}
.hero-eyebrow {
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fly-red);
}
.hero-copy {
  margin-top: 1.35rem;
  max-width: 58ch;
  font-size: 1.07rem;
  color: var(--fly-muted);
  line-height: 1.72;
}
.hero-ctas {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 34rem;
}
.hero-ctas .btn {
  justify-content: center;
  width: 100%;
  min-width: 0;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}
.hero-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-dark);
  border-radius: var(--radius-lg);
}
.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.orbit-a {
  width: 360px;
  height: 360px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.orbit-b {
  width: 250px;
  height: 250px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255, 77, 82, 0.22);
}
.hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(255, 77, 82, 0.08),
      transparent);
  mix-blend-mode: screen;
}
.hero-core-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(86%, 440px);
  padding: 1.5rem;
  transform: translate(-50%, -50%);
  background: rgba(18, 18, 18, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
}
.panel-kicker {
  color: var(--fly-red-light);
  font-family: var(--font-headline);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-core-card h3 {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fly-white);
}
.hero-core-card p {
  margin-top: 0.9rem;
  color: var(--fly-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.panel-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
  color: var(--fly-white);
}
.panel-list li {
  padding-left: 1rem;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.5;
}
.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--fly-red);
}
.floating-tag {
  position: absolute;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-headline);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fly-white);
  backdrop-filter: blur(12px);
}
.tag-1 {
  left: 1rem;
  top: 1rem;
}
.tag-2 {
  right: 1rem;
  top: 5.5rem;
}
.tag-3 {
  left: 2rem;
  bottom: 1.25rem;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy-block h1 {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 7.5rem 0 4rem;
  }
  .hero-ctas {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .hero-stage {
    min-height: 440px;
  }
  .hero__scroll-indicator {
    display: none;
  }
}
@media (max-width: 640px) {
  .hero {
    padding-top: 7rem;
  }
  .hero-copy {
    font-size: 1rem;
  }
  .hero-core-card {
    width: min(90%, 420px);
    padding: 1.25rem;
  }
  .hero-core-card h3 {
    font-size: 1.35rem;
  }
  .floating-tag {
    font-size: 0.64rem;
    padding: 0.55rem 0.75rem;
  }
  .tag-1 {
    left: 0.8rem;
    top: 0.8rem;
  }
  .tag-2 {
    right: 0.8rem;
    top: 4rem;
  }
  .tag-3 {
    left: 1rem;
    bottom: 0.8rem;
  }
}
@media (max-width: 420px) {
  .hero-stage {
    min-height: 400px;
  }
  .orbit-a {
    width: 300px;
    height: 300px;
  }
  .orbit-b {
    width: 210px;
    height: 210px;
  }
}

/* src/components/MotionBand.css */
.motion-band-section {
  overflow: hidden;
  padding: 0.75rem 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background-color: var(--fly-black);
}
.motion-band-row {
  display: flex;
  width: max-content;
  gap: 0.75rem;
  padding: 0.35rem 0;
  will-change: transform;
}
.motion-band-forward {
  animation: bandLeft 36s linear infinite;
}
.motion-band-reverse {
  animation: bandRight 44s linear infinite;
}
.motion-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 77, 82, 0.3);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fly-white);
  font-family: var(--font-headline);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.72;
}
.motion-chip--subtle {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--fly-muted);
}
@keyframes bandLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes bandRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .motion-band-forward,
  .motion-band-reverse {
    animation: none;
  }
}

/* src/components/MissionDeclaration.css */
.mission {
  background: var(--fly-cream);
  padding: var(--space-3xl) 0;
}
.mission__header {
  max-width: var(--container-narrow);
}
.mission__headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.25rem;
  color: var(--fly-black);
}
.mission__headline-accent {
  color: var(--fly-red);
}
.mission__body {
  font-size: 1.125rem;
  color: var(--fly-gray);
  max-width: 600px;
  margin-bottom: 0;
}
.mission__divider-line {
  height: 2px;
  background:
    linear-gradient(
      90deg,
      var(--fly-red) 0%,
      transparent 100%);
  transform-origin: left;
  margin: 3rem 0;
  max-width: 400px;
}
.mission__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.mission__pillar {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-light);
}
.mission__pillar-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--fly-black);
  margin-bottom: 0.75rem;
}
.mission__pillar-body {
  font-size: 0.9375rem;
  color: var(--fly-gray-600);
  line-height: 1.7;
}
@media (max-width: 640px) {
  .mission__pillars {
    grid-template-columns: 1fr;
  }
}

/* src/components/WhatWeBuild.css */
.what-we-build {
  background: var(--fly-black);
  color: var(--fly-white);
  padding: var(--space-3xl) 0;
}
.wwb__header {
  max-width: var(--container-narrow);
  margin-bottom: 4rem;
}
.wwb__headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--fly-white);
  margin-bottom: 1rem;
}
.wwb__subhead {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}
.wwb__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.entity-card {
  background: var(--fly-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.2s ease;
}
.entity-card:hover {
  border-color: rgba(227, 30, 36, 0.35);
}
.entity-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.entity-card__id {
  font-family: var(--font-headline);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--fly-red-light);
}
.entity-card__signal {
  font-family: var(--font-headline);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.entity-card__name {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--fly-white);
  line-height: 1.2;
}
.entity-card__tagline {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fly-red-light);
  font-family: var(--font-headline);
  letter-spacing: 0.01em;
}
.entity-card__description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  flex: 1;
}
.entity-card__footer {
  margin-top: 1rem;
}
.entity-card__bar {
  height: 2px;
  background: var(--fly-red);
  transform-origin: left;
  border-radius: 1px;
}
@media (max-width: 640px) {
  .wwb__grid {
    grid-template-columns: 1fr;
  }
}

/* src/components/EcosystemDiagram.css */
.ecosystem {
  background: var(--fly-white);
  padding: var(--space-3xl) 0;
}
.ecosystem__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}
.ecosystem__text {
  min-width: 0;
}
.ecosystem__headline {
  font-size: clamp(2.2rem, 5vw, 4.75rem);
  color: var(--fly-black);
  margin-bottom: 1.25rem;
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 8ch;
}
.ecosystem__body {
  font-size: 1.02rem;
  color: rgba(26, 26, 26, 0.74);
  max-width: 36rem;
  margin-bottom: 1.5rem;
  line-height: 1.85;
}
.ecosystem__principles {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ecosystem__principles li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(26, 26, 26, 0.8);
  padding-left: 1.25rem;
  position: relative;
}
.ecosystem__principles li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--fly-red);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(227, 30, 36, 0.55);
}
.ecosystem__diagram-shell {
  position: relative;
  padding: 1rem;
  border-radius: 32px;
  border: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 1),
      rgba(245, 245, 245, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.ecosystem__ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  pointer-events: none;
  opacity: 0.75;
}
.ecosystem__ambient--one {
  width: 180px;
  height: 180px;
  right: -40px;
  top: -36px;
  background: rgba(227, 30, 36, 0.14);
}
.ecosystem__ambient--two {
  width: 140px;
  height: 140px;
  left: -20px;
  bottom: -28px;
  background: rgba(0, 0, 0, 0.04);
}
.ecosystem__svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
.ecosystem__canvas {
  fill: #1b1b1b;
}
.ecosystem__canvas-stroke {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1.5;
}
.ecosystem__orbit {
  fill: none;
  stroke-dasharray: 8 12;
}
.ecosystem__orbit--outer {
  stroke: rgba(227, 30, 36, 0.22);
  stroke-width: 1.35;
}
.ecosystem__orbit--inner {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}
.ecosystem__center-logo {
  position: absolute;
  left: 50%;
  top: 44.9%;
  transform: translate(-50%, -50%);
  width: 148px;
  height: auto;
  z-index: 2;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
@media (max-width: 860px) {
  .ecosystem__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ecosystem__headline {
    max-width: none;
  }
  .ecosystem__diagram-shell {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .ecosystem__center-logo {
    width: 124px;
    top: 44.4%;
  }
}
@media (max-width: 520px) {
  .ecosystem__diagram-shell {
    padding: 0.65rem;
    border-radius: 24px;
  }
  .ecosystem__body {
    font-size: 0.98rem;
    line-height: 1.72;
  }
  .ecosystem__center-logo {
    width: 96px;
    top: 44.1%;
  }
}

/* src/components/ImpactSignals.css */
.impact-signals {
  background:
    radial-gradient(
      circle at 20% 18%,
      rgba(227, 30, 36, 0.18),
      transparent 28%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      transparent 18%),
    var(--fly-black);
  color: var(--fly-white);
  padding: var(--space-3xl) 0;
}
.impact-signals__header {
  max-width: var(--container-narrow);
  margin-bottom: 3.5rem;
}
.impact-signals__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--fly-white);
}
.impact-signals__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.signal-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease;
}
.signal-card:hover {
  border-color: rgba(255, 77, 82, 0.3);
}
.signal-card--accent {
  background: rgba(227, 30, 36, 0.08);
  border-color: rgba(227, 30, 36, 0.2);
}
.signal-card__value {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--fly-red-light);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}
.signal-card--accent .signal-card__value {
  color: var(--fly-white);
}
.signal-card__label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fly-white);
  margin-bottom: 0.5rem;
}
.signal-card__description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}
.impact-signals__manifesto {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.impact-signals__manifesto p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  font-style: italic;
}
@media (max-width: 640px) {
  .impact-signals__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 420px) {
  .impact-signals__grid {
    grid-template-columns: 1fr;
  }
}

/* src/components/HowWeWork.css */
.how-we-work {
  background: var(--fly-white);
  padding: var(--space-3xl) 0;
}
.hww__header {
  max-width: var(--container-narrow);
  margin-bottom: 4rem;
}
.hww__eyebrow {
  color: var(--fly-red);
}
.hww__headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--fly-black);
  margin-bottom: 1rem;
}
.hww__accent {
  color: var(--fly-red);
}
.hww__subhead {
  font-size: 1rem;
  color: var(--fly-gray);
  max-width: 500px;
}
.hww__modes {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hww__mode-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--fly-gray-200);
  align-items: start;
}
.hww__mode-row:last-child {
  border-bottom: none;
}
.hww__mode-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 0.25rem;
}
.hww__mode-tag {
  font-family: var(--font-headline);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fly-red);
  white-space: nowrap;
}
.hww__mode-line {
  width: 2px;
  height: 80px;
  background: var(--fly-red);
  transform-origin: top;
  border-radius: 1px;
  opacity: 0.3;
}
.hww__mode-content {
  min-width: 0;
}
.hww__mode-headline {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fly-black);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.hww__mode-body {
  font-size: 0.9375rem;
  color: var(--fly-gray);
  margin-bottom: 1.25rem;
  max-width: 520px;
  line-height: 1.7;
}
.hww__mode-cta {
  font-size: 0.8125rem;
}
@media (max-width: 640px) {
  .hww__header {
    margin-bottom: 2.5rem;
  }
  .hww__mode-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.75rem 0;
  }
  .hww__mode-line {
    display: none;
  }
  .hww__mode-label {
    padding-top: 0;
  }
  .hww__mode-cta {
    width: 100%;
  }
}

/* src/components/FounderPerspective.css */
.founder-perspective {
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(227, 30, 36, 0.14),
      transparent 24%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      transparent 24%),
    var(--fly-black);
  padding: 5.5rem 0;
}
.founder-perspective__card {
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(
      circle at 90% 12%,
      rgba(227, 30, 36, 0.22),
      transparent 28%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.founder-perspective__eyebrow {
  margin-bottom: 0;
}
.founder-perspective__headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--fly-white);
  max-width: 22ch;
  margin: 0 auto;
}
.founder-perspective__quote {
  margin: 1.5rem auto 0;
  max-width: 70ch;
  font-size: 1.07rem;
  color: var(--fly-muted);
  line-height: 1.72;
  font-style: italic;
}
.founder-perspective__attribution {
  margin-top: 1.25rem;
  font-family: var(--font-headline);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fly-red-light);
}
@media (max-width: 768px) {
  .founder-perspective {
    padding: 4rem 0;
  }
}

/* src/components/Footer.css */
.footer {
  background: var(--fly-black);
  color: var(--fly-white);
  padding: var(--space-2xl) 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__logo-link {
  display: block;
  margin-bottom: 1.25rem;
}
.footer__logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer__tagline {
  font-family: var(--font-headline);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fly-red-light);
  margin-bottom: 0.75rem;
}
.footer__mission {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  max-width: 240px;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__nav-heading {
  font-family: var(--font-headline);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}
.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__nav-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}
.footer__nav-link:hover {
  color: var(--fly-white);
}
.footer__bottom {
  padding: 1.5rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__legal {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer__credo {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 640px) {
  .footer__nav {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 420px) {
  .footer__nav {
    grid-template-columns: 1fr;
  }
}

/* src/index.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Open Sans",
    system-ui,
    sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fly-black);
  background-color: var(--fly-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
#root {
  min-height: 100vh;
}
img,
picture,
svg,
canvas {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
:root {
  --fly-red: #E31E24;
  --fly-red-dark: #B8181D;
  --fly-red-light: #FF4D52;
  --fly-black: #1A1A1A;
  --fly-charcoal: #2D2D2D;
  --fly-gray: #4A4A4A;
  --fly-gray-100: #F8F8F8;
  --fly-gray-200: #EEEEEE;
  --fly-gray-400: #9E9E9E;
  --fly-gray-600: #6B6B6B;
  --fly-cream: #F5F5F5;
  --fly-white: #FFFFFF;
  --fly-line: rgba(255, 255, 255, 0.12);
  --fly-muted: rgba(255, 255, 255, 0.74);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.32);
  --shadow-light: 0 18px 60px rgba(0, 0, 0, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --font-headline:
    "Montserrat",
    system-ui,
    sans-serif;
  --font-body:
    "Open Sans",
    system-ui,
    sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --container-max: 1200px;
  --container-wide: 1440px;
  --container-narrow: 800px;
  --radius-sm: 4px;
  --transition-base: 0.25s ease;
  --transition-slow: 0.5s ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headline);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
p {
  font-family: var(--font-body);
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-headline);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--fly-red);
  color: var(--fly-white);
  border-color: var(--fly-red);
}
.btn--primary:hover {
  background: var(--fly-red-dark);
  border-color: var(--fly-red-dark);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--fly-black);
  border-color: var(--fly-black);
}
.btn--outline:hover {
  background: var(--fly-black);
  color: var(--fly-white);
}
.btn--outline-light {
  background: transparent;
  color: var(--fly-white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--fly-white);
}
.eyebrow {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fly-red-light);
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--fly-red);
  border: none;
  margin: var(--space-md) 0;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 768px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }
  .container {
    padding: 0 var(--space-md);
  }
  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}
