:root {
  --bg: #fafcff;
  --bg-soft: #e1e0dd;
  --bg-card: #ffffff;
  --accent: #161c6b;
  --accent-2: #febf58;
  --accent-3: #731472;
  --text: #171402;
  --muted: #6f6a5e;
  --border: rgba(23, 20, 2, 0.12);
  --shadow: 0 18px 45px rgba(22, 28, 107, 0.15);
  --radius: 18px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #ffffff 0%, #f4f1ea 60%);
  min-height: 100vh;
  line-height: 1.6;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
  opacity: 0.3;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(250, 252, 255, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent);
  color: #08121f;
  font-weight: 700;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}


.brand-text {
  letter-spacing: 0.4px;
}
.site-header .brand-logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
  height: 38px;
  filter: drop-shadow(0 2px 4px rgba(22, 28, 107, 0.2));
}

.site-header .brand-text {
  color: var(--accent);
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-link {
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent);
}

.site-main {
  padding-bottom: 80px;
}

.hero {
  padding: 90px 0 70px;
  color: #fafcff;
  background: linear-gradient(120deg, rgba(22, 28, 107, 0.86), rgba(22, 28, 107, 0.35)), url("/assets/images/hero.jpg");
  background-size: cover;
  background-position: 70% 52%;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Urbanist", "Open Sans", system-ui, -apple-system, sans-serif;
  letter-spacing: 0.2px;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.lead {
  font-size: 1.1rem;
  color: #4c493f;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
}

.pill-row span {
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 2px;
}

.hero-card-inner {
  background: rgba(250, 252, 255, 0.96);
  border-radius: calc(var(--radius) - 2px);
  padding: 28px;
  box-shadow: var(--shadow);
}

.brief-list {
  list-style: none;
  margin: 18px 0;
  color: var(--muted);
}

.brief-list li + li {
  margin-top: 10px;
}

.signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(22, 28, 107, 0.12);
  color: var(--accent);
  font-weight: 500;
}

.signal .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-2);
}

.section {
  padding: 60px 0;
}

.section-title {
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.fleet-card,
.accent-card,
.stats-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
}

.split {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.accent-card {
  background: linear-gradient(150deg, rgba(254, 191, 88, 0.18), rgba(22, 28, 107, 0.08));
}

.text-link {
  color: var(--accent);
  font-weight: 500;
}

.stats-band {
  background: linear-gradient(120deg, rgba(250, 252, 255, 0.8), rgba(225, 224, 221, 0.7)), url("/assets/images/hangar.png");
  background-size: cover;
  background-position: 50% 30%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 600;
}

.stat-label {
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.stats-note {
  margin-top: 18px;
}

.page-hero {
  padding: 70px 0 40px;
}

.checklist {
  list-style: none;
  margin-top: 18px;
  color: var(--muted);
}

.checklist li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.checklist li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

.steps {
  margin: 18px 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.policy-content h2 {
  margin-top: 36px;
}

.policy-content h3 {
  margin-top: 20px;
}

.policy-content p + p,
.policy-content p + ul,
.policy-content p + ol,
.policy-content ul + p,
.policy-content ol + p {
  margin-top: 12px;
}

.policy-content ul,
.policy-content ol {
  margin: 12px 0 12px 20px;
}

.policy-content li + li {
  margin-top: 6px;
}

.fleet-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-items: center;
}

.fleet-card {
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.fleet-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, 140px);
  justify-content: center;
}

.fleet-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.tag {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(254, 191, 88, 0.25);
  color: #7a560b;
  font-size: 0.8rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-grid h4 {
  margin-bottom: 12px;
}

.footer-grid ul {
  list-style: none;
  color: var(--muted);
}

.footer-grid > div:last-child {
  text-align: right;
}

.footer-grid > div:last-child ul {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

.footer-grid li + li {
  margin-top: 8px;
}

.social-list {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--accent);
  background: var(--bg-soft);
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-link img {
  width: 18px;
  height: 18px;
  display: block;
  color: inherit;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--text);
}

.social-link.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 72px;
    right: 0;
    background: var(--bg-card);
    padding: 16px 22px;
    border-radius: 16px;
    flex-direction: column;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 60px;
  }

  .hero-actions {
    flex-direction: column;
  }
}




.media-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 6px);
  margin-bottom: 16px;
}

.cta-section {
  background: linear-gradient(120deg, rgba(22, 28, 107, 0.85), rgba(22, 28, 107, 0.35)), url("/assets/images/cta.jpg");
  background-size: cover;
  background-position: 50% 45%;
  color: #fafcff;
}

.cta-section .lead {
  color: rgba(250, 252, 255, 0.88);
}

.cta-section .muted {
  color: rgba(250, 252, 255, 0.8);
}

.cta-section .accent-card {
  background: rgba(250, 252, 255, 0.96);
  color: var(--text);
}

.cta-section .accent-card p {
  color: #4c493f;
}

.cta-section .accent-card .text-link {
  color: var(--accent);
}

.hero .lead {
  color: rgba(250, 252, 255, 0.86);
}

.hero .pill-row {
  color: rgba(250, 252, 255, 0.8);
}

.hero .pill-row span {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero .btn {
  background: var(--accent-2);
  color: #161c6b;
}

.hero .btn.ghost {
  color: #161c6b;
  border-color: rgba(255, 255, 255, 0.6);
}
