@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Commit+Mono:wght@400;500&family=Onest:wght@400;500;600;700;800&display=swap');

:root {
  --hangar-white: #f4f6f8;
  --pale-aluminium: #e8ecef;
  --cloud-grey: #d4dae0;
  --runway-mist: #eef1f4;
  --inspection-paper: #fafbfc;
  --brushed-aluminium: #c8ced4;
  --aircraft-grey: #8a939c;
  --muted-steel: #6b7580;
  --runway-black: #0f1419;
  --hangar-graphite: #1a2332;
  --aviation-navy: #1e3a5f;
  --cockpit-blue: #152a45;
  --carbon-steel: #2a3441;
  --safety-orange: #e8621a;
  --navigation-green: #2d8f5e;
  --beacon-red: #c93b3b;
  --runway-blue: #2b6cb0;
  --turbine-cyan: #1a9aab;
  --signal-yellow: #d4a017;
  --inspection-lime: #7cb342;
  --font-headline: 'Onest', sans-serif;
  --font-body: 'Albert Sans', sans-serif;
  --font-mono: 'Commit Mono', monospace;
  --header-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-lift: 0 12px 40px rgba(15, 20, 25, 0.08);
  --shadow-card: 0 4px 24px rgba(15, 20, 25, 0.06);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  max-width: 100vw;
  position: relative;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--runway-black);
  background-color: var(--hangar-white);
  overflow-x: hidden !important;
  max-width: 100vw;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  overflow-x: clip;
}

.section-label {
  font-family: var(--font-mono);
  font-size: clamp(0.6875rem, 0.65rem + 0.15vw, 0.75rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-steel);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--safety-orange);
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--aviation-navy);
}

.section-lead {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: var(--muted-steel);
  max-width: 640px;
  margin-top: 1rem;
}

.runway-bg {
  background-color: var(--hangar-white);
  background-image:
    linear-gradient(90deg, rgba(30, 58, 95, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(30, 58, 95, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 20px 20px, rgba(30, 58, 95, 0.06) 1.5px, transparent 1.5px);
  background-size: 80px 80px, 80px 80px, 40px 40px;
  position: relative;
}

.runway-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(232, 98, 26, 0.04) 39px,
      rgba(232, 98, 26, 0.04) 40px
    );
  pointer-events: none;
}

.hangar-panel-bg {
  background-color: var(--pale-aluminium);
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent calc(25% - 1px),
      rgba(30, 58, 95, 0.06) calc(25% - 1px),
      rgba(30, 58, 95, 0.06) 25%
    );
}

.runway-dark {
  background-color: var(--hangar-graphite);
  color: var(--hangar-white);
  position: relative;
  overflow-x: clip;
}

.runway-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--hangar-white) 0,
    var(--hangar-white) 20px,
    transparent 20px,
    transparent 40px
  );
  opacity: 0.15;
}

.runway-dark .section-title {
  color: var(--hangar-white);
}

.runway-dark .section-lead {
  color: var(--cloud-grey);
}

.runway-dark .section-label {
  color: var(--brushed-aluminium);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--safety-orange);
  color: var(--hangar-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 98, 26, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--aviation-navy);
  border: 1.5px solid var(--aviation-navy);
}

.btn-secondary:hover {
  background: var(--aviation-navy);
  color: var(--hangar-white);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--navigation-green);
  color: var(--hangar-white);
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 143, 94, 0.3);
}

.btn-dark {
  background: var(--runway-blue);
  color: var(--hangar-white);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 108, 176, 0.35);
}

.link-underline {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--aviation-navy);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--safety-orange);
  transition: width var(--transition);
}

.link-underline:hover::after {
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(244, 246, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
  transition: box-shadow var(--transition), background var(--transition);
  overflow-x: clip;
  max-width: 100vw;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(15, 20, 25, 0.06);
  background: rgba(244, 246, 248, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.logo img {
  height: 36px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-family: var(--font-headline);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--carbon-steel);
  position: relative;
  padding: 0.25rem 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navigation-green);
  transition: width var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.clearance-badge {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navigation-green);
  background: rgba(45, 143, 94, 0.08);
  padding: 0.375rem 0.625rem;
  border: 1px solid rgba(45, 143, 94, 0.2);
  border-radius: var(--radius-sm);
  display: none;
}

@media (min-width: 900px) {
  .clearance-badge {
    display: block;
  }
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  z-index: 1002;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--aviation-navy);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

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

.burger.active span:nth-child(2) {
  opacity: 0;
}

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

@media (min-width: 901px) {
  .burger {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-desktop,
  .header-right .btn-nav {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(244, 246, 248, 0.98);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height) + 2rem) 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100vw;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu a {
  font-family: var(--font-headline);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--aviation-navy);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
}

.mobile-menu .btn {
  margin-top: 2rem;
  width: 100%;
}

body.menu-open {
  overflow: hidden !important;
}

.hero-hangar {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
  position: relative;
  overflow-x: clip;
  max-width: 100%;
}

.hero-hangar .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-hangar .container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turbine-cyan);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--navigation-green);
  border-radius: 50%;
  animation: beacon-pulse 2s ease infinite;
}

