:root {
  --ink: #061437;
  --navy: #071c3f;
  --crimson: #a71930;
  --red: #c42638;
  --amber: #f2a33a;
  --gold: #d4892f;
  --paper: #f6f9fd;
  --muted: #64748b;
  --line: rgba(7, 28, 63, 0.14);
  --shadow: 0 24px 70px rgba(76, 15, 23, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  background: rgba(5, 16, 39, 0.92);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(167, 25, 48, 0.24);
}

.brand-mark svg {
  width: 34px;
  fill: white;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 4px;
  font-size: 0.7rem;
  opacity: 0.78;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 10px 13px;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
}

.nav a:hover {
  color: white;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 48%;
  filter: saturate(1.04);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 12, 30, 0.86) 0%, rgba(4, 12, 30, 0.56) 38%, rgba(4, 12, 30, 0.18) 68%),
    linear-gradient(0deg, rgba(4, 12, 30, 0.78) 0%, rgba(4, 12, 30, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 86px);
  padding-top: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(4.2rem, 11vw, 9rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.apply-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.button.primary {
  background: linear-gradient(135deg, var(--amber), var(--crimson));
  color: white;
  box-shadow: 0 14px 28px rgba(167, 25, 48, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  align-self: end;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto 28px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel article {
  min-height: 116px;
  padding: 22px;
  background: rgba(5, 18, 44, 0.58);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 7px;
  font-size: 1rem;
  text-transform: uppercase;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.split,
.section-head,
.career {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 5vw, 76px);
}

.intro {
  background: white;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.6vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.intro-copy p,
.section-head p,
.career-content p,
.apply-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: white;
}

.stat {
  min-height: 170px;
  padding: clamp(24px, 4vw, 46px);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.stat span {
  display: block;
  margin-bottom: 32px;
  color: var(--amber);
  font-weight: 900;
}

.stat strong {
  display: block;
  max-width: 210px;
  font-size: 1.35rem;
  line-height: 1.18;
  text-transform: uppercase;
}

.section-head {
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.section-head p {
  margin-bottom: 0;
}

.liveries {
  background:
    linear-gradient(180deg, #fff9f2 0%, #f7edf0 100%);
}

.livery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 18px;
}

.livery-card {
  overflow: hidden;
  min-height: 440px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(6, 20, 55, 0.08);
}

.livery-image {
  height: 285px;
  overflow: hidden;
}

.livery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 61%;
}

.livery-preview {
  position: relative;
  height: 285px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.2)),
    linear-gradient(150deg, var(--navy) 0 45%, var(--crimson) 45% 56%, white 56% 72%, var(--amber) 72% 77%, #2b0710 77%);
}

.livery-crimson .livery-preview {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.18)),
    linear-gradient(150deg, #071c3f 0 42%, #a71930 42% 56%, white 56% 72%, #f2a33a 72% 78%, #5b0b18 78%);
}

.livery-dark .livery-preview {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.12)),
    linear-gradient(150deg, #020817 0 44%, #4d0b16 44% 58%, #fff4e3 58% 72%, #f2a33a 72%);
}

.plane-line {
  position: absolute;
  left: 12%;
  right: 13%;
  top: 50%;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 -9px 0 rgba(7, 28, 63, 0.9), 0 18px 50px rgba(0, 0, 0, 0.14);
}

.plane-line::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 8%;
  top: 9px;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--navy) 0 12px, transparent 12px 24px);
  opacity: 0.5;
}

.tail-fin {
  position: absolute;
  right: 16%;
  top: 27%;
  width: 62px;
  height: 92px;
  clip-path: polygon(18% 100%, 100% 12%, 78% 100%);
  background: linear-gradient(135deg, white, var(--amber) 48%, var(--crimson));
}

.livery-body {
  padding: 28px;
}

.livery-body span {
  display: block;
  margin-bottom: 10px;
  color: var(--crimson);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.livery-body h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.livery-body p {
  color: var(--muted);
  line-height: 1.58;
}

.operations {
  background: white;
}

.text-link {
  justify-self: start;
  align-self: end;
  color: var(--crimson);
  font-weight: 900;
  text-transform: uppercase;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.ops-grid article {
  min-height: 300px;
  padding: 30px;
  background: white;
}

.ops-grid svg {
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  fill: none;
  stroke: var(--crimson);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ops-grid h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.ops-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.career {
  align-items: center;
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(5, 18, 44, 0.94), rgba(5, 18, 44, 0.78)),
    url("skyward-air-flyer.png");
  background-size: cover;
  background-position: center 58%;
  color: white;
}

.career-content p {
  color: rgba(255, 255, 255, 0.78);
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.timeline span {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline strong {
  font-size: 1.15rem;
}

.apply {
  background: #fff4e6;
}

.apply-card {
  justify-content: space-between;
  gap: 30px;
  padding: clamp(30px, 5vw, 58px);
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 28, 63, 0.95), rgba(167, 25, 48, 0.86)),
    url("skyward-air-flyer.png");
  background-size: cover;
  background-position: center 66%;
  box-shadow: var(--shadow);
}

.apply-card > div {
  max-width: 760px;
}

.apply-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: #031026;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer p {
  margin: 0;
  font-weight: 900;
  color: white;
}

.site-footer a {
  color: var(--amber);
  font-weight: 800;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    background: rgba(5, 16, 39, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav {
    display: grid;
  }

  .nav a {
    padding: 13px;
  }

  .hero-panel,
  .stats-band,
  .livery-grid,
  .ops-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .section-head,
  .career {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-media img {
    object-position: 58% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 12, 30, 0.92), rgba(4, 12, 30, 0.58)),
      linear-gradient(0deg, rgba(4, 12, 30, 0.82), rgba(4, 12, 30, 0.1));
  }

  .hero-content {
    align-self: start;
    margin: 0;
    width: 100%;
    padding: 114px 18px 32px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.8rem);
  }

  .hero-panel {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin-bottom: 14px;
  }

  .hero-panel article {
    min-height: auto;
    padding: 18px;
  }

  .stats-band,
  .livery-grid,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 132px;
  }

  .stat span {
    margin-bottom: 18px;
  }

  .livery-card,
  .ops-grid article {
    min-height: auto;
  }

  .livery-image,
  .livery-preview {
    height: 235px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .button {
    width: 100%;
  }
}
