:root {
  color-scheme: light dark;
  --accent: #1878d1;
  --accent-strong: #0967bd;
  --accent-soft: rgba(24, 120, 209, 0.11);
  --page: #f4f6f8;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #fbfcfd;
  --surface-muted: #edf1f5;
  --text: #17212b;
  --text-secondary: #5d6a76;
  --line: rgba(23, 33, 43, 0.1);
  --shadow: 0 22px 60px rgba(41, 57, 73, 0.1);
  --radius-card: 24px;
  --radius-inset: 16px;
  --content-width: 1120px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #62adf2;
    --accent-strong: #88c5fb;
    --accent-soft: rgba(98, 173, 242, 0.15);
    --page: #0b1015;
    --surface: rgba(24, 31, 39, 0.84);
    --surface-solid: #181f27;
    --surface-muted: #212a34;
    --text: #f4f7fa;
    --text-secondary: #aab6c2;
    --line: rgba(235, 243, 250, 0.11);
    --shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  background:
    radial-gradient(circle at 80% -10%, var(--accent-soft), transparent 34rem),
    var(--page);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
  transition: color 160ms ease;
}

a:hover {
  color: var(--text);
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 70%, transparent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--surface-solid);
  color: var(--text);
  box-shadow: var(--shadow);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin-inline: auto;
}

.topbar-wrap {
  position: sticky;
  z-index: 20;
  top: 0;
  padding: 12px 0;
  background: color-mix(in srgb, var(--page) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.topbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 10px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(31, 46, 61, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--text);
  font-weight: 720;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 7px 17px rgba(28, 80, 124, 0.2);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.hero {
  min-height: min(690px, calc(100dvh - 82px));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
  padding: clamp(62px, 10vh, 112px) 0 72px;
}

.release-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

h1 {
  max-width: min(100%, 13ch);
  margin-bottom: 22px;
  font-size: clamp(42px, calc(30px + 2.8vw), 68px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
  text-align: start;
  text-wrap: pretty;
  word-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--text-secondary);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 680;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 11px 25px color-mix(in srgb, var(--accent) 26%, transparent);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface-solid);
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: visible;
}

.hero-photo-stage {
  min-height: 500px;
  align-content: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}

.hero-photo-stage::before {
  display: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: 54% center;
}

.hero-photo-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  background: rgba(12, 24, 36, 0.74);
  color: #f7fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.hero-photo-caption img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

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

.hero-photo-caption strong {
  font-size: 16px;
}

.hero-photo-caption span {
  color: rgba(247, 250, 252, 0.74);
  font-size: 12px;
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  width: min(calc(100% - 8px), 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent) 7%, transparent) 0,
    color-mix(in srgb, var(--accent) 4%, transparent) 46%,
    transparent 74%
  );
  content: "";
  pointer-events: none;
}

.route-orbit {
  position: absolute;
  z-index: 1;
  width: min(calc(100% - 28px), 390px);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 50%;
  opacity: 0.86;
  transform: rotate(-14deg);
}

.route-orbit::before,
.route-orbit::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px var(--accent-soft);
  content: "";
}

.route-orbit::before {
  top: 42px;
  right: 48px;
}

.route-orbit::after {
  bottom: 51px;
  left: 38px;
}

.app-stage {
  position: relative;
  z-index: 2;
  width: min(84%, 310px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--surface-solid) 78%, transparent),
    var(--shadow);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.app-stage img {
  width: 94px;
  height: 94px;
  margin-bottom: 24px;
  border-radius: 23px;
  box-shadow: 0 15px 34px rgba(33, 80, 120, 0.24);
}

.app-stage strong,
.app-stage span {
  display: block;
}

.app-stage strong {
  margin-bottom: 5px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.app-stage span {
  color: var(--text-secondary);
  font-size: 14px;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.platform-list span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 650;
}

.section {
  padding: 56px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading p,
.legal-intro,
.muted {
  color: var(--text-secondary);
}

.surface {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.topic {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-solid);
}

.topic-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.topic-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 760;
}

.topic p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.subscription-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  padding: clamp(24px, 5vw, 44px);
}

