/* ============================================================
   DANIELLA SANTANGELO — FREEFALL v4
   Z-Axis fly-through · Warp particles · HUD · Portals
   Scroll FORWARD through stacked depth layers
   ============================================================ */

:root {
  --neon: #DFFF00;
  --neon-dim: rgba(223, 255, 0, 0.25);
  --neon-glow: rgba(223, 255, 0, 0.6);
  --neon-subtle: rgba(223, 255, 0, 0.08);
  --neon-micro: rgba(223, 255, 0, 0.03);
  --bg: #060606;
  --bg-surface: #0E0E0E;
  --bg-card: #141414;
  --bg-elevated: #1A1A1A;
  --text: #F0F0E8;
  --text-dim: #7A7A70;
  --accent-hot: #FF2D55;
  --accent-cool: #00E5FF;
  --radius: 6px;
  --radius-lg: 12px;
  --font-display: 'Dela Gothic One', cursive;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scrollbar-width: thin; scrollbar-color: var(--neon) var(--bg); }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   GLOBAL OVERLAYS
   ============================================================ */
.warp-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.scanlines {
  position: fixed; inset: 0; z-index: 9996; pointer-events: none;
  background: repeating-linear-gradient(to bottom, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9997; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.cursor {
  position: fixed; width: 10px; height: 10px; background: var(--neon); border-radius: 50%;
  pointer-events: none; z-index: 10000; transform: translate(-50%,-50%); mix-blend-mode: difference;
  transition: width 0.15s, height 0.15s;
}
.cursor--hover { width: 36px; height: 36px; background: var(--neon-glow); }
.cursor-trail {
  position: fixed; width: 28px; height: 28px; border: 1px solid var(--neon-dim); border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%,-50%);
}

/* ============================================================
   HUD
   ============================================================ */
.hud { position: fixed; inset: 0; z-index: 900; pointer-events: none; padding: 20px 32px; }
.hud__tl { position: absolute; top: 72px; left: 32px; }
.hud__tr { position: absolute; top: 72px; right: 32px; text-align: right; }
.hud__bl { position: absolute; bottom: 28px; left: 32px; }
.hud__br { position: absolute; bottom: 28px; right: 32px; text-align: right; }
.hud__label { display: block; font-family: var(--font-heading); font-size: 0.6rem; font-weight: 800; letter-spacing: 6px; color: var(--neon); margin-bottom: 4px; }
.hud__sub { display: block; font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 2px; color: var(--text-dim); }
.hud__mono { display: block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 2px; color: var(--neon); margin-bottom: 6px; }
.hud__alt-bar, .hud__speed-bar { width: 120px; height: 2px; background: var(--bg-elevated); border-radius: 1px; overflow: hidden; }
.hud__alt-fill, .hud__speed-fill { height: 100%; width: 0%; background: var(--neon); box-shadow: 0 0 8px var(--neon-glow); transition: width 0.15s linear; }
.hud__dots { display: flex; gap: 6px; margin-top: 8px; justify-content: flex-end; }
.hud__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bg-elevated); border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s; }
.hud__dot--active { background: var(--neon); border-color: var(--neon); box-shadow: 0 0 8px var(--neon-dim); }
.hud__crosshair { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: var(--neon); opacity: 0; transition: opacity 0.3s; }
.hud__crosshair--visible { opacity: 0.3; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 950;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; background: rgba(6,6,6,0.6);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--neon-micro);
}
.nav__logo { font-family: var(--font-display); font-size: 1.5rem; color: var(--neon); letter-spacing: 2px; cursor: none; }
.nav__links { display: flex; gap: 24px; }
.nav__link {
  font-family: var(--font-heading); font-size: 0.6rem; font-weight: 600; letter-spacing: 3px;
  color: var(--text-dim); position: relative; transition: color 0.3s; cursor: none;
}
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--neon); box-shadow: 0 0 8px var(--neon-dim); transition: width 0.3s; }
.nav__link:hover, .nav__link--active { color: var(--neon); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__ig { display: flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-size: 0.6rem; font-weight: 600; letter-spacing: 1px; color: var(--text-dim); transition: color 0.3s; cursor: none; }
.nav__ig:hover { color: var(--neon); }

/* ============================================================
   Z-DEPTH JOURNEY — THE CORE MECHANIC
   ============================================================ */
.journey {
  position: relative;
  height: 900vh; /* Creates scroll distance for 7 panels + transitions */
}
.viewport {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  perspective: 1200px;
  perspective-origin: 50% 50%;
}

/* ---------- PANELS (stacked on Z-axis) ---------- */
.panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
  /* Start invisible — GSAP controls visibility */
  opacity: 0;
  pointer-events: none;
  /* inputs need to be clickable when panel is active */
}
.panel--active {
  pointer-events: auto;
  z-index: 999 !important;
}
.panel--active .form-input,
.panel--active .form-textarea,
.panel--active .btn,
.panel--active a {
  pointer-events: auto;
  cursor: text;
}
.panel--active .btn,
.panel--active a {
  cursor: none;
}
/* First panel starts visible */
.panel:first-child { opacity: 1; pointer-events: auto; }

