/* ============================================================
   TRIPVIA – "THE TERMINAL"
   A midnight airport: split-flap boards, boarding passes,
   wayfinding signs, luggage tags & passport stamps.
   Type: Anton (signage) · Space Mono (flight data) · Inter (body)
   ============================================================ */

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

:root {
  /* terminal palette */
  --night: #0A0C12;          /* terminal midnight */
  --night-2: #0E1119;        /* deep section */
  --panel: #151926;          /* board panel */
  --panel-2: #1B2030;        /* board row */
  --amber: #FFB300;          /* solari amber */
  --amber-soft: #FFD466;
  --green: #45D483;          /* boarding green */
  --blue: #6FB7FF;           /* new-route blue */
  --paper: #F4ECDC;          /* boarding pass cream */
  --paper-2: #EAE0CB;
  --ink: #1E1812;            /* ink on paper */
  --ink-soft: #5C5142;
  --text: #C9CDD8;           /* body on night */
  --text-dim: #8B91A3;
  --line: rgba(255,255,255,0.09);
  --brand: #BD4932;          /* tripvia terracotta */

  /* shape & motion */
  --radius: 14px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.2s var(--ease);
  --t: 0.35s var(--ease);

  --font-sign: 'Anton', 'Arial Narrow', sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { max-width: 100%; overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--night);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.mono { font-family: var(--font-mono); letter-spacing: 0.04em; }

::selection { background: var(--amber); color: var(--night); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.icon {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: -0.22em;
}

@keyframes blink { 0%, 60% { opacity: 1; } 61%, 100% { opacity: 0.25; } }
.blink { animation: blink 1.6s steps(1) infinite; }
.green { color: var(--green); }
.amber { color: var(--amber); }
.blue { color: var(--blue); }

/* ============================================================
   NAV
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t);
}
#navbar.scrolled {
  background: rgba(10, 12, 18, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  height: 44px; width: 44px;
  object-fit: cover;
  border-radius: 10px;
}
.logo-word {
  font-family: var(--font-sign);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: #fff;
}
.logo-word small {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--amber);
  vertical-align: super;
  letter-spacing: 0.15em;
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  position: relative;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 13px;
  border-radius: 8px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--amber); background: rgba(255,179,0,0.07); }
.nav-links a.active-link { color: var(--amber); }
.nav-links a.active-link:not(.nav-cta)::before { content: '▸ '; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--night) !important;
  font-weight: 700;
  padding: 11px 20px !important;
  border-radius: 8px;
  margin-left: 10px;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast) !important;
}
.nav-cta:hover {
  background: var(--amber-soft) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255,179,0,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — THE TERMINAL
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(255,179,0,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 100%, rgba(189,73,50,0.18) 0%, transparent 60%),
    var(--night);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 0%, transparent 75%);
}
.hero-globe {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%) translate(var(--px, 0px), var(--py, 0px));
  width: min(48vw, 780px);
  aspect-ratio: 1;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}
@media (max-width: 880px) {
  .hero-globe {
    right: 50%;
    transform: translate(50%, -50%);
    width: min(96vw, 520px);
    opacity: 0.3;
  }
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 24px 70px;
}
.hero-topbar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.74rem;
  color: var(--text-dim);
  text-transform: uppercase;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 16px;
  margin-bottom: 48px;
}
.hero-topbar .icon { width: 14px; height: 14px; color: var(--amber); }
.hero-clock { color: var(--amber); font-variant-numeric: tabular-nums; }

.hero-sign {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--night);
  background: var(--amber);
  padding: 7px 16px;
  border-radius: 6px;
  letter-spacing: 0.12em;
  margin-bottom: 26px;
  box-shadow: 0 0 30px rgba(255,179,0,0.3);
  animation: rise 0.8s var(--ease) both;
}
.hero-title {
  font-family: var(--font-sign);
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 34px;
  animation: rise 0.8s var(--ease) 0.1s both;
}

/* split-flap display */
.flap-line {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  animation: rise 0.8s var(--ease) 0.2s both;
}
.flap-tile {
  position: relative;
  width: clamp(34px, 6.2vw, 64px);
  height: clamp(48px, 8.6vw, 90px);
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #1D2230 0%, #141824 48%, #10141E 52%, #171B28 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-family: var(--font-sign);
  font-size: clamp(1.7rem, 4.4vw, 3.6rem);
  color: var(--amber);
  text-shadow: 0 0 18px rgba(255,179,0,0.45);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.6), 0 4px 14px rgba(0,0,0,0.4);
  overflow: hidden;
}
.flap-tile::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  background: rgba(0,0,0,0.65);
}
.flap-tile.flipping { animation: flapflip 0.07s linear; }
@keyframes flapflip {
  0%   { transform: perspective(420px) rotateX(0deg); filter: brightness(1); }
  49%  { transform: perspective(420px) rotateX(-84deg); filter: brightness(1.7); }
  100% { transform: perspective(420px) rotateX(0deg); filter: brightness(1); }
}

