:root {
  --bg: #f5f7fa;
  --ink: #101722;
  --muted: #5d6978;
  --panel: #ffffff;
  --line: #d9e0e8;
  --navy: #091624;
  --navy-soft: #12273a;
  --gold: #c79231;
  --gold-soft: #f0c978;
  --sky: #dcebf5;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 76px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: rgba(8, 19, 32, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 1px;
  color: #c9d5e1;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #d8e1eb;
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--navy);
}

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

.hero-media {
  background: url("hero-privatfliegen-clouds.jpg") center center / cover no-repeat;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 15, 26, 0.96) 0%, rgba(6, 15, 26, 0.82) 42%, rgba(6, 15, 26, 0.22) 78%),
    linear-gradient(180deg, rgba(6, 15, 26, 0.12) 40%, rgba(245, 247, 250, 1) 100%);
}

.hero-content,
.section,
.trust-strip,
.cta,
.footer {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-top: 74px;
  padding: 96px 0 150px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-soft);
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4vw, 4.1rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.26rem;
}

.lead {
  max-width: 680px;
  color: #dce6f0;
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  color: #121821;
  background: var(--gold-soft);
}

.button-primary:hover {
  background: #ffd98b;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(26, 39, 55, 0.16);
}

.trust-item {
  min-height: 144px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 8px;
  font-size: 1.03rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 104px 0;
}

.section-soft {
  width: 100%;
  padding-inline: max(22px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, #e9f1f7, #f7f9fb);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 46px;
}

.section-heading p,
.split p,
.instructor p,
.cta-box p {
  color: var(--muted);
  font-size: 1.04rem;
}

.photo-band {
  padding-bottom: 64px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  gap: 18px;
}

.photo-tile {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(26, 39, 55, 0.1);
}

.photo-tile-wide {
  min-height: 420px;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(9, 22, 36, 0), rgba(9, 22, 36, 0.78));
}

.photo-tile figcaption {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: #fff;
  font-weight: 850;
  line-height: 1.25;
}