.panel__content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px;
  padding: 70px 48px 32px;
}

/* ---------- PANEL BACKGROUND ---------- */
.panel__bg { position: absolute; inset: 0; z-index: 0; }
.panel__bg-img { position: absolute; inset: 0; background-size: cover; background-position: center 25%; opacity: 0.45; }
.panel__bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(6,6,6,0.15) 0%, var(--bg) 75%);
}

/* ---------- DECORATIONS ---------- */
.panel__deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.deco { position: absolute; opacity: 0.06; will-change: transform; }
.deco--ring { width: 80px; height: 80px; border: 1px solid var(--neon); border-radius: 50%; }
.deco--ring-lg { width: 160px; height: 160px; }
.deco--cross { width: 24px; height: 24px; }
.deco--cross::before, .deco--cross::after { content: ''; position: absolute; background: var(--neon); }
.deco--cross::before { width: 1px; height: 100%; left: 50%; transform: translateX(-50%); }
.deco--cross::after { height: 1px; width: 100%; top: 50%; transform: translateY(-50%); }
.deco--diamond { width: 20px; height: 20px; border: 1px solid var(--neon); transform: rotate(45deg); }
.deco--dot { width: 5px; height: 5px; background: var(--neon); border-radius: 50%; }
.deco--line-h { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--neon-dim), transparent); }
.deco--line-v { width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--neon-dim), transparent); }
.deco--grid-pattern { inset: 0; width: 100%; height: 100%; background-image: linear-gradient(var(--neon-micro) 1px, transparent 1px), linear-gradient(90deg, var(--neon-micro) 1px, transparent 1px); background-size: 60px 60px; opacity: 1; }

/* ---------- SPEED LINES ---------- */
.speed-lines--horizontal { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.speed-h { position: absolute; left: 0; width: 25vw; height: 1px; background: linear-gradient(to right, transparent, var(--neon-dim), transparent); animation: speed-fly linear infinite; opacity: 0.3; }
@keyframes speed-fly { 0% { transform: translateX(-25vw); } 100% { transform: translateX(125vw); } }

/* ---------- PORTAL RINGS ---------- */
.panel__portal { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; z-index: 3; }
.portal__ring { position: absolute; border: 1px solid var(--neon-dim); border-radius: 50%; opacity: 0; will-change: transform, opacity; }
.portal__ring:nth-child(1) { width: 60px; height: 60px; }
.portal__ring:nth-child(2) { width: 140px; height: 140px; }
.portal__ring:nth-child(3) { width: 280px; height: 280px; }

/* ============================================================
   SHARED TYPOGRAPHY
   ============================================================ */
.section-tag { display: inline-block; font-family: var(--font-heading); font-size: 0.55rem; font-weight: 800; letter-spacing: 5px; color: var(--neon); margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3.6rem); line-height: 1.05; margin-bottom: 16px; }
.section-title--giant { font-size: clamp(2.4rem, 6vw, 5rem); }
.section-title .char { display: inline-block; will-change: transform, opacity; }
.body-text { font-size: 0.9rem; line-height: 1.65; color: var(--text-dim); margin-bottom: 12px; max-width: 480px; }
.body-text--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============================================================
   PANEL 0: HERO — original font/color restored
   ============================================================ */
