/* JC App Solutions — iOS liquid glass, metallic blue, space */
:root {
  --bg: #05070d;
  --midnight: #03050a;
  --text: #f4f7fb;
  --text-muted: rgba(232, 238, 247, 0.72);
  --text-dim: rgba(186, 198, 214, 0.55);
  --accent: #4aa3ff;
  --accent-bright: #8cc9ff;
  --accent-deep: #1d6fe0;
  --accent-glow: rgba(74, 163, 255, 0.38);
  --metal: linear-gradient(180deg, #f4f8ff 0%, #9ec8f5 18%, #4aa3ff 48%, #1e5fbe 78%, #9ec8f5 100%);
  --glass: rgba(255, 255, 255, 0.07);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-highlight: rgba(255, 255, 255, 0.42);
  --radius: 32px;
  --radius-lg: 40px;
  --radius-xl: 48px;
  --font: "Inter", ui-sans-serif, "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1080px;
  --header-h: 72px;
  --mx: 50%;
  --my: 30%;
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.011em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-bright); text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
a:hover { color: #fff; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 10px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #111;
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  font-weight: 600;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* Space layer */
.space-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}
.space-wash {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at var(--mx) var(--my), rgba(50, 130, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(90, 70, 180, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 35% at 12% 80%, rgba(30, 90, 180, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.15) 0%, rgba(5, 7, 13, 0.55) 55%, rgba(5, 7, 13, 0.82) 100%);
  transition: background-position 0.4s ease;
}
.cursor-glow {
  position: fixed;
  width: 140px;
  height: 140px;
  margin: -70px 0 0 -70px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(120, 190, 255, 0.18), transparent 70%);
  opacity: 0;
  transform: translate3d(-50vw, -50vh, 0);
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}
body.is-pointer .cursor-glow { opacity: 1; }

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 3;
}

/* Header — floating glass capsule */
.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 24px));
  z-index: 100;
  overflow: visible;
}
.header-inner {
  position: relative;
  min-height: 58px;
  padding: 0.4rem 0.45rem 0.4rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 999px;
  overflow: visible;
  isolation: isolate;
}
.header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 var(--glass-highlight);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled .header-inner::before {
  background: linear-gradient(180deg, rgba(18, 24, 36, 0.78), rgba(10, 14, 22, 0.7));
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45), inset 0 1px 0 var(--glass-highlight);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(40, 120, 255, 0.35);
}
.logo-text { display: none; color: #fff; }
@media (min-width: 520px) {
  .logo-text { display: inline; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: #eef4ff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(16, 22, 34, 0.92), rgba(8, 12, 20, 0.9));
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 0.65rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.site-nav.open { display: block; }
.site-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.15rem; }
.site-nav a {
  display: block;
  padding: 0.72rem 0.95rem;
  color: var(--text-muted);
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
  }
  .site-nav a {
    padding: 0.5rem 0.85rem;
    font-size: 0.84rem;
    letter-spacing: -0.01em;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.015em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #04101f;
  background: linear-gradient(180deg, #d7ecff 0%, #7ec4ff 28%, #3b9eff 62%, #1f73e0 100%);
  border-color: rgba(255,255,255,0.35);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.65) inset,
    0 10px 28px rgba(59, 158, 255, 0.38);
}
.btn-primary:hover { color: #020814; box-shadow: 0 1px 0 rgba(255,255,255,0.75) inset, 0 14px 32px rgba(59, 158, 255, 0.5); }
.btn-ghost {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,0.12); }
.btn-ontour {
  color: #f6efe0;
  background: linear-gradient(180deg, #c45a3a, #9b302e);
  border-color: rgba(229, 222, 199, 0.28);
  box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 10px 24px rgba(155, 48, 46, 0.35);
}
.btn-ontour:hover { color: #fff; }

/* Layout */
.section {
  padding: 6.5rem 1.5rem;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 0.9rem;
}
.section-title {
  font-size: clamp(2rem, 4.4vw, 3.05rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 1rem;
  color: #fff;
}
.section-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 40rem;
  margin-bottom: 2.6rem;
  line-height: 1.7;
  font-weight: 400;
}

.glass-card {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.045) 42%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(34px) saturate(170%);
  -webkit-backdrop-filter: blur(34px) saturate(170%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 var(--glass-highlight),
    inset 0 -1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 180px at var(--spot-x, 30%) var(--spot-y, 0%), rgba(140, 201, 255, 0.18), transparent 55%);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}
.glass-card > * { position: relative; z-index: 1; }
.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(170, 210, 255, 0.42);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(90, 170, 255, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3.2rem) 1.5rem 5rem;
  overflow: hidden;
}

.orbit-stage {
  position: absolute;
  width: min(92vw, 620px);
  aspect-ratio: 1;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.42;
  z-index: 0;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(180, 210, 255, 0.16);
  border-radius: 50%;
  animation: spin-orbit var(--spin, 70s) linear infinite;
}
.orbit-ring.r1 { inset: 6%; --spin: 90s; }
.orbit-ring.r2 {
  inset: 22%;
  border-style: dashed;
  border-color: rgba(140, 190, 255, 0.22);
  --spin: 52s;
  animation-direction: reverse;
}
.orbit-ring.r3 {
  inset: 38%;
  border-color: rgba(74, 163, 255, 0.28);
  --spin: 38s;
}
.orbit-ring .node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #e8f3ff;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px rgba(180, 220, 255, 0.8);
}
.orbit-ring .node.accent {
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
}
.orbit-core {
  position: absolute;
  inset: 46%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 200, 255, 0.35), transparent 70%);
  filter: blur(6px);
  animation: pulse-core 6s ease-in-out infinite;
}
@keyframes spin-orbit { to { transform: rotate(360deg); } }
@keyframes pulse-core {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.18); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  width: 100%;
}
.hero-mark {
  width: 132px;
  height: 132px;
  margin: 0 auto 1.75rem;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 22px 40px rgba(40, 120, 255, 0.4));
}
.hero-slogan {
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
  font-weight: 650;
  letter-spacing: -0.052em;
  color: #fff;
  margin-bottom: 0.9rem;
}
.hero-tagline {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin: 0 auto 2.2rem;
  max-width: 30rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* About */
.about-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 760px) {
  .about-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-card { padding: 1.7rem 1.5rem 1.8rem; }
.card-icon {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  margin-bottom: 1.05rem;
  background: var(--metal);
  box-shadow: 0 6px 16px rgba(59, 158, 255, 0.35), inset 0 1px 0 rgba(255,255,255,0.55);
}
.icon-focus { border-radius: 50%; }
.icon-tech { border-radius: 8px; transform: rotate(8deg); }
.icon-ui { border-radius: 12px 12px 4px 12px; }
.about-card h3,
.principle h3,
.venture-card h3 {
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  color: #fff;
}
.about-card p,
.principle p,
.venture-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.principles {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .principles { grid-template-columns: repeat(2, 1fr); }
}
.principle {
  display: flex;
  gap: 1rem;
  padding: 1.45rem 1.4rem;
  align-items: flex-start;
}
.principle-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--metal);
  color: #071422;
  font-weight: 750;
  font-size: 0.78rem;
  letter-spacing: -0.04em;
  box-shadow: 0 6px 16px rgba(59, 158, 255, 0.3), inset 0 1px 0 rgba(255,255,255,0.55);
}