@keyframes beacon-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-headline);
  font-size: clamp(2.25rem, 1.8rem + 2.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--aviation-navy);
  margin-bottom: 1.5rem;
}

.hero-title .stagger-line {
  display: block;
  overflow: hidden;
}

.hero-title .stagger-line span {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s ease;
}

.hero-title.revealed .stagger-line span {
  transform: translateY(0);
  opacity: 1;
}

.hero-title.revealed .stagger-line:nth-child(2) span {
  transition-delay: 0.12s;
}

.hero-title.revealed .stagger-line:nth-child(3) span {
  transition-delay: 0.24s;
}

.hero-desc {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: var(--muted-steel);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.clearance-panel {
  background: var(--inspection-paper);
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.clearance-panel-header {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-steel);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(30, 58, 95, 0.15);
}

.clearance-rows {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.clearance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  padding: 0.5rem 0;
}

.clearance-row .label {
  color: var(--carbon-steel);
  font-weight: 500;
}

.clearance-status {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.status-pending {
  background: rgba(212, 160, 23, 0.12);
  color: var(--signal-yellow);
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.status-checked {
  background: rgba(43, 108, 176, 0.1);
  color: var(--runway-blue);
  border: 1px solid rgba(43, 108, 176, 0.25);
}

.status-cleared {
  background: rgba(45, 143, 94, 0.1);
  color: var(--navigation-green);
  border: 1px solid rgba(45, 143, 94, 0.25);
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow: var(--shadow-lift);
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.hero-readiness-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.readiness-mini {
  background: var(--inspection-paper);
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-left: 3px solid var(--safety-orange);
  padding: 0.875rem;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.readiness-mini:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.readiness-mini-id {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.1em;
  color: var(--muted-steel);
  margin-bottom: 0.25rem;
}

.readiness-mini-title {
  font-family: var(--font-headline);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--aviation-navy);
}

.hero-parallax-layer {
  position: absolute;
  inset: -20%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(30, 58, 95, 0.03) 60px,
      rgba(30, 58, 95, 0.03) 61px
    );
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

@media (max-width: 1024px) {
  .hero-parallax-layer {
    display: none;
  }
}

section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.readiness-signals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .readiness-signals {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .readiness-signals {
    grid-template-columns: repeat(3, 1fr);
  }
}

.signal-panel {
  background: var(--inspection-paper);
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.signal-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--safety-orange), var(--turbine-cyan));
  opacity: 0;
  transition: opacity var(--transition);
}

.signal-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.signal-panel:hover::before {
  opacity: 1;
}

.signal-id {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--turbine-cyan);
  margin-bottom: 1rem;
}

.signal-flow {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signal-step {
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(30, 58, 95, 0.06);
}

.signal-step:last-child {
  border-bottom: none;
}

.signal-step-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aircraft-grey);
  margin-bottom: 0.25rem;
}

.signal-step-text {
  font-size: 0.875rem;
  color: var(--carbon-steel);
  line-height: 1.5;
}

.signal-result {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navigation-green);
}

.preflight-standard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .preflight-standard {
    grid-template-columns: 1fr 1fr;
  }
}

.preflight-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.preflight-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.preflight-checks {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.preflight-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.check-icon svg {
  width: 100%;
  height: 100%;
}

.check-icon svg path {
  stroke: var(--navigation-green);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  transition: stroke-dashoffset 0.6s ease;
}

.check-icon.drawn svg path {
  stroke-dashoffset: 0;
}

.cleared-launches {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.featured-launch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--inspection-paper);
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.featured-launch:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

@media (min-width: 900px) {
  .featured-launch {
    grid-template-columns: 1.2fr 1fr;
  }
}

.featured-launch-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.featured-launch-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.launch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.launch-tag {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  background: rgba(30, 58, 95, 0.06);
  color: var(--aviation-navy);
  border-radius: var(--radius-sm);
}

.launch-outcomes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .launch-outcomes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.outcome-card {
  background: var(--inspection-paper);
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-top: 3px solid var(--runway-blue);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.outcome-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.outcome-card-id {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: var(--muted-steel);
  margin-bottom: 0.5rem;
}

.hangar-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hangar-note {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.hangar-note-highlight {
  background: var(--aviation-navy);
  color: var(--hangar-white);
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--safety-orange);
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
  font-family: var(--font-headline);
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 600;
  line-height: 1.4;
}

.hangar-note-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.service-checks {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--inspection-paper);
}

.service-check-item {
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
}

.service-check-item:last-child {
  border-bottom: none;
}

.service-check-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
  color: var(--aviation-navy);
  background: transparent;
  transition: background var(--transition);
  gap: 1rem;
}