.hero__content { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__tag { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 3px; color: var(--text-dim); margin-bottom: 20px; }
.hero__title { margin-bottom: 16px; line-height: 0.95; }
.title-line { display: block; font-family: var(--font-display); }
.title-line--fill {
  font-size: clamp(4rem, 14vw, 11rem);
  color: var(--neon);
  text-shadow:
    0 0 10px var(--neon-dim),
    0 0 30px rgba(223, 255, 0, 0.15),
    0 0 60px rgba(223, 255, 0, 0.08);
  animation: neon-flicker 4s ease-in-out infinite;
  line-height: 0.9;
}
.title-line--stroke {
  font-size: clamp(2.5rem, 8vw, 7rem);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--neon);
  letter-spacing: 4px;
  line-height: 1;
}
@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 10px var(--neon-dim), 0 0 30px rgba(223,255,0,.15), 0 0 60px rgba(223,255,0,.08);
    opacity: 1;
  }
  20%, 24% { text-shadow: none; opacity: 0.85; }
  55% { text-shadow: 0 0 4px var(--neon-dim); opacity: 0.92; }
}
.hero__subtitle { font-family: var(--font-heading); font-size: clamp(0.6rem, 1.2vw, 0.9rem); letter-spacing: 8px; color: var(--text-dim); font-weight: 600; margin-bottom: 16px; }
.hero__links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pill { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-heading); font-size: 0.65rem; font-weight: 600; letter-spacing: 1px; color: var(--neon); padding: 6px 14px; border: 1px solid var(--neon-dim); border-radius: 30px; transition: all 0.3s; cursor: none; }
.pill:hover { background: var(--neon-subtle); box-shadow: 0 0 16px var(--neon-dim); }
.pill--dim { color: var(--text-dim); border-color: rgba(255,255,255,0.06); }
.hero__cta { position: absolute; bottom: 32px; right: 48px; display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 3px; color: var(--text-dim); z-index: 2; animation: cta-pulse 2.5s ease-in-out infinite; }
@keyframes cta-pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ============================================================
   PANEL 1: ABOUT — compact to fit viewport
   ============================================================ */
.about__layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center; }
.about__image { position: relative; }
.about__photo { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 3/4; }
.about__image-frame { position: absolute; inset: -6px; border: 1px solid var(--neon-dim); border-radius: var(--radius-lg); transform: rotate(2deg); pointer-events: none; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 16px 0; }
.fact-card { padding: 12px; background: var(--bg-surface); border-radius: var(--radius); border: 1px solid var(--neon-micro); transition: border-color 0.3s; }
.fact-card:hover { border-color: var(--neon-dim); }
.fact-card__icon { font-size: 1.1rem; display: block; margin-bottom: 4px; }
.fact-card__title { font-family: var(--font-heading); font-size: 0.5rem; font-weight: 800; letter-spacing: 2px; color: var(--neon); display: block; margin-bottom: 2px; }
.fact-card__text { font-size: 0.75rem; color: var(--text-dim); line-height: 1.35; }

/* ============================================================
   PANEL 2: SKYDIVE
   ============================================================ */
.skydive__layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
.skydive__hero-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.skydive__photo { width: 100%; height: clamp(300px, 55vh, 500px); object-fit: cover; border-radius: var(--radius-lg); will-change: transform; }
.skydive__photo-frame { position: absolute; inset: 0; border: 1px solid var(--neon-dim); border-radius: var(--radius-lg); pointer-events: none; }
.skydive__photo-tag { position: absolute; bottom: 12px; left: 12px; font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 2px; color: var(--neon); background: rgba(6,6,6,0.75); backdrop-filter: blur(8px); padding: 5px 12px; border-radius: 16px; }
.skydive__mini-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0 20px; }
.skydive__mini { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; transition: box-shadow 0.3s; }
.skydive__mini:hover { box-shadow: 0 0 16px var(--neon-dim); }
.skydive__mini-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.skydive__mini:hover .skydive__mini-photo { transform: scale(1.06); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.stat-block { padding: 14px 12px; background: var(--bg-surface); border-radius: var(--radius); border: 1px solid var(--neon-micro); text-align: center; transition: border-color 0.3s; }
.stat-block:hover { border-color: var(--neon-dim); }
.stat-block__num { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--neon); display: block; margin-bottom: 2px; }
.stat-block__label { font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 3px; color: var(--text-dim); }