/* On Tour */
.ontour {
  --ot-red: #9B302E;
  --ot-red-deep: #5c1a18;
  --ot-cream: #E5DEC7;
  --ot-cream-dim: #c4bba0;
  --ot-orange: #C45A3A;
}
.ontour-label { color: #e8a089; }
.ontour-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .ontour-layout {
    grid-template-columns: 0.95fr 1.15fr;
    gap: 3.2rem;
  }
}
.ontour-copy .section-lead { margin-bottom: 1.3rem; }
.ontour-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  margin-bottom: 1.3rem;
}
.ontour-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.ontour-list li::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 0.52rem;
  border-radius: 50%;
  background: var(--ot-orange);
  box-shadow: 0 0 10px rgba(196, 90, 58, 0.7);
}
.ontour-soon {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ot-orange);
  margin-bottom: 1.2rem;
}

.boarding-pass {
  --pass-ink: #1c1412;
  --pass-paper: #f6f1e6;
  position: relative;
  display: grid;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(120% 70% at 0% 0%, rgba(196, 90, 58, 0.1), transparent 46%),
    linear-gradient(180deg, #faf6ee 0%, var(--pass-paper) 42%, #efe8d8 100%);
  border: 1px solid rgba(244, 239, 228, 0.22);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(155, 48, 46, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  color: var(--pass-ink);
}
.boarding-pass::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.22;
  mix-blend-mode: multiply;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(28, 20, 18, 0.025) 3px 4px),
    repeating-linear-gradient(90deg, transparent 0 5px, rgba(28, 20, 18, 0.02) 5px 6px);
}
@media (min-width: 640px) {
  .boarding-pass {
    grid-template-columns: 1fr auto 138px;
    max-width: none;
  }
}

.pass-main,
.pass-stub,
.pass-perf { position: relative; z-index: 2; }