.plan-stack {
  display: grid;
  gap: 10px;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 17px 18px;
  border-radius: var(--radius-inset);
  background: var(--surface-muted);
}

.plan-row strong,
.plan-row span {
  display: block;
}

.plan-row span {
  color: var(--text-secondary);
  font-size: 14px;
}

.plan-label {
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 700;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-solid);
  overflow: clip;
}

.faq-list summary {
  position: relative;
  padding: 19px 54px 19px 20px;
  cursor: pointer;
  font-weight: 680;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 21px;
  color: var(--accent-strong);
  font-size: 22px;
  font-weight: 400;
  content: "+";
  transform: translateY(-52%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--text-secondary);
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
  margin-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: clamp(26px, 5vw, 44px);
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 72px;
}

.legal-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 3px;
  padding: 13px;
}

.legal-toc a {
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.legal-toc a:hover {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.legal-article {
  padding: clamp(24px, 5vw, 52px);
}

.legal-section {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  font-size: clamp(24px, 3.5vw, 31px);
}

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

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

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

.data-item {
  padding: 16px;
  border-radius: var(--radius-inset);
  background: var(--surface-muted);
}

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

.data-item span {
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 14px;
}

.callout {
  margin: 20px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  border-radius: 4px var(--radius-inset) var(--radius-inset) 4px;
  background: var(--accent-soft);
}

.callout p:last-child {
  margin-bottom: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 14px;
}

.choice-card {
  padding: 25px;
}

.choice-card ul {
  padding-left: 20px;
}

.site-footer {
  padding: 34px 0 46px;
  color: var(--text-secondary);
  font-size: 13px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
}

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

.site-registration {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  column-gap: 18px;
  margin-top: 14px;
  padding-top: 14px;
}

.registration-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.registration-link:hover,
.registration-link:focus-visible {
  color: var(--text);
}

.registration-link-police {
  gap: 7px;
}

.registration-link-police img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: clamp(42px, 7vw, 58px) 0 58px;
  }

  h1 {
    max-width: min(100%, 12.5ch);
    font-size: clamp(40px, 7vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .hero-visual {
    min-height: clamp(360px, 59vw, 420px);
  }

  .hero-photo-stage,
  .hero-photo {
    min-height: clamp(430px, 68vw, 540px);
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .legal-toc a {
    white-space: nowrap;
  }

  .subscription-panel,
  .choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(calc(100% - 22px), var(--content-width));
  }

  .topbar-wrap {
    padding: 8px 0;
  }

  .topbar {
    min-height: 54px;
    gap: 8px;
    padding: 7px 8px;
  }

  .brand span {
    display: none;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
  }

  .nav-link {
    padding: 8px 9px;
    font-size: 13px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.035em;
  }

  .hero {
    gap: 24px;
    padding: 30px 0 42px;
  }

  .release-kicker {
    margin-bottom: 16px;
    padding: 6px 10px;
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: clamp(17px, 4.8vw, 19px);
    line-height: 1.55;
  }

  .hero-visual {
    min-height: clamp(318px, calc(100vw - 10px), 380px);
  }

  .hero-photo-stage,
  .hero-photo {
    min-height: clamp(390px, 118vw, 480px);
  }

  .hero-photo-stage {
    border-radius: 28px;
  }

  .route-orbit {
    width: min(calc(100% - 24px), 354px);
    transform: none;
  }

  .app-stage {
    width: min(90%, 310px);
    padding: 24px;
    border-radius: 28px;
  }

  .app-stage img {
    width: 82px;
    height: 82px;
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .app-stage strong {
    font-size: 22px;
  }

  .topic,
  .choice-card {
    padding: 20px;
  }

  .subscription-panel,
  .contact-panel,
  .legal-article {
    padding: 20px;
  }

  .legal-section {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .topic-grid,
  .data-map {
    grid-template-columns: 1fr;
  }

  .topic-wide {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .footer-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-registration {
    grid-template-columns: max-content max-content;
    align-items: center;
    justify-content: space-between;
    column-gap: 8px;
    font-size: clamp(10px, 3vw, 12px);
  }

  .registration-link-police {
    gap: 4px;
  }

  .registration-link-police img {
    width: 16px;
    height: 16px;
  }

  .section {
    padding: 40px 0;
  }

  .legal-article {
    border-radius: 20px;
  }
}

@media (max-width: 380px) {
  .site-shell {
    width: min(calc(100% - 18px), var(--content-width));
  }

  .nav-link {
    padding-inline: 7px;
    font-size: 12px;
  }

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

  .button {
    min-width: 0;
    padding-inline: 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  .plan-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .topbar-wrap {
    background: var(--page);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .topbar,
  .app-stage,
  .surface,
  .hero-photo-caption {
    background: var(--surface-solid);
    color: var(--text);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-photo-caption span {
    color: var(--text-secondary);
  }
}

/* Cabin Crew visual identity: cool cabin materials, duty flow, and crew-manifest details. */
:root {
  --accent: #176fba;
  --accent-strong: #0b528f;
  --accent-soft: rgba(23, 111, 186, 0.1);
  --page: #f1f4f6;
  --surface: rgba(252, 253, 254, 0.88);
  --surface-solid: #fcfdfe;
  --surface-muted: #e9eef2;
  --text: #15202a;
  --text-secondary: #566775;
  --line: rgba(21, 32, 42, 0.12);
  --shadow: 0 24px 68px rgba(28, 54, 76, 0.11);
  --radius-card: 22px;
  --radius-inset: 14px;
  --cabin-deep: #0d2538;
  --cabin-metal: #d8e0e6;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #69afe8;
    --accent-strong: #90c9f5;
    --accent-soft: rgba(105, 175, 232, 0.14);
    --page: #091118;
    --surface: rgba(20, 30, 39, 0.9);
    --surface-solid: #141e27;
    --surface-muted: #1c2a35;
    --text: #f2f6f8;
    --text-secondary: #a7b7c4;
    --line: rgba(224, 237, 247, 0.13);
    --shadow: 0 28px 74px rgba(0, 0, 0, 0.28);
    --cabin-deep: #08131d;
    --cabin-metal: #243543;
  }

  .button-primary {
    color: #07131d;
  }
}

body {
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--accent) 5%, transparent), transparent 38%),
    linear-gradient(180deg, var(--page), color-mix(in srgb, var(--page) 96%, var(--cabin-metal)));
}

.topbar-wrap {
  padding: 10px 0;
  background: color-mix(in srgb, var(--page) 86%, transparent);
}

.topbar {
  min-height: 62px;
  padding: 8px 12px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-solid) 88%, transparent);
  box-shadow: 0 10px 34px rgba(28, 54, 76, 0.06);
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.nav-link {
  border-radius: 10px;
}

.hero {
  min-height: min(720px, calc(100dvh - 82px));
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 1.02fr);
  gap: clamp(40px, 5vw, 64px);
  padding: clamp(42px, 7vh, 76px) 0 68px;
}

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

.release-kicker {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 11px;
  letter-spacing: 0.17em;
}

h1 {
  max-width: 13ch;
  font-size: clamp(44px, calc(31px + 2.1vw), 60px);
  line-height: 1.08;
}

.hero-lead {
  max-width: 29em;
}

.button:active {
  transform: scale(0.98);
}

.hero-photo-stage {
  height: min(670px, calc(100dvh - 140px));
  min-height: 540px;
  border-radius: 28px 28px 28px 10px;
  background: var(--cabin-deep);
  box-shadow: 0 34px 90px rgba(15, 46, 71, 0.2);
}

.hero-photo-stage::after {
  position: absolute;
  inset: 44% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(5, 17, 27, 0.46));
  content: "";
  pointer-events: none;
}

.hero-photo {
  min-height: 0;
  object-position: 50% 46%;
}

.hero-photo-caption {
  right: 22px;
  bottom: 22px;
  left: 22px;
  border-radius: 16px;
  background: rgba(7, 25, 39, 0.78);
}

.hero-photo-caption img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.duty-route {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.duty-route-heading h2 {
  max-width: 12em;
  margin-bottom: 8px;
  font-size: clamp(25px, 3vw, 34px);
}

.duty-route-heading p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.duty-route-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.duty-route-track > div {
  min-width: 0;
  padding: 17px 0 2px 14px;
  border-left: 3px solid color-mix(in srgb, var(--accent) 72%, var(--cabin-metal));
}

.duty-route-track strong,
.duty-route-track span {
  display: block;
}

.duty-route-track strong {
  font-size: 14px;
}

.duty-route-track span {
  margin-top: 5px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.5;
}

.section {
  padding: 68px 0;
}

.topic-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.topic,
.topic-wide {
  grid-column: span 4;
  display: block;
  min-height: 212px;
  padding: 26px;
  border-radius: var(--radius-card);
}

.topic:nth-child(1) {
  grid-column: span 7;
  background:
    linear-gradient(135deg, var(--accent-soft), transparent 72%),
    var(--surface-solid);
}

.topic:nth-child(2) {
  grid-column: span 5;
  background: var(--surface-muted);
}

.topic:nth-child(5) {
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent 62%),
    var(--surface-solid);
}

.topic-mark {
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 0;
  background: transparent;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
}

.topic h3 {
  font-size: 20px;
}

.crew-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.82fr);
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 28px 28px 10px 28px;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}