.service-check-header:hover {
  background: rgba(30, 58, 95, 0.03);
}

.service-check-id {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--turbine-cyan);
  margin-right: 0.75rem;
}

.service-check-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.service-check-toggle::before,
.service-check-toggle::after {
  content: '';
  position: absolute;
  background: var(--aviation-navy);
  transition: transform var(--transition);
}

.service-check-toggle::before {
  width: 14px;
  height: 2px;
  top: 11px;
  left: 5px;
}

.service-check-toggle::after {
  width: 2px;
  height: 14px;
  top: 5px;
  left: 11px;
}

.service-check-item.open .service-check-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.service-check-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.service-check-item.open .service-check-body {
  max-height: 600px;
}

.service-check-content {
  padding: 0 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .service-check-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-check-col h4 {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-steel);
  margin-bottom: 0.5rem;
}

.service-check-col p {
  font-size: 0.875rem;
  color: var(--carbon-steel);
  line-height: 1.55;
}

.launch-sequence {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

@media (min-width: 768px) {
  .launch-sequence {
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
  }
}

.sequence-step {
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 768px) {
  .sequence-step {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .sequence-step:last-child {
    border-right: none;
  }
}

.sequence-num {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--turbine-cyan);
  margin-bottom: 0.75rem;
}

.sequence-title {
  font-family: var(--font-headline);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hangar-white);
  margin-bottom: 0.5rem;
}

.sequence-desc {
  font-size: 0.75rem;
  color: var(--cloud-grey);
  line-height: 1.45;
}

.clearance-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .clearance-proof {
    grid-template-columns: 1fr 1fr;
  }
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.metric-card {
  background: var(--inspection-paper);
  border: 1px solid rgba(30, 58, 95, 0.08);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition);
}

.metric-card:hover {
  transform: translateY(-3px);
}

.metric-value {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
  font-weight: 800;
  color: var(--aviation-navy);
  line-height: 1;
}

.metric-label {
  font-size: 0.8125rem;
  color: var(--muted-steel);
  margin-top: 0.5rem;
}

.proof-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.proof-tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  padding: 0.375rem 0.75rem;
  background: rgba(30, 58, 95, 0.06);
  color: var(--aviation-navy);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(30, 58, 95, 0.1);
}

.proof-quote {
  background: var(--inspection-paper);
  border-left: 3px solid var(--navigation-green);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1rem;
}

.proof-quote p {
  font-size: 0.9375rem;
  color: var(--carbon-steel);
  font-style: italic;
  line-height: 1.6;
}

.proof-quote cite {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--muted-steel);
  margin-top: 0.75rem;
  font-style: normal;
}

.marquee-section {
  padding: 2rem 0;
  overflow: hidden;
  max-width: 100vw;
  background: var(--cockpit-blue);
}

.marquee-wrapper {
  overflow: hidden;
  max-width: 100vw;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-track.reverse {
  animation-direction: reverse;
  margin-top: 0.75rem;
}

.marquee-item {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cloud-grey);
  padding: 0 2rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marquee-item::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--safety-orange);
  border-radius: 50%;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.launch-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.launch-cta .section-title {
  margin-bottom: 1rem;
}

.launch-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.launch-cta-note {
  font-size: 0.8125rem;
  color: var(--muted-steel);
  margin-top: 0.5rem;
}

.contact-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-preview {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-steel);
}

.contact-info-value {
  font-size: 1rem;
  color: var(--aviation-navy);
  font-weight: 500;
}

.contact-map-preview {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(30, 58, 95, 0.08);
  height: 240px;
}

.contact-map-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  background: var(--runway-black);
  color: var(--cloud-grey);
  padding: 4rem 0 2rem;
  overflow-x: clip;
  max-width: 100%;
}

.footer-launch-statement {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  font-weight: 700;
  color: var(--hangar-white);
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brushed-aluminium);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--cloud-grey);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--hangar-white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo img {
  height: 28px;
  width: auto;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.page-hero {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 3rem;
}

.page-hero-inner {
  max-width: 720px;
}

.page-content {
  padding-bottom: 4rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.content-block h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  font-weight: 700;
  color: var(--aviation-navy);
  margin-bottom: 1rem;
}

.content-block p {
  margin-bottom: 1rem;
  color: var(--carbon-steel);
}

.content-block ul {
  margin-bottom: 1rem;
  padding-left: 0;
}

.content-block li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--carbon-steel);
  font-size: 0.9375rem;
}

.content-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--navigation-green);
  border-radius: 50%;
}