/* ============================================================
   PANEL 3: GEAR — compact cards
   ============================================================ */
.gear__layout { text-align: center; }
.gear__header { margin-bottom: 24px; }
.gear__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.gear-card { position: relative; background: var(--bg-surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--neon-micro); transition: border-color 0.3s, transform 0.4s; will-change: transform; }
.gear-card:hover { border-color: var(--neon-dim); transform: translateY(-6px) rotateX(2deg); }
.gear-card__glow { position: absolute; inset: -1px; border-radius: var(--radius-lg); opacity: 0; background: linear-gradient(135deg, var(--neon-dim), transparent 50%); transition: opacity 0.3s; pointer-events: none; }
.gear-card:hover .gear-card__glow { opacity: 1; }
.gear-card__photo { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
.gear-card__info { padding: 14px; text-align: left; }
.gear-card__name { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.gear-card__desc { font-size: 0.78rem; color: var(--text-dim); line-height: 1.4; margin-bottom: 6px; }
.gear-card__price { font-family: var(--font-mono); font-size: 0.65rem; color: var(--neon); letter-spacing: 2px; }
.gear__cta { text-align: center; }

/* ============================================================
   PANEL 4: VENTURES
   ============================================================ */
.ventures__layout { display: flex; flex-direction: column; align-items: center; text-align: center; }
.ventures__header { margin-bottom: 28px; }
.ventures__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; width: 100%; align-items: start; }
.venture-card { position: relative; padding: 28px 20px; background: var(--bg-surface); border-radius: var(--radius-lg); border: 1px solid var(--neon-micro); text-align: center; transition: border-color 0.3s, transform 0.4s; will-change: transform; overflow: hidden; }
.venture-card:hover { border-color: var(--neon-dim); transform: translateY(-6px); }
.venture-card__glow { position: absolute; inset: -1px; border-radius: var(--radius-lg); opacity: 0; background: radial-gradient(circle at 50% 0%, var(--neon-dim), transparent 60%); transition: opacity 0.4s; pointer-events: none; }
.venture-card:hover .venture-card__glow { opacity: 1; }
.venture-card__icon { color: var(--neon); margin-bottom: 14px; }
.venture-card__title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.venture-card__desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }

/* ============================================================
   PANEL 5: GALLERY (scattered photos)
   ============================================================ */
.gallery__layout { position: relative; width: 100%; height: 100%; }
.gallery__label { position: absolute; top: 70px; left: 48px; z-index: 3; }
.gallery__scatter { position: absolute; inset: 0; }
.gallery__card { position: absolute; left: var(--x); top: var(--y); width: 200px; border-radius: var(--radius-lg); overflow: hidden; transform: rotate(var(--rot)); box-shadow: 0 6px 30px rgba(0,0,0,0.5); transition: transform 0.5s, box-shadow 0.4s; z-index: 2; will-change: transform; }
.gallery__card:hover { transform: rotate(0deg) scale(1.1); box-shadow: 0 0 30px var(--neon-dim); z-index: 10; }
.gallery__card--lg { width: 300px; }
.gallery__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.gallery__cap { position: absolute; bottom: 8px; left: 8px; font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 2px; color: var(--neon); background: rgba(6,6,6,0.7); backdrop-filter: blur(6px); padding: 3px 8px; border-radius: 10px; text-transform: uppercase; }
.gallery__ig-float { position: absolute; bottom: 36px; right: 48px; display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--neon); z-index: 3; cursor: none; transition: opacity 0.3s; }
.gallery__ig-float:hover { opacity: 0.7; }

/* ============================================================
   PANEL 6: CONTACT
   ============================================================ */