.crew-story-photo {
  min-height: 410px;
  margin: 0;
}

.crew-story-photo img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.crew-story-copy {
  align-self: center;
  padding: clamp(30px, 5vw, 58px);
}

.crew-story-copy p {
  color: var(--text-secondary);
}

.crew-facts {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.crew-facts span {
  color: var(--text-secondary);
  font-size: 14px;
}

.crew-facts strong {
  display: inline-block;
  min-width: 50px;
  color: var(--text);
}

.crew-pass {
  position: relative;
  overflow: hidden;
  border-radius: 28px 28px 10px 28px;
  background:
    linear-gradient(120deg, var(--accent-soft), transparent 35%),
    var(--surface);
}

.crew-pass::before {
  position: absolute;
  inset: 0 auto 0 calc(39% - 1px);
  border-left: 1px dashed color-mix(in srgb, var(--text-secondary) 28%, transparent);
  content: "";
  pointer-events: none;
}

.crew-pass .plan-stack {
  gap: 0;
}

.crew-pass .plan-row {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.crew-pass .plan-row:last-of-type {
  border-bottom: 0;
}

.contact-panel {
  border-radius: 28px 28px 10px 28px;
  background:
    linear-gradient(120deg, var(--accent-soft), transparent 46%),
    var(--surface);
}

.privacy-visual {
  min-height: 560px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px 28px 28px 10px;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}

.privacy-visual::before {
  display: none;
}

.privacy-cabin-photo {
  min-height: 390px;
  overflow: hidden;
}

.privacy-cabin-photo img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: 58% center;
}

.privacy-manifest {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  background: var(--surface-solid);
}

.privacy-manifest img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.privacy-manifest strong,
.privacy-manifest span {
  display: block;
}

.privacy-manifest span {
  margin-top: 3px;
  color: var(--text-secondary);
  font-size: 13px;
}

.choice-flight-board {
  position: relative;
  width: min(100%, 410px);
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px 28px 10px 28px;
  background:
    linear-gradient(145deg, var(--accent-soft), transparent 44%),
    var(--surface-solid);
  box-shadow: var(--shadow);
}

.choice-flight-board::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--accent);
  content: "";
}