.content-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.content-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
  color: var(--aviation-navy);
  background: var(--inspection-paper);
  gap: 1rem;
}

.faq-question:hover {
  background: rgba(30, 58, 95, 0.03);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--aviation-navy);
  transition: transform var(--transition);
}

.faq-toggle::before {
  width: 14px;
  height: 2px;
  top: 11px;
  left: 5px;
}

.faq-toggle::after {
  width: 2px;
  height: 14px;
  top: 5px;
  left: 11px;
}

.faq-item.open .faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--hangar-white);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--carbon-steel);
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.case-study {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--inspection-paper);
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.case-study:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

@media (min-width: 768px) {
  .case-study {
    grid-template-columns: 1fr 1fr;
  }

  .case-study:nth-child(even) .case-study-image {
    order: 2;
  }
}

.case-study-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.case-study-content {
  padding: 2rem;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 500px) {
  .case-study-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.case-field h4 {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-steel);
  margin-bottom: 0.375rem;
}

.case-field p {
  font-size: 0.875rem;
  color: var(--carbon-steel);
  line-height: 1.5;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-form-panel {
  background: var(--inspection-paper);
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.contact-form-panel h2 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--aviation-navy);
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-steel);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(30, 58, 95, 0.15);
  border-radius: var(--radius-sm);
  background: var(--hangar-white);
  color: var(--runway-black);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--runway-blue);
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--beacon-red);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  font-size: 0.75rem;
  color: var(--beacon-red);
  margin-top: 0.375rem;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.contact-form-panel .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .contact-form-panel .btn {
    width: auto;
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-map-full {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(30, 58, 95, 0.08);
  height: 320px;
}

.contact-map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hours-block {
  background: rgba(30, 58, 95, 0.04);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--turbine-cyan);
}

.hours-block h3 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-steel);
  margin-bottom: 0.75rem;
}

.hours-block p {
  font-size: 0.9375rem;
  color: var(--carbon-steel);
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
}

.thanks-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.thanks-panel {
  text-align: center;
  max-width: 520px;
  background: var(--inspection-paper);
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lift);
}

.thanks-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(45, 143, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-icon svg {
  width: 32px;
  height: 32px;
}

.thanks-panel h1 {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 1.4rem + 1vw, 2.25rem);
  font-weight: 700;
  color: var(--aviation-navy);
  margin-bottom: 1rem;
}

.thanks-panel p {
  color: var(--muted-steel);
  margin-bottom: 0.75rem;
}

.thanks-steps {
  text-align: left;
  margin: 1.5rem 0 2rem;
  padding: 1.25rem;
  background: var(--hangar-white);
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(30, 58, 95, 0.12);
}

.thanks-steps li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  color: var(--carbon-steel);
}

.thanks-steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--navigation-green);
  border-radius: 50%;
}

.legal-page {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 1.4rem + 1vw, 2.5rem);
  font-weight: 700;
  color: var(--aviation-navy);
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted-steel);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.legal-content h2 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--aviation-navy);
  margin: 2rem 0 1rem;
}

.legal-content h3 {
  font-family: var(--font-headline);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--carbon-steel);
  margin: 1.5rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--carbon-steel);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--carbon-steel);
  font-size: 0.9375rem;
  line-height: 1.6;
  list-style: disc;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.legal-nav a {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  background: rgba(30, 58, 95, 0.06);
  color: var(--aviation-navy);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.legal-nav a:hover {
  background: rgba(30, 58, 95, 0.12);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: var(--inspection-paper);
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-top: 3px solid var(--safety-orange);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.service-card-id {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--turbine-cyan);
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--aviation-navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--carbon-steel);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.service-card ul {
  margin-top: 0.75rem;
}

.service-card li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.375rem;
  font-size: 0.8125rem;
  color: var(--muted-steel);
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--navigation-green);
  border-radius: 50%;
}

.cta-section {
  text-align: center;
  padding: 3rem 0;
  background: var(--pale-aluminium);
  margin-top: 2rem;
  border-radius: var(--radius-md);
}

.cta-section h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.75rem);
  font-weight: 700;
  color: var(--aviation-navy);
  margin-bottom: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-role {
  background: var(--inspection-paper);
  border: 1px solid rgba(30, 58, 95, 0.08);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.team-role-id {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: var(--muted-steel);
  margin-bottom: 0.5rem;
}

.team-role h3 {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 600;
  color: var(--aviation-navy);
  margin-bottom: 0.5rem;
}

.team-role p {
  font-size: 0.8125rem;
  color: var(--carbon-steel);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .hero-actions .btn {
    width: 100%;
  }

  .hero-readiness-cards {
    grid-template-columns: 1fr;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1025px) and (hover: hover) {
  .parallax-enabled .hero-parallax-layer {
    transition: transform 0.1s linear;
  }
}