.approach-section {
  padding-top: 72px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.video-card {
  margin: 0;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(9, 22, 36, 0.8);
  box-shadow: 0 20px 54px rgba(26, 39, 55, 0.16);
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #02070c;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #02070c;
}

.video-card figcaption {
  padding: 24px 26px 26px;
}

.video-card strong,
.video-card p {
  display: block;
}

.video-card strong {
  margin-top: 7px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.video-card p {
  margin: 9px 0 0;
  color: #bdcbd8;
}

.video-kicker {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  min-height: 100%;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(26, 39, 55, 0.08);
}

.card-index {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  display: inline-grid;
  place-items: center;
  color: #775419;
  background: #f6e5bf;
  font-weight: 900;
}

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

.card ul {
  margin: 18px 0 0;
  padding-left: 19px;
}

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

.split {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 58px;
  align-items: center;
}

.licence-transition {
  width: 100%;
  padding-inline: max(22px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: linear-gradient(145deg, #071321, #112a40);
}

.licence-transition > div > p:not(.eyebrow) {
  color: #c7d5e2;
  font-size: 1.04rem;
}

.licence-transition .scope-note {
  padding-left: 18px;
  border-left: 3px solid var(--gold-soft);
}

.tip-panel {
  padding: 34px;
  color: var(--ink);
  background: #fff;
  border-top: 4px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.tip-panel h3 {
  margin: 9px 0 20px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.tip-panel ul {
  margin: 0;
  padding-left: 20px;
}

.tip-panel li {
  color: #344355;
}

.tip-panel li + li {
  margin-top: 9px;
}

.tip-panel p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.tip-label {
  color: #8d641e;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tip-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #805a18;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tip-link:hover {
  color: #4e350a;
}

.quote-panel {
  padding: 34px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  box-shadow: 0 24px 60px rgba(13, 29, 45, 0.2);
}

.quote-panel blockquote {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 820;
  line-height: 1.32;
}

.quote-panel p {
  margin: 24px 0 0;
  color: #c6d4e2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article {
  padding: 26px 22px;
  border-top: 3px solid var(--gold);
  background: #fff;
}

.process-grid span {
  color: #966d25;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-grid h3 {
  margin-top: 12px;
}

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

.instructor {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
}

.instructor-visual {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.02), rgba(7, 17, 31, 0.64)),
    url("training-wing-alps.jpg") center / cover no-repeat;
  box-shadow: 0 22px 60px rgba(26, 39, 55, 0.18);
}

.credential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.credential-grid div {
  min-height: 97px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #273445;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.credential-grid strong,
.credential-grid span {
  display: block;
}

.credential-grid strong {
  margin-bottom: 4px;
  color: var(--ink);
}

.credential-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.note {
  margin-top: 22px;
  color: #7d8895;
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0 22px;
  background: #fff;
  border: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
}

.cta {
  padding: 24px 0 96px;
}

.cta-box {
  padding: clamp(34px, 6vw, 70px);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(9, 22, 36, 0.94), rgba(18, 39, 58, 0.94)),
    url("alpine-panorama.jpg") center / cover no-repeat;
}

.cta-box h2,
.cta-box p {
  max-width: 740px;
  margin-inline: auto;
}

.cta-box p {
  color: #d2deea;
}

.cta-box .actions {
  justify-content: center;
}

.footer {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #697789;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer a:hover {
  color: var(--ink);
}

.legal-page {
  width: min(900px, calc(100% - 44px));
  margin-inline: auto;
  padding: 150px 0 96px;
}

.legal-page h1 {
  max-width: none;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  hyphens: auto;
  overflow-wrap: break-word;
}

.legal-intro {
  max-width: 780px;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.legal-section h3 {
  margin-top: 24px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 7px;
}

.legal-section address {
  color: var(--muted);
  font-style: normal;
}

.legal-section a {
  color: #805a18;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-facts {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) 1fr;
  gap: 10px 24px;
  margin: 0;
}

.legal-facts dt {
  color: var(--ink);
  font-weight: 850;
}

.legal-facts dd {
  margin: 0;
  color: var(--muted);
}

.legal-note {
  padding: 20px 22px;
  background: #eaf1f6;
  border-left: 3px solid var(--gold);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .trust-strip,
  .three,
  .process-grid,
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-tile-wide {
    grid-column: span 2;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .split,
  .instructor {
    grid-template-columns: 1fr;
  }

  .instructor-visual {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

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

  .brand small {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 15, 26, 0.95), rgba(6, 15, 26, 0.72)),
      linear-gradient(180deg, rgba(6, 15, 26, 0.05) 42%, rgba(245, 247, 250, 1) 100%);
  }

  .hero-content,
  .section,
  .trust-strip,
  .cta,
  .footer {
    width: min(var(--max), calc(100% - 28px));
  }

  .licence-transition {
    width: 100%;
    padding-inline: 14px;
  }

  .hero-content {
    padding: 84px 0 120px;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .three,
  .process-grid,
  .credential-grid,
  .photo-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .photo-tile,
  .photo-tile-wide {
    min-height: 280px;
    grid-column: auto;
  }

  .trust-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section,
  .section-soft {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .footer {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-page {
    width: min(900px, calc(100% - 28px));
    padding-top: 112px;
  }

  .legal-page h1 {
    font-size: 2.4rem;
  }

  .legal-facts {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .legal-facts dd + dt {
    margin-top: 12px;
  }
}

/* Alarixx cinematic concept ------------------------------------------------ */

.home-page {
  --bg: #05090d;
  --ink: #f3f7fa;
  --muted: #9caab5;
  --panel: #0b1219;
  --line: rgba(255, 255, 255, 0.13);
  --navy: #05090d;
  --navy-soft: #0c1d26;
  --gold: #8cefd2;
  --gold-soft: #b5ffe8;
  --accent: #7357ff;
  --accent-bright: #8c78ff;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Arial Narrow", "Roboto Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
  overflow-x: hidden;
}

.home-page.menu-open {
  overflow: hidden;
}

.home-page .site-shell {
  overflow: clip;
  background:
    radial-gradient(circle at 78% 28%, rgba(31, 113, 100, 0.12), transparent 28rem),
    var(--bg);
}

.home-page .nav {
  min-height: 86px;
  padding: 0 clamp(22px, 4.5vw, 72px);
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 6, 9, 0.78), transparent);
  border-bottom-color: transparent;
  backdrop-filter: none;
  transition: min-height 0.25s ease, background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.home-page .nav.is-scrolled {
  min-height: 68px;
  background: rgba(4, 8, 12, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.home-page .brand {
  gap: 14px;
  min-width: 200px;
}

.home-page .brand-logo {
  display: block;
  width: 118px;
  height: auto;
  flex: 0 0 auto;
}

.home-page .brand-sector {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-page .nav-links {
  gap: clamp(18px, 2.4vw, 38px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-page .nav-links a {
  position: relative;
  padding: 12px 0;
}

.home-page .nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.home-page .nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-page .nav-links .nav-cta {
  min-width: 142px;
  padding: 13px 25px;
  color: #fff;
  text-align: center;
  background: var(--accent);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-page .nav-links .nav-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.home-page .hero {
  --hero-copy-opacity: 1;
  --hero-aircraft-x: 0vw;
  --hero-aircraft-y: 0vh;
  --hero-aircraft-scale: 1;
  --hero-background-scale: 1.05;
  position: relative;
  min-height: 160svh;
  display: block;
  color: #fff;
  background: #030609;
}

.home-page .hero-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
}

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

.home-page .hero-media {
  z-index: -4;
  background-image: url("hero-privatfliegen-clouds.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.68) contrast(1.16) brightness(0.46) hue-rotate(132deg);
  transform: scale(var(--hero-background-scale));
  transform-origin: center;
  will-change: transform;
}

.home-page .hero-stars {
  z-index: -3;
  opacity: 0.58;
  background-image:
    radial-gradient(circle at 8% 16%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.5px),
    radial-gradient(circle at 21% 62%, rgba(255, 255, 255, 0.68) 0 1px, transparent 1.8px),
    radial-gradient(circle at 36% 26%, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.6px),
    radial-gradient(circle at 54% 78%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.7px),
    radial-gradient(circle at 67% 13%, rgba(255, 255, 255, 0.92) 0 1px, transparent 1.6px),
    radial-gradient(circle at 82% 43%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 92% 84%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.5px);
  background-size: 320px 280px, 370px 330px, 440px 390px, 510px 430px, 590px 480px, 680px 530px, 760px 580px;
  animation: star-drift 22s linear infinite;
}

.home-page .hero-shade {
  z-index: -2;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(15, 151, 122, 0.36), transparent 34%),
    linear-gradient(90deg, rgba(2, 5, 8, 0.52), rgba(2, 5, 8, 0.16) 52%, rgba(2, 5, 8, 0.72)),
    linear-gradient(180deg, rgba(2, 5, 8, 0.06), rgba(2, 5, 8, 0.2) 60%, #05090d 100%);
}

.home-page .hero-wordmark {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: -1.2vw;
  display: grid;
  color: rgba(255, 255, 255, 0.11);
  font-size: clamp(4.9rem, 10.2vw, 10.5rem);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 0.78;
  text-transform: uppercase;
  filter: blur(0.2px);
  transform: translate3d(0, var(--hero-wordmark-y, 0), 0);
  user-select: none;
  white-space: nowrap;
}

.home-page .hero-wordmark span:nth-child(2) {
  margin-left: 8vw;
}

.home-page .hero-wordmark span:nth-child(3) {
  margin-left: 1.5vw;
}

.home-page .hero-aircraft {
  position: absolute;
  z-index: 1;
  right: -8vw;
  bottom: 3vh;
  width: clamp(650px, 65vw, 1050px);
  pointer-events: none;
  transform: translate3d(var(--hero-aircraft-x), var(--hero-aircraft-y), 0) scale(var(--hero-aircraft-scale));
  transform-origin: 68% 64%;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.72));
  will-change: transform;
}

.home-page .hero-aircraft img {
  width: 100%;
  height: auto;
  display: block;
}

.home-page .hero-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: clamp(22px, 5vw, 82px);
  width: min(710px, calc(100% - 44px));
  max-width: none;
  margin: 0;
  padding: 0;
  opacity: var(--hero-copy-opacity);
  transform: translateY(-50%);
  will-change: opacity, transform;
}

.home-page .hero .eyebrow {
  margin-bottom: 23px;
  color: var(--gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
}

.home-page .hero h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(3.45rem, 6.4vw, 7rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 0.91;
  text-transform: uppercase;
}

.home-page .hero h1 span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.58em;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.home-page .hero .lead {
  max-width: 580px;
  color: rgba(238, 247, 249, 0.77);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.home-page .button {
  min-height: 48px;
  padding: 13px 23px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-page .button-primary {
  color: #fff;
  background: var(--accent);
}

.home-page .button-primary:hover {
  background: var(--accent-bright);
}

.home-page .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(4, 9, 13, 0.32);
  backdrop-filter: blur(12px);
}

.home-page .hero-scroll {
  position: absolute;
  z-index: 4;
  right: 42px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .hero-scroll i {
  position: relative;
  width: 32px;
  height: 32px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.home-page .hero-scroll i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  animation: scroll-cue 1.6s ease-in-out infinite;
}

.home-page .section,
.home-page .trust-strip,
.home-page .cta,
.home-page .footer {
  width: min(var(--max), calc(100% - 64px));
}

.home-page .section {
  position: relative;
  padding: 130px 0;
}

.home-page .manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.72fr);
  gap: clamp(58px, 9vw, 140px);
  align-items: end;
  padding-top: 170px;
  padding-bottom: 170px;
}

.home-page .manifesto h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3.5rem, 7.2vw, 7rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.home-page .manifesto-copy {
  padding-bottom: 7px;
}

.home-page .manifesto-copy p {
  color: #9eabb4;
  font-size: 1.02rem;
}

.home-page .text-link {
  margin-top: 27px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-page .text-link span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.home-page .trust-strip {
  z-index: 2;
  margin-top: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.home-page .trust-item {
  min-height: 172px;
  padding: 34px 30px;
  border-color: rgba(255, 255, 255, 0.12);
}

.home-page .trust-item strong {
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.home-page .trust-item > span {
  color: #87949f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-page .metric-value,
.home-page .metric-arrow {
  color: var(--gold);
}

.home-page .photo-band {
  width: 100%;
  max-width: none;
  margin-top: 138px;
  padding: 132px max(32px, calc((100vw - var(--max)) / 2));
  color: #0a1015;
  background: #e9ecee;
}

.home-page .photo-band .eyebrow {
  color: #456c63;
}

.home-page .photo-band .section-heading p {
  color: #53606a;
}

.home-page .photo-grid {
  gap: 14px;
}

.home-page .photo-tile {
  min-height: 380px;
  border: 0;
  border-radius: 22px;
  box-shadow: none;
}

.home-page .photo-tile-wide {
  min-height: 530px;
}

.home-page .photo-tile img {
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-page .photo-tile:hover img {
  transform: scale(1.035);
}

.home-page .photo-tile figcaption {
  left: 24px;
  bottom: 22px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page h2 {
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.home-page h3 {
  letter-spacing: -0.025em;
}

.home-page .section-heading {
  max-width: 850px;
}

.home-page .section-heading h2 {
  font-size: clamp(3rem, 5.6vw, 5.7rem);
  text-transform: uppercase;
}

.home-page .section-heading p,
.home-page .split p,
.home-page .instructor p,
.home-page .cta-box p {
  color: var(--muted);
}

.home-page .approach-section {
  padding-top: 150px;
}

.home-page .video-grid {
  gap: 18px;
}

.home-page .video-card {
  color: #fff;
  background: #0a1118;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: none;
}

.home-page .video-frame {
  background: #010305;
}

.home-page .video-card figcaption {
  padding: 28px 29px 30px;
}

.home-page .video-kicker {
  color: var(--gold);
}

.home-page .card-grid {
  gap: 16px;
}

.home-page .card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.home-page .card:hover {
  transform: translateY(-7px);
  border-color: rgba(140, 239, 210, 0.38);
  background: linear-gradient(145deg, rgba(140, 239, 210, 0.09), rgba(255, 255, 255, 0.025));
}

.home-page .card-index {
  color: var(--gold);
  background: rgba(140, 239, 210, 0.09);
  border-radius: 50%;
}

.home-page .card p,
.home-page .card li {
  color: #98a5af;
}

.home-page .licence-transition {
  width: 100%;
  max-width: none;
  padding: 150px max(32px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 78% 28%, rgba(38, 185, 155, 0.23), transparent 30rem),
    linear-gradient(145deg, #061018, #081b20 62%, #091219);
}

.home-page .tip-panel {
  padding: clamp(30px, 4.2vw, 54px);
  color: #0b1117;
  background: rgba(235, 244, 241, 0.97);
  border-top: 0;
  border-radius: 24px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32);
}

.home-page .tip-panel h3 {
  color: #0b1117;
}

.home-page .tip-label,
.home-page .tip-link {
  color: #246c5c;
}

.home-page .section-soft {
  width: 100%;
  max-width: none;
  padding: 150px max(32px, calc((100vw - var(--max)) / 2));
  color: #0c1319;
  background: #edf0f1;
}

.home-page .section-soft .eyebrow {
  color: #356f61;
}

.home-page .section-soft h2,
.home-page .section-soft h3 {
  color: #0c1319;
}

.home-page .section-soft p {
  color: #53616b;
}

.home-page .quote-panel {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(3, 9, 13, 0.84), rgba(6, 26, 30, 0.9)),
    url("hero-privatfliegen-clouds.jpg") center / cover no-repeat;
  border-radius: 24px;
  box-shadow: none;
}

.home-page .process-grid {
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.home-page .process-grid article {
  min-height: 260px;
  padding: 32px 26px;
  color: #fff;
  background: #080e14;
  border-top: 0;
}

.home-page .process-grid span {
  color: var(--gold);
}

.home-page .process-grid p {
  color: #8d9aa4;
}

.home-page .instructor-visual {
  min-height: 650px;
  border-radius: 24px;
  box-shadow: none;
}

.home-page .credential-grid div {
  color: #0c1319;
  background: #fff;
  border-color: #d3dade;
  border-radius: 20px;
}

.home-page .credential-grid strong {
  color: #101a21;
}

.home-page .credential-grid span {
  color: #4c5e69;
}

.home-page .faq-list {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.home-page details {
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.home-page summary {
  position: relative;
  padding: 27px 58px 27px 0;
  color: #fff;
  font-size: 1.05rem;
}

.home-page summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 300;
  transform: translateY(-50%);
}

.home-page details[open] summary::after {
  content: "−";
}

.home-page details p {
  max-width: 850px;
  color: #93a1ab;
}

.home-page .cta {
  width: min(1320px, calc(100% - 64px));
  padding: 58px 0 110px;
}

.home-page .cta-box {
  position: relative;
  min-height: 620px;
  display: grid;
  place-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 8, 12, 0.22), rgba(3, 8, 12, 0.95)),
    linear-gradient(90deg, rgba(3, 8, 12, 0.78), rgba(3, 8, 12, 0.14)),
    url("alpine-panorama.jpg") center / cover no-repeat;
  border-radius: 48% 48% 0 0 / 18% 18% 0 0;
}

.home-page .cta-box::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  width: min(72vw, 860px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140, 239, 210, 0.75), transparent);
  box-shadow: 0 0 42px rgba(140, 239, 210, 0.8);
  transform: translateX(-50%);
}

.home-page .cta-box h2 {
  font-size: clamp(3.1rem, 6vw, 6.4rem);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.home-page .footer {
  min-height: 96px;
  color: #788690;
  border-color: rgba(255, 255, 255, 0.1);
}

.home-page .footer a:hover {
  color: #fff;
}

.home-page .reveal-ready {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.72s ease var(--reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.2, 0.72, 0.2, 1) var(--reveal-delay, 0ms);
}

.home-page .reveal-ready.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes star-drift {
  from { background-position: 0 0; }
  to { background-position: 70px 34px; }
}

@keyframes scroll-cue {
  0%, 100% { transform: translateY(-1px) rotate(45deg); opacity: 0.35; }
  50% { transform: translateY(5px) rotate(45deg); opacity: 1; }
}

@media (max-width: 1050px) {
  .home-page .hero-aircraft {
    right: -22vw;
    width: 86vw;
    opacity: 0.82;
  }

  .home-page .manifesto {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-page .manifesto-copy {
    max-width: 680px;
  }
}

@media (max-width: 980px) {
  .home-page .nav {
    min-height: 72px;
    padding-inline: 22px;
  }

  /*
   * A backdrop-filter makes the fixed header a containing block. When the
   * full-screen menu opens inside that header, some Safari/Chromium versions
   * then size it to the header instead of the viewport.
   */
  .home-page.menu-open .nav.is-scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: none;
  }

  .home-page .menu-toggle {
    position: relative;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 8px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
  }

  .home-page .menu-toggle span {
    width: 28px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 0.22s ease;
  }

  .home-page .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .home-page .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .home-page .nav-links {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 96px 30px 42px;
    visibility: hidden;
    opacity: 0;
    color: #fff;
    background:
      radial-gradient(circle at 18% 20%, rgba(39, 155, 127, 0.26), transparent 22rem),
      rgba(3, 7, 10, 0.98);
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }

  .home-page .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .home-page .nav-links a {
    width: 100%;
    padding: 11px 0;
    font-size: clamp(1.55rem, 7vw, 2.6rem);
    letter-spacing: -0.02em;
  }

  .home-page .nav-links .nav-cta {
    width: auto;
    margin-top: 24px;
    padding: 14px 28px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .home-page .trust-strip,
  .home-page .three,
  .home-page .process-grid,
  .home-page .photo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .home-page .brand {
    min-width: 0;
  }

  .home-page .brand-logo {
    width: 104px;
  }

  .home-page .brand-sector {
    padding-left: 10px;
    font-size: 0.52rem;
    letter-spacing: 0.2em;
  }

  .home-page .hero {
    min-height: 118svh;
  }

  .home-page .hero-stage {
    min-height: 620px;
  }

  .home-page .hero-content {
    top: 46%;
    left: 18px;
    width: calc(100% - 36px);
  }

  .home-page .hero h1 {
    max-width: 355px;
    margin-bottom: 19px;
    font-size: clamp(3.05rem, 14vw, 4rem);
  }

  .home-page .hero .lead {
    max-width: 340px;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .home-page .hero .actions {
    width: min(285px, 100%);
    margin-top: 24px;
  }

  .home-page .hero-wordmark {
    top: 15%;
    left: -2vw;
    font-size: 18vw;
    line-height: 0.85;
  }

  .home-page .hero-wordmark span:nth-child(2) {
    margin-left: 0;
  }

  .home-page .hero-wordmark span:nth-child(3) {
    margin-left: 0;
  }

  .home-page .hero-aircraft {
    right: -54vw;
    bottom: -1vh;
    width: 145vw;
    opacity: 0.54;
  }

  .home-page .hero-scroll {
    right: 18px;
    bottom: 18px;
  }

  .home-page .hero-scroll span {
    display: none;
  }

  .home-page .section,
  .home-page .trust-strip,
  .home-page .cta,
  .home-page .footer {
    width: calc(100% - 28px);
  }

  .home-page .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .home-page .manifesto {
    padding-top: 118px;
    padding-bottom: 118px;
  }

  .home-page .manifesto h2,
  .home-page .section-heading h2 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .home-page .trust-strip,
  .home-page .three,
  .home-page .process-grid,
  .home-page .credential-grid,
  .home-page .photo-grid,
  .home-page .video-grid {
    grid-template-columns: 1fr;
  }

  .home-page .trust-item {
    min-height: 128px;
    padding: 27px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-page .photo-band {
    width: 100%;
    margin-top: 90px;
    padding: 96px 14px;
  }

  .home-page .photo-tile,
  .home-page .photo-tile-wide {
    min-height: 300px;
  }

  .home-page .licence-transition,
  .home-page .section-soft {
    width: 100%;
    padding: 100px 14px;
  }

  .home-page .tip-panel,
  .home-page .quote-panel {
    padding: 28px 22px;
  }

  .home-page .process-grid {
    gap: 1px;
  }

  .home-page .process-grid article {
    min-height: 220px;
  }

  .home-page .instructor-visual {
    min-height: 480px;
  }

  .home-page .cta {
    width: calc(100% - 20px);
  }

  .home-page .cta-box {
    min-height: 660px;
    padding: 54px 20px;
    border-radius: 48% 48% 0 0 / 8% 8% 0 0;
  }

  .home-page .cta-box h2 {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
  }
}

@media (max-height: 540px) and (orientation: landscape) {
  .home-page .nav {
    min-height: 58px;
  }

  .home-page .brand-logo {
    width: 96px;
  }

  .home-page .hero,
  .home-page .hero-stage {
    min-height: 540px;
  }

  .home-page .hero-content {
    top: 53%;
    max-width: 590px;
  }

  .home-page .hero h1 {
    margin-bottom: 13px;
    font-size: clamp(2.6rem, 7vw, 4.3rem);
  }

  .home-page .hero .lead {
    max-width: 500px;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .home-page .hero .eyebrow {
    margin-bottom: 12px;
  }

  .home-page .hero .actions {
    flex-direction: row;
    margin-top: 16px;
  }

  .home-page .hero .button {
    width: auto;
    min-height: 42px;
    padding-block: 10px;
  }

  .home-page .hero-aircraft {
    right: -12vw;
    bottom: -21vh;
    width: 67vw;
    opacity: 0.62;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .home-page .hero {
    min-height: 100svh;
  }

  .home-page .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