.choice-board-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
}

.choice-board-head img {
  width: 62px;
  height: 62px;
  border-radius: 15px;
}

.choice-board-head strong,
.choice-board-head span,
.boundary-row strong,
.boundary-row span {
  display: block;
}

.choice-board-head span,
.boundary-row span {
  color: var(--text-secondary);
  font-size: 13px;
}

.boundary-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.boundary-row strong {
  font-size: 14px;
}

.choice-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.choice-card {
  grid-column: span 5;
  border-radius: var(--radius-card);
  box-shadow: none;
}

.choice-card:nth-child(1),
.choice-card:nth-child(4) {
  grid-column: span 7;
}

.choice-card:nth-child(1) {
  background:
    linear-gradient(135deg, var(--accent-soft), transparent 64%),
    var(--surface-solid);
}

.choice-card:nth-child(3) {
  background: var(--surface-muted);
}

.legal-toc {
  overflow: hidden;
  border-radius: 16px 16px 6px 16px;
  box-shadow: none;
}

.legal-toc::before {
  height: 4px;
  margin: -13px -13px 8px;
  background: var(--accent);
  content: "";
}

.legal-article {
  border-radius: 28px 28px 10px 28px;
  box-shadow: 0 18px 58px rgba(28, 54, 76, 0.08);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual {
    animation: cabin-enter 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-visual {
    animation-delay: 90ms;
  }
}

@keyframes cabin-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 44px 0 58px;
  }

  .hero-photo-stage,
  .hero-photo {
    height: min(720px, 92vw);
    min-height: 520px;
  }

  .duty-route {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .duty-route-heading h2 {
    max-width: 18em;
  }

  .crew-story {
    grid-template-columns: 1fr;
  }

  .crew-pass::before {
    display: none;
  }

  .privacy-visual {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .topic-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .topic,
  .topic-wide,
  .topic:nth-child(1),
  .topic:nth-child(2),
  .choice-card,
  .choice-card:nth-child(1),
  .choice-card:nth-child(4) {
    grid-column: auto;
  }

  .duty-route-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hero {
    gap: 28px;
    padding: 32px 0 44px;
  }

  .hero-photo-stage,
  .hero-photo {
    height: clamp(450px, 134vw, 570px);
    min-height: 0;
  }

  .hero-photo-stage,
  .privacy-visual,
  .crew-story,
  .crew-pass,
  .contact-panel,
  .choice-flight-board,
  .legal-article {
    border-radius: 22px 22px 8px 22px;
  }

  .hero-photo-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .duty-route {
    padding: 30px 0;
  }

  .section {
    padding: 48px 0;
  }

  .topic,
  .topic-wide {
    min-height: 0;
  }

  .crew-story-photo,
  .crew-story-photo img {
    min-height: 260px;
  }

  .crew-story-copy {
    padding: 26px 22px;
  }

  .privacy-visual {
    min-height: 430px;
  }

  .privacy-cabin-photo,
  .privacy-cabin-photo img {
    min-height: 300px;
  }

  .choice-flight-board {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .duty-route-track {
    grid-template-columns: 1fr;
  }

  .duty-route-track > div {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .boundary-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .topbar,
  .privacy-manifest,
  .choice-flight-board,
  .crew-pass,
  .contact-panel {
    background: var(--surface-solid);
  }
}

/* Airport editorial cover: app-native terminal photography with restrained Apple-style type. */
.editorial-hero {
  position: relative;
  height: min(820px, calc(100svh - 104px));
  min-height: 680px;
  isolation: isolate;
  overflow: hidden;
  margin-top: 22px;
  margin-bottom: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: #0b1b29;
  box-shadow: 0 34px 92px rgba(12, 34, 51, 0.22);
  color: #ffffff;
}

.editorial-hero-photo,
.editorial-hero-shade,
.editorial-hero-content {
  position: absolute;
  inset: 0;
}

.editorial-hero-photo {
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 48%;
}

.editorial-hero-shade {
  z-index: -1;
  background: rgba(2, 12, 21, 0.28);
  box-shadow: inset 0 -260px 220px -120px rgba(0, 8, 15, 0.82);
}

.editorial-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(40px, 5vw, 58px);
}

.editorial-hero-brand strong,
.editorial-hero-brand span {
  display: block;
  white-space: nowrap;
}

.editorial-hero-brand strong {
  font-size: clamp(44px, 5.2vw, 70px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.22);
}

.editorial-hero-brand span {
  margin-top: 18px;
  font-size: clamp(20px, 2.15vw, 29px);
  font-weight: 430;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.editorial-hero-copy {
  max-width: 100%;
}

.editorial-page-label {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.editorial-hero h1 {
  max-width: none;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.08;
  overflow-wrap: normal;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.42);
  white-space: nowrap;
}

.editorial-hero .hero-lead {
  max-width: none;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.44);
  white-space: nowrap;
}

.editorial-hero .button-primary {
  background: #f7f9fb;
  color: #102536;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.editorial-hero .button-primary:hover {
  background: #ffffff;
  color: #0b1b29;
}

.editorial-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(7, 20, 31, 0.44);
  color: #ffffff;
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

.editorial-hero .button-secondary:hover {
  background: rgba(7, 20, 31, 0.68);
  color: #ffffff;
}

.duty-route {
  display: block;
}

.duty-route-heading {
  margin-bottom: 28px;
}

.duty-route-heading h2,
.section-heading {
  max-width: none;
}

.crew-story-terminal {
  display: block;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: #0d2538;
  color: #f7fafc;
}

.crew-story-terminal .crew-story-copy {
  padding: clamp(34px, 5vw, 58px);
}

.crew-story-terminal h2 {
  margin-bottom: 10px;
  color: #ffffff;
}

.crew-story-terminal .crew-story-copy p,
.crew-story-terminal .crew-facts span {
  color: rgba(242, 247, 250, 0.7);
}

.crew-story-terminal .crew-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-color: rgba(255, 255, 255, 0.14);
}

.crew-story-terminal .crew-facts strong {
  color: #ffffff;
}

@media (min-width: 961px) {
  .duty-route-heading h2,
  .duty-route-heading p,
  .section-heading h2,
  .section-heading p,
  .crew-story-terminal h2,
  .crew-story-terminal .crew-story-copy > p {
    white-space: nowrap;
  }
}

@media (max-width: 960px) {
  .editorial-hero {
    height: min(780px, calc(100svh - 104px));
    min-height: 650px;
  }

  .editorial-hero h1 {
    font-size: clamp(36px, 5.2vw, 48px);
  }

  .crew-story-terminal .crew-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .editorial-hero {
    width: min(calc(100% - 24px), var(--content-width));
    height: min(760px, calc(100svh - 94px));
    min-height: 620px;
    margin-top: 12px;
    margin-bottom: 28px;
    border-radius: 26px;
  }

  .editorial-hero-photo {
    object-position: 50% 52%;
  }

  .editorial-hero-content {
    padding: 30px 26px;
  }

  .editorial-hero-brand strong,
  .editorial-hero-brand span,
  .editorial-hero h1,
  .editorial-hero .hero-lead {
    white-space: normal;
  }

  .editorial-hero-brand strong {
    font-size: clamp(40px, 12vw, 52px);
  }

  .editorial-hero-brand span {
    margin-top: 12px;
    font-size: clamp(18px, 5.4vw, 24px);
  }

  .editorial-hero h1 {
    font-size: clamp(33px, 9vw, 43px);
    text-wrap: balance;
  }

  .editorial-hero .hero-lead {
    font-size: 16px;
    text-wrap: pretty;
  }

  .crew-story-terminal .crew-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .editorial-hero {
    min-height: 590px;
  }

  .editorial-hero-content {
    padding: 26px 22px;
  }

  .editorial-hero .button-row {
    gap: 8px;
  }

  .editorial-hero .button {
    min-height: 44px;
    padding-inline: 15px;
    font-size: 14px;
  }

}

@media (prefers-reduced-transparency: reduce) {
  .editorial-hero .button-secondary {
    background: #142b3d;
  }
}