.pass-main { padding: 1.35rem 1.35rem 1.2rem; }
.pass-airline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  margin: -1.35rem -1.35rem 1.35rem;
  padding: 1.05rem 1.2rem 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(180deg, #d26646 0%, var(--ot-red) 52%, var(--ot-red-deep) 100%);
  color: var(--ot-cream);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.pass-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
}
.pass-carrier {
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: #fff8ea;
}
.pass-product {
  font-size: 0.72rem;
  color: var(--ot-cream-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.remove-tag {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #1c1412;
  color: var(--ot-cream);
  padding: 0.5rem 0.26rem;
  border-radius: 5px;
}
.pass-route {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  min-height: 5.35rem;
  margin-bottom: 1.2rem;
  padding-top: 2.15rem;
}
.city-code {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--pass-ink);
}
.city-name {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7166;
}
.pass-city.end { text-align: right; }
.pass-flightpath {
  position: absolute;
  left: 0;
  right: 0;
  top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  height: 32px;
  color: var(--ot-red);
  pointer-events: none;
}
.path-track {
  position: relative;
  flex: 1;
  height: 32px;
  min-width: 48px;
  overflow: visible;
}
.path-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 2px dashed rgba(155, 48, 46, 0.42);
  transform: translateY(-50%);
}
.path-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ot-red);
  box-shadow: 0 0 0 4px rgba(155, 48, 46, 0.12);
  flex-shrink: 0;
}
.path-plane {
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  color: var(--ot-red-deep);
  animation: fly-route 6s linear infinite;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.18));
  will-change: left, opacity;
}
@keyframes fly-route {
  0% { left: 0%; transform: translate(0, -50%) rotate(90deg); opacity: 1; }
  86% { left: 100%; transform: translate(-100%, -50%) rotate(90deg); opacity: 1; }
  90% { left: 100%; transform: translate(-100%, -50%) rotate(90deg); opacity: 0; }
  91% { left: 0%; transform: translate(0, -50%) rotate(90deg); opacity: 0; }
  100% { left: 0%; transform: translate(0, -50%) rotate(90deg); opacity: 1; }
}

.pass-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.95rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(28, 20, 18, 0.16);
}
.pass-meta dt {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8176;
  margin-bottom: 0.2rem;
}
.pass-meta dd {
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--pass-ink);
}
.pass-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
}
.pass-chips span {
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  background: rgba(155, 48, 46, 0.1);
  border: 1px solid rgba(155, 48, 46, 0.18);
  color: var(--ot-red-deep);
}
.pass-barcode {
  height: 36px;
  border-radius: 4px;
  background: repeating-linear-gradient(
    90deg,
    #1c1412 0 2px,
    transparent 2px 4px,
    #1c1412 4px 5px,
    transparent 5px 8px,
    #1c1412 8px 11px,
    transparent 11px 13px
  );
  opacity: 0.88;
}

.pass-perf {
  display: none;
  position: relative;
  width: 0;
  border-left: 1px dashed rgba(28, 20, 18, 0.22);
  background: var(--pass-paper);
}
.pass-perf::before,
.pass-perf::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  transform: translateX(-50%);
}
.pass-perf::before { top: -9px; }
.pass-perf::after { bottom: -9px; }
@media (min-width: 640px) {
  .pass-perf { display: block; }
}

.pass-stub {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 1.15rem 0.85rem;
  background: linear-gradient(180deg, var(--ot-red) 0%, var(--ot-red-deep) 100%);
  text-align: center;
  color: var(--ot-cream);
}
.stub-kicker {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ot-cream-dim);
}
.stub-flight {
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: #fff8ea;
}
.stub-seat {
  font-size: 0.82rem;
  color: var(--ot-cream);
}
.status-pill {
  display: inline-block;
  align-self: center;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.38rem 0.6rem;
  border-radius: 999px;
  background: rgba(10, 8, 8, 0.28);
  color: #fff8ea;
  border: 1px solid rgba(229, 222, 199, 0.35);
}
.stub-barcode {
  height: 46px;
  width: 18px;
  margin: 0 auto;
  background: repeating-linear-gradient(
    180deg,
    #eadfca 0 2px,
    transparent 2px 4px,
    #eadfca 4px 7px,
    transparent 7px 9px
  );
  opacity: 0.75;
}
@media (max-width: 639px) {
  .pass-stub {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .stub-barcode { display: none; }
  .remove-tag { display: none; }
  .pass-airline { grid-template-columns: auto 1fr; }
  .pass-meta { grid-template-columns: repeat(2, 1fr); }
}

.venture-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 760px) {
  .venture-grid { grid-template-columns: repeat(3, 1fr); }
}
.venture-card { padding: 1.85rem 1.55rem; }

.project-panel {
  padding: 2.8rem 1.75rem;
  text-align: center;
}
.metallic-panel {
  background:
    linear-gradient(180deg, rgba(170, 210, 255, 0.16), rgba(255,255,255,0.04) 36%, rgba(20, 40, 70, 0.2)),
    linear-gradient(135deg, rgba(80, 140, 220, 0.18), transparent 50%);
}
@media (min-width: 640px) {
  .project-panel { padding: 3.6rem 3.2rem; }
}
.project-panel .section-title,
.project-panel .section-lead {
  margin-left: auto;
  margin-right: auto;
}
.project-panel .section-lead { margin-bottom: 2rem; }
.project-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.contact { padding-bottom: 4.5rem; }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem 1.7rem;
}
@media (min-width: 640px) {
  .contact-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.contact-label {
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.contact-email {
  font-size: clamp(1.05rem, 2.6vw, 1.4rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #fff;
  word-break: break-all;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-email:hover { opacity: 0.85; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 1.5rem 2.4rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}
.footer-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 8px;
}
.footer-copy {
  color: var(--text-dim);
  font-size: 0.8rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbit-ring,
  .orbit-core,
  .path-plane,
  .glass-card,
  .btn {
    animation: none !important;
    transition: none !important;
  }
  .glass-card:hover { transform: none; }
  .cursor-glow { display: none; }
}