.hero-sub {
  max-width: 560px;
  font-weight: 300;
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 38px;
  animation: rise 0.8s var(--ease) 0.3s both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: rise 0.8s var(--ease) 0.4s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  border-top: 1px dashed var(--line);
  padding-top: 24px;
  animation: rise 0.8s var(--ease) 0.5s both;
}
.hero-stats dt {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.hero-stats dd {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.hero-stats dd.green { color: var(--green); }

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   LED TICKER
   ============================================================ */
.ticker {
  background: #05070C;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll-x 36s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--amber);
  text-shadow: 0 0 12px rgba(255,179,0,0.5);
  white-space: nowrap;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.btn .icon { transition: transform var(--t-fast); }
.btn:hover .icon { transform: translateX(4px); }

.btn-amber { background: var(--amber); color: var(--night); }
.btn-amber:hover {
  background: var(--amber-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,179,0,0.35);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}
.btn-ink {
  background: var(--ink);
  color: var(--paper);
  padding: 11px 22px;
  font-size: 0.78rem;
}
.btn-ink:hover {
  background: var(--brand);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(189,73,50,0.4);
}
.btn-full { width: 100%; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(80px, 10vw, 130px) 24px; position: relative; }
.section-deep { background: var(--night-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.container { max-width: 1240px; margin: 0 auto; }

.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-sign {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--amber);
  border: 1px solid rgba(255,179,0,0.35);
  padding: 7px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  background: rgba(255,179,0,0.05);
}
.section-sign.dark {
  color: var(--ink);
  border-color: rgba(30,24,18,0.4);
  background: rgba(30,24,18,0.05);
}
.section-head h2 {
  font-family: var(--font-sign);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.section-head h2.ink { color: var(--ink); }
.section-sub { color: var(--text-dim); font-size: 1rem; }
.section-sub.ink-sub { color: var(--ink-soft); }

/* scroll reveal — cards clearly fold up into place in 3D */
.reveal {
  opacity: 0;
  transform: perspective(1100px) translateY(60px) rotateX(34deg) scale(0.94);
  transform-origin: 50% 100%;
  transition: opacity 0.8s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: perspective(1100px) translateY(0) rotateX(0deg) scale(1); }

/* ============================================================
   DEPARTURE BOARD
   ============================================================ */
.board {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.5);
}
.board-head,
.board-row {
  display: grid;
  grid-template-columns: 110px 1fr 70px 130px 150px;
  gap: 18px;
  align-items: center;
  padding: 18px 26px;
}
.board-head {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--line);
}
.board-row {
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background var(--t-fast), padding-left var(--t-fast);
  cursor: pointer;
}
.board-row:last-child { border-bottom: none; }
.board-row:hover { background: rgba(255,179,0,0.06); padding-left: 34px; }
.b-flight { color: var(--text-dim); font-size: 0.84rem; }
.b-dest strong {
  display: block;
  font-family: var(--font-sign);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  transition: color var(--t-fast), text-shadow var(--t-fast);
}
.board-row:hover .b-dest strong { color: var(--amber); text-shadow: 0 0 20px rgba(255,179,0,0.4); }
.b-dest em { font-style: normal; font-size: 0.8rem; color: var(--text-dim); }
.b-gate { color: var(--text); font-size: 0.9rem; }
.b-fare { color: var(--amber); font-weight: 700; font-size: 0.95rem; font-variant-numeric: tabular-nums; }
.b-status { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; }

.board-note {
  margin-top: 20px;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* ============================================================
   WINDOW SEAT GALLERY
   ============================================================ */
/* ---- coverflow viewer (window-seat carousel) ---- */
.viewer { max-width: 1100px; margin: 0 auto; }
.viewer-stage {
  position: relative;
  --slide-w: min(36vw, 430px);
  height: calc(var(--slide-w) * 1.2 + 46px); /* fits the whole porthole + caption */
  perspective: 1700px;
}
.v-track { position: absolute; inset: 0; }
.v-slide {
  position: absolute;
  top: 50%; left: 50%;
  width: var(--slide-w);
  aspect-ratio: 5 / 6;
  transform: translate(-50%, -50%) scale(0.55);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}
.v-slide .window-frame {
  width: 100%; height: 100%;
  aspect-ratio: auto;
  border-radius: 30% / 22%;
}
.v-slide.is-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1; z-index: 3;
}
.v-slide.is-prev {
  transform: translate(-126%, -50%) scale(0.72) rotateY(22deg);
  opacity: 0.45; z-index: 2; pointer-events: auto; cursor: pointer;
}
.v-slide.is-next {
  transform: translate(26%, -50%) scale(0.72) rotateY(-22deg);
  opacity: 0.45; z-index: 2; pointer-events: auto; cursor: pointer;
}
.v-slide.is-prev:hover, .v-slide.is-next:hover { opacity: 0.72; }

.v-cap {
  position: absolute;
  left: 9%; bottom: 11%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease) 0.25s, transform 0.5s var(--ease) 0.25s;
  pointer-events: none;
  text-shadow: 0 2px 24px rgba(0,0,0,0.85);
}
.v-slide.is-active .v-cap { opacity: 1; transform: none; }
.v-cap h3 {
  font-family: var(--font-sign);
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1; text-transform: uppercase; color: #fff;
  margin-bottom: 6px;
}
.v-cap span { color: var(--amber); font-size: 0.74rem; letter-spacing: 0.12em; }

.v-controls {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 36px;
}
.v-arrow {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.4);
  color: #fff; cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.v-arrow:hover { background: var(--amber); color: var(--night); border-color: var(--amber); transform: translateY(-2px); }
.v-arrow .icon { width: 22px; height: 22px; }
.v-prev .icon { transform: rotate(180deg); }
.v-counter {
  margin-left: 12px;
  font-size: 0.9rem; letter-spacing: 0.16em;
  color: var(--text-dim); font-variant-numeric: tabular-nums;
}
.v-counter b { color: var(--amber); font-weight: 700; }

.window { text-align: center; }
.window-frame {
  position: relative;
  aspect-ratio: 5 / 7;
  border-radius: 46% 46% 46% 46% / 32% 32% 32% 32%;
  overflow: hidden;
  background: linear-gradient(160deg, #2c3550, #11141d);
  border: 9px solid #525B73;
  box-shadow:
    0 0 0 1.5px rgba(236,238,245,0.22),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 0 0 4px #070910,
    inset 0 14px 30px rgba(0,0,0,0.55),
    0 18px 42px rgba(0,0,0,0.55);
  transition: transform var(--t), box-shadow var(--t);
}
.window:hover .window-frame {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1.5px rgba(236,238,245,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 0 0 4px #070910,
    inset 0 14px 30px rgba(0,0,0,0.4),
    0 28px 54px rgba(0,0,0,0.6);
}
.window-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.window:hover .window-frame img { transform: scale(1.08); }

/* glass: cabin vignette + a sheen that sweeps on hover */
.window-frame .glass {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.20), rgba(255,255,255,0.05) 18%, transparent 40%),
    radial-gradient(120% 80% at 50% 120%, rgba(0,0,0,0.34), transparent 58%);
}
.window-frame .glass::after {
  content: '';
  position: absolute; top: -25%; left: -70%;
  width: 45%; height: 150%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg) translateX(0);
  transition: transform 0.9s var(--ease);
}
.window:hover .window-frame .glass::after { transform: skewX(-18deg) translateX(430%); }

/* sliding window shade — lifts to reveal the view when the row scrolls in */
.window-frame .shade {
  position: absolute; inset: 0; z-index: 3;
  border-radius: inherit;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, #353C4E 0%, #272D3C 55%, #1E2330 100%);
  box-shadow: inset 0 -8px 20px rgba(0,0,0,0.5), 0 6px 14px rgba(0,0,0,0.4);
  transform: translateY(0);
  transform-origin: top;
  transition: transform 1.1s var(--ease);
  transition-delay: var(--d, 0s);
}
.window-frame .shade::after {
  content: '';
  position: absolute; bottom: 9px; left: 50%;
  width: 34%; height: 7px; transform: translateX(-50%);
  border-radius: 6px;
  background: #454C61;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.18), 0 1px 3px rgba(0,0,0,0.5);
}
.window.in .window-frame .shade { transform: translateY(-105%); }
/* a small nudge back down on hover, like peeking, then settle */
.window.in:hover .window-frame .shade { transform: translateY(-102%); }
.window figcaption {
  margin-top: 14px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

/* ============================================================
   BOARDING PASSES
   ============================================================ */
.pass-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pass {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 168px;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transition: transform var(--t), box-shadow var(--t);
}
.pass:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}
.pass-stamp {
  position: absolute;
  top: -12px; right: 24px;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 6px;
  transform: rotate(3deg);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.stamp-red { background: var(--brand); color: #fff; }
.stamp-green { background: #1F7A4D; color: #fff; }
.stamp-blue { background: #2C4E80; color: #fff; }

.pass-main { padding: 26px 26px 24px; min-width: 0; }
.pass-airline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.pass-airline .icon { width: 15px; height: 15px; }

.pass-route {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.pass-city strong {
  display: block;
  font-family: var(--font-sign);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0.03em;
}
.pass-city span { font-size: 0.72rem; color: var(--ink-soft); }
.pass-city.right { text-align: right; }
.pass-path {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
}
.pass-path .icon { width: 17px; height: 17px; transform: rotate(45deg); color: var(--brand); }
.path-line {
  flex: 1;
  height: 0;
  border-top: 2px dashed rgba(30,24,18,0.35);
}

.pass-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.06rem;
  margin-bottom: 16px;
}
.pass-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin-bottom: 16px;
}
.pass-details dt {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}
.pass-details dd {
  font-size: 0.78rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pass-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.pass-includes li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 50px;
  border: 1px solid rgba(30,24,18,0.25);
}
.pass-includes li .icon { width: 12px; height: 12px; stroke-width: 3; }
.pass-includes li.inc .icon { color: #1F7A4D; }
.pass-includes li.exc { opacity: 0.55; }
.pass-includes li.exc .icon { color: var(--brand); }

.pass-stub {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 16px;
  border-left: 2px dashed rgba(30,24,18,0.3);
  background: var(--paper-2);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
/* perforation notches */
.pass-stub::before,
.pass-stub::after {
  content: '';
  position: absolute;
  left: -12px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--night);
}
.section .pass-stub::before { top: -11px; }
.section .pass-stub::after { bottom: -11px; }

.pass-barcode {
  width: 100%;
  height: 44px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px, transparent 2px 5px,
    var(--ink) 5px 9px, transparent 9px 11px,
    var(--ink) 11px 12px, transparent 12px 16px
  );
  opacity: 0.85;
}
.pass-price { text-align: center; }
.pass-price span {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}
.pass-price strong {
  display: block;
  font-size: 1.3rem;
  margin: 3px 0;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   WAYFINDING SIGNS (SERVICES)
   ============================================================ */
.signs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  perspective: 1400px;
}
.sign {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform var(--t), border-color var(--t), background var(--t), box-shadow var(--t);
}
.sign:hover {
  transform: translateX(6px) rotateY(-9deg);
  border-color: rgba(255,179,0,0.5);
  background: var(--panel-2);
  box-shadow: -18px 18px 44px rgba(0,0,0,0.5);
}
.sign-icon {
  width: 58px; height: 58px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--amber);
  color: var(--night);
  border-radius: 12px;
  transition: transform var(--t);
}
.sign-icon .icon { width: 26px; height: 26px; }
.sign:hover .sign-icon { transform: translateZ(34px) rotate(-5deg) scale(1.08); }
.sign-text { min-width: 0; }
.sign-text strong {
  display: block;
  font-family: var(--font-sign);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.sign-text small { font-size: 0.84rem; color: var(--text-dim); line-height: 1.5; }
.sign-arrow {
  margin-left: auto;
  color: var(--amber);
  opacity: 0.5;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.sign:hover .sign-arrow { opacity: 1; transform: translateX(4px); }

/* ============================================================
   LUGGAGE TAGS (WHY US)
   ============================================================ */
.tags-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.tag {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px 14px 14px 50px;
  padding: 46px 24px 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  transition: transform var(--t), box-shadow var(--t);
}
.tag:nth-child(odd) { --rot: -1.3deg; }
.tag:nth-child(even) { --rot: 1.1deg; }
.tag { transform: rotate(var(--rot, 0deg)); }
.tag:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,0.55); }
/* punched hole */
.tag::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--night);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.6), 0 0 0 4px rgba(30,24,18,0.18);
}
.tag-num {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.tag-icon {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
}
.tag-icon .icon { width: 22px; height: 22px; }
.tag h4 {
  font-family: var(--font-sign);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tag p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.65; }

/* ============================================================
   CAPTAIN'S ANNOUNCEMENT (ABOUT)
   ============================================================ */
.announce-wrap { max-width: 880px; }
.announce {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 56px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.announce-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--amber);
  margin-bottom: 22px;
}
.announce-head .icon { width: 18px; height: 18px; }
.announce h2 {
  font-family: var(--font-sign);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.announce p { color: var(--text); margin-bottom: 16px; line-height: 1.8; }
.announce-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.announce-meta .icon { width: 14px; height: 14px; color: var(--amber); }

/* ============================================================
   PASSPORT STAMPS (TESTIMONIALS)
   ============================================================ */
.section-passport {
  background:
    repeating-linear-gradient(45deg, rgba(30,24,18,0.025) 0 2px, transparent 2px 14px),
    radial-gradient(ellipse 80% 60% at 50% 0%, #FAF3E3 0%, var(--paper) 70%);
}
.stamps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: start;
}
.stamp {
  position: relative;
  border: 3px double currentColor;
  border-radius: 18px 26px 16px 30px;
  padding: 24px 26px 22px;
  background: transparent;
  transition: transform var(--t);
}
.stamp { transform: rotate(var(--rot, 0deg)); }
.stamp-ink-red  { color: #A6402C; --rot: -2deg; }
.stamp-ink-teal { color: #25655F; --rot: 1.4deg; margin-top: 18px; }
.stamp-ink-blue { color: #2C4E80; --rot: -1deg; }
.stamp:hover { transform: rotate(0deg) scale(1.02); }
.stamp-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-bottom: 2px solid currentColor;
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.stamp-stars { display: inline-flex; gap: 3px; }
.stamp-stars .icon { width: 12px; height: 12px; fill: currentColor; stroke: none; }
.stamp blockquote {
  font-size: 0.93rem;
  font-style: italic;
  line-height: 1.75;
  color: currentColor;
  opacity: 0.92;
  margin-bottom: 14px;
}
.stamp figcaption { font-size: 0.66rem; letter-spacing: 0.1em; opacity: 0.85; }

/* ============================================================
   CHECK-IN (CONTACT)
   ============================================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.form-head {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--amber);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 14px;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { margin-bottom: 22px; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.95rem;
  color: #fff;
  font-family: var(--font-body);
  background: rgba(0,0,0,0.3);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  min-height: 48px;
  color-scheme: dark;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option, .form-group select optgroup { background: var(--panel); color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(255,179,0,0.15);
}
.form-group textarea { resize: vertical; min-height: 0; }
.form-success {
  margin-top: 16px;
  color: var(--green);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
}
.hidden { display: none; }

.contact-info h3 {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--amber);
  margin-bottom: 26px;
}
.info-item { display: flex; gap: 15px; margin-bottom: 22px; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(255,179,0,0.1);
  border: 1px solid rgba(255,179,0,0.3);
  color: var(--amber);
  border-radius: 11px;
}
.info-icon .icon { width: 18px; height: 18px; }
.info-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.info-item p, .info-item a { color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; }
.info-item a:hover { color: var(--amber); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1da851;
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border-radius: 10px;
  margin-top: 6px;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.whatsapp-btn .icon { width: 19px; height: 19px; fill: currentColor; stroke: none; }
.whatsapp-btn:hover {
  background: #169a47;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,168,81,0.35);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #05070C;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 70px 24px 52px;
}
.footer-brand .footer-logo { margin-bottom: 16px; display: inline-block; }
.footer-logo-img { height: 76px; width: 76px; object-fit: cover; border-radius: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-brand p em { color: var(--amber); font-style: italic; }
.social-links { display: flex; gap: 11px; }
.social-links a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.social-links a .icon { width: 18px; height: 18px; }
.social-links a[aria-label="WhatsApp"] .icon { fill: currentColor; stroke: none; }
.social-links a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--night);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--amber);
  margin-bottom: 18px;
}
.footer-links ul li { margin-bottom: 10px; font-size: 0.88rem; }
.footer-links ul li a { color: var(--text-dim); transition: color var(--t-fast), padding-left var(--t-fast); }
.footer-links ul li a:hover { color: var(--amber); padding-left: 4px; }
.footer-contact li, .footer-contact li a { display: inline-flex; align-items: center; gap: 9px; }
.footer-contact .icon { width: 14px; height: 14px; color: var(--amber); }

.footer-bottom { border-top: 1px solid var(--line); padding: 20px 24px; }
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.68rem; letter-spacing: 0.08em; color: var(--text-dim); }
.footer-policy a { color: var(--text-dim); margin: 0 4px; transition: color var(--t-fast); }
.footer-policy a:hover { color: var(--amber); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #1da851;
  color: #fff;
  border-radius: 16px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  z-index: 900;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.fab-whatsapp .icon { width: 27px; height: 27px; fill: currentColor; stroke: none; }
.fab-whatsapp:hover {
  background: #169a47;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 34px rgba(29,168,81,0.45);
}

/* ============================================================
   3D TILT + GLARE (pointer: fine only, applied via JS)
   ============================================================ */
.tilt:not(.reveal),
.tilt.reveal.in {
  position: relative;
  transform:
    perspective(900px)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    rotate(var(--rot, 0deg))
    translateY(var(--lift, 0px));
  transition:
    opacity 0.7s var(--ease) var(--d, 0s),
    transform 0.45s var(--ease);
  will-change: transform;
}
.tilt:hover { --lift: -8px; }
.tilt:not(.reveal):hover,
.tilt.reveal.in:hover { transition: transform 0.08s linear; }

/* moving light glare follows the cursor */
.tilt::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  transform: translateZ(64px);
  background: radial-gradient(
    circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255,255,255,0.16) 0%,
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.tilt:hover::after { opacity: 1; }

/* ---- layered depth: inner elements float at different Z planes ---- */
.pass, .tag, .stamp { transform-style: preserve-3d; }

.pass .pass-stamp { transform: rotate(3deg) translateZ(52px); }
.pass .pass-stub   { transform: translateZ(30px); }
.pass .pass-route  { transform: translateZ(22px); }
.pass .pass-name   { transform: translateZ(15px); }
.pass .pass-airline,
.pass .pass-details,
.pass .pass-includes { transform: translateZ(9px); }

.tag .tag-icon { transform: translateZ(36px); }
.tag .tag-num  { transform: translateZ(22px); }
.tag h4        { transform: translateZ(15px); }
.tag p         { transform: translateZ(8px); }

.stamp .stamp-top   { transform: translateZ(26px); }
.stamp blockquote   { transform: translateZ(14px); }
.stamp figcaption   { transform: translateZ(20px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .pass-stack { grid-template-columns: 1fr; max-width: 660px; margin: 0 auto; }
  .tags-grid { grid-template-columns: 1fr 1fr; }
  .stamps-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .stamp-ink-teal { margin-top: 0; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .board-head { display: none; }
  .board-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "dest fare"
      "flight status";
    gap: 6px 16px;
    padding: 18px 20px;
  }
  .board-row:hover { padding-left: 20px; }
  .b-dest { grid-area: dest; }
  .b-fare { grid-area: fare; text-align: right; }
  .b-flight { grid-area: flight; }
  .b-status { grid-area: status; text-align: right; }
  .b-gate { display: none; }
  .signs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: rgba(8, 10, 15, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0,0,0,0.6);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--t), opacity var(--t), visibility var(--t);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { width: 100%; padding: 14px 16px; }
  .nav-cta { margin: 10px 0 0; justify-content: center; }
  .hamburger { display: flex; }

  .hero-inner { padding: 110px 24px 60px; }
  .viewer-stage { --slide-w: min(58vw, 360px); }
  .v-slide.is-prev { transform: translate(-152%, -50%) scale(0.6) rotateY(20deg); opacity: 0.22; }
  .v-slide.is-next { transform: translate(52%, -50%) scale(0.6) rotateY(-20deg); opacity: 0.22; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 54px 24px 40px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .tags-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .pass { grid-template-columns: 1fr; }
  .pass-stub {
    flex-direction: row;
    border-left: none;
    border-top: 2px dashed rgba(30,24,18,0.3);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 18px 22px;
  }
  .pass-stub::before { top: -11px; left: -11px; }
  .pass-stub::after { left: auto; right: -11px; top: -11px; bottom: auto; }
  .pass-barcode { display: none; }
  .pass-price { text-align: left; margin-right: auto; }
}

/* ============================================================
   MOBILE POLISH (phones)
   ============================================================ */
@media (max-width: 600px) {
  .section { padding: 66px 18px; }
  .hero-inner { padding: 104px 18px 52px; }
  .hero-topbar { font-size: 0.62rem; gap: 8px; }
  .hero-title { font-size: clamp(3rem, 17vw, 5rem); margin-bottom: 26px; }
  .hero-sub { font-size: 0.96rem; }
  .hero-stats { gap: 16px 26px; }

  /* split-flap fits narrow screens without ugly wrapping */
  .flap-line { gap: 4px; }
  .flap-tile {
    width: clamp(24px, 7.4vw, 40px);
    height: clamp(34px, 10.5vw, 56px);
    font-size: clamp(1.2rem, 5.6vw, 2.2rem);
    border-radius: 6px;
  }

  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(2rem, 9vw, 3rem); }

  /* carousel: show only the active card on phones (no off-screen peeks) */
  .viewer-stage { --slide-w: min(78vw, 340px); }
  .v-slide.is-prev,
  .v-slide.is-next {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    pointer-events: none;
  }
  .v-controls { gap: 12px; margin-top: 26px; }
  .v-arrow { width: 50px; height: 50px; }

  .board-note, .fineprint { font-size: 0.64rem; }
}

/* iOS: 16px inputs prevent the auto-zoom on focus; comfy tap targets */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }
  .nav-links a { padding: 15px 16px; }     /* ≥44px tap height */
  body { -webkit-text-size-adjust: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .blink { animation: none; }
  .flap-tile.flipping { animation: none; }
  .hero-sign, .hero-title, .flap-line, .hero-sub, .hero-btns, .hero-stats { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  /* flatten all layered-depth transforms */
  .pass, .tag, .stamp, .sign { transform-style: flat !important; }
  .pass-stamp, .pass-stub, .pass-route, .pass-name, .pass-airline,
  .pass-details, .pass-includes, .tag-icon, .tag-num, .tag h4, .tag p,
  .stamp-top, .stamp blockquote, .stamp figcaption { transform: none !important; }
  .pass-stamp { transform: rotate(3deg) !important; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