.contact__layout { max-width: 600px; }
.contact__header { margin-bottom: 28px; }
.contact__form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-label { display: block; font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 3px; color: var(--text-dim); margin-bottom: 4px; }
.form-input { width: 100%; padding: 11px 14px; background: var(--bg-surface); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); color: var(--text); font-family: var(--font-body); font-size: 0.9rem; outline: none; transition: border-color 0.3s, box-shadow 0.3s; }
.form-input::placeholder { color: var(--text-dim); opacity: 0.35; }
.form-input:focus { border-color: var(--neon); box-shadow: 0 0 0 3px var(--neon-subtle); }
.form-textarea { resize: vertical; min-height: 80px; }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; padding: 12px 28px; border-radius: var(--radius); border: none; cursor: none; transition: all 0.3s; }
.btn--primary { background: var(--neon); color: var(--bg); }
.btn--primary:hover { box-shadow: 0 0 30px var(--neon-dim); transform: translateY(-2px); }
.btn--outline { background: transparent; border: 1px solid var(--neon-dim); color: var(--neon); }
.btn--outline:hover { background: var(--neon-subtle); border-color: var(--neon); }
.btn--submit { align-self: flex-start; }
.contact__social { display: flex; gap: 16px; margin-bottom: 28px; }
.social-link { display: flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600; color: var(--text-dim); transition: color 0.3s; cursor: none; }
.social-link:hover { color: var(--neon); }
.footer { padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.03); font-size: 0.65rem; color: var(--text-dim); opacity: 0.4; }
.footer__tagline { margin-top: 3px; }

/* ============================================================
   PLACEHOLDERS
   ============================================================ */
.placeholder { position: relative; overflow: hidden; background: var(--bg-card); border: 1px dashed var(--neon-dim); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.placeholder--portrait { aspect-ratio: 3/4; }
.placeholder--product { aspect-ratio: 3/2; }
.placeholder__shimmer { position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(223,255,0,0.03) 50%, transparent 70%); animation: shimmer 2.5s ease-in-out infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.placeholder__label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 3px; color: var(--text-dim); z-index: 1; }
.placeholder__sub { font-size: 0.5rem; color: var(--text-dim); opacity: 0.4; z-index: 1; }

/* ============================================================
   ANNOTATIONS
   ============================================================ */
.annotation-toggle { position: fixed; bottom: 18px; right: 18px; z-index: 1001; display: flex; align-items: center; gap: 5px; padding: 7px 12px; background: var(--bg-card); border: 1px solid var(--neon-dim); border-radius: 20px; color: var(--neon); font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 2px; cursor: none; transition: all 0.3s; }
.annotation-toggle:hover { background: var(--neon-subtle); }
.annotation-panel { position: fixed; top: 0; right: -360px; width: 340px; height: 100vh; z-index: 1002; background: var(--bg-surface); border-left: 1px solid var(--neon-dim); padding: 68px 20px 20px; overflow-y: auto; transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.annotation-panel--open { right: 0; box-shadow: -12px 0 40px rgba(0,0,0,0.5); }
.annotation-panel__title { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 4px; color: var(--neon); margin-bottom: 24px; }
.anno { display: flex; gap: 10px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.anno__n { flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; background: var(--neon); color: var(--bg); font-family: var(--font-mono); font-size: 0.55rem; border-radius: 50%; }
.anno p { font-size: 0.75rem; line-height: 1.5; color: var(--text-dim); }
.anno p strong { color: var(--text); }
.anno p code { background: var(--bg-card); padding: 1px 5px; border-radius: 3px; font-family: var(--font-mono); font-size: 0.7rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about__layout { grid-template-columns: 1fr; gap: 24px; }
  .about__image { max-width: 240px; }
  .skydive__layout { grid-template-columns: 1fr; gap: 20px; }
  .skydive__photo { height: 35vh; }
  .gear__cards { grid-template-columns: 1fr 1fr; }
  .ventures__cards { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .gallery__card { width: 160px; }
  .gallery__card--lg { width: 240px; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .panel__content { padding: 64px 20px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .gear__cards { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery__card { width: 130px; }
  .gallery__card--lg { width: 180px; }
  .cursor, .cursor-trail { display: none; }
  body { cursor: auto; }
  .btn, .pill, .nav__link, .nav__logo, .nav__ig, .annotation-toggle, .social-link { cursor: pointer; }
}
