/* ═══════════════════════════════════════════════════════════
   SPAZZ · Extended styles — new sections for full IM
   ═══════════════════════════════════════════════════════════ */

/* ─── Logo image ─── */
.logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 47, 199, 0.35));
}
@media (max-width: 820px) {
  .logo-img { height: 24px; }
}

/* ─── Hero callout box ─── */
.hero-callout {
  max-width: 780px;
  padding: 18px 22px;
  margin: 40px 0 40px;
  border-left: 2px solid var(--magenta);
  background: linear-gradient(90deg, rgba(255, 47, 199, 0.08) 0%, rgba(255, 47, 199, 0) 100%);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
  border-radius: 0 4px 4px 0;
}
.hero-callout strong { color: var(--magenta); font-weight: 600; }

/* ─── Headshot portrait tweak (transparent PNG) ─── */
.hero-portrait {
  mask-image: linear-gradient(to left, black 62%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 62%, transparent 100%);
  right: -8%;
  width: 58%;
}
@media (max-width: 820px) {
  .hero-portrait {
    opacity: 0.28;
    width: 130%;
    right: -25%;
    bottom: -10%;
    mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
  }
}

/* ─── 02 Introducing SPAZZ ─── */
.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 40px; } }
.intro-text p {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-dim);
  margin-bottom: 20px;
  line-height: 1.65;
}
.intro-text p:first-child { font-size: clamp(17px, 1.5vw, 21px); color: var(--ink); }
.intro-text strong { color: var(--ink); font-weight: 600; }
.intro-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-hi);
}
.intro-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
}
.intro-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 3, 15, 0.5) 100%);
  pointer-events: none;
}

/* ─── 03 Participation table ─── */
.participate-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(10px);
}
.pt-row {
  display: grid;
  grid-template-columns: 1.4fr 120px 2fr;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.pt-row:last-child { border-bottom: none; }
.pt-head {
  background: rgba(138, 43, 226, 0.08);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
}
.pt-head .pt-incl { text-align: center; }
.pt-row strong { font-weight: 600; color: var(--ink); }
.pt-row > div:last-child { color: var(--ink-dim); font-size: 14px; line-height: 1.55; }
.pt-incl { text-align: center; }
.pt-incl .yes,
.pt-incl .no {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.pt-incl .yes {
  color: var(--cyan);
  border: 1px solid rgba(58, 255, 237, 0.35);
  background: rgba(58, 255, 237, 0.08);
  box-shadow: 0 0 18px rgba(58, 255, 237, 0.15);
}
.pt-incl .no {
  color: #ff7b7b;
  border: 1px solid rgba(255, 123, 123, 0.35);
  background: rgba(255, 123, 123, 0.08);
}
.pt-excluded { opacity: 0.72; }
@media (max-width: 760px) {
  .pt-row { grid-template-columns: 1fr; gap: 10px; padding: 18px 20px; }
  .pt-head { display: none; }
  .pt-incl { text-align: left; }
}

/* ─── Foundation note + Private Plane callout ─── */
.foundation-note {
  max-width: 900px;
  margin: 50px auto 40px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-dim);
  font-style: italic;
}
.foundation-note strong { color: var(--ink); font-style: normal; }

.private-plane-callout {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  margin-top: 20px;
  padding: 44px 48px;
  border: 1px solid var(--line-hi);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 47, 199, 0.08) 0%, rgba(181, 76, 255, 0.06) 100%),
    var(--glass);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.private-plane-callout::before {
  content: "";
  position: absolute; top: -30%; right: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(181, 76, 255, 0.25) 0%, transparent 50%);
  pointer-events: none;
}
.ppc-icon {
  font-size: 48px;
  color: var(--magenta);
  text-shadow: 0 0 30px rgba(255, 47, 199, 0.8);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.ppc-body { position: relative; z-index: 1; }
.ppc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--cyan);
  margin-bottom: 12px;
}
.ppc-body h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.ppc-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}
.ppc-body strong { color: var(--magenta); font-weight: 600; }
@media (max-width: 720px) {
  .private-plane-callout { grid-template-columns: 1fr; padding: 32px 28px; gap: 16px; }
}

/* ─── Agreements note ─── */
.agreements-note {
  max-width: 960px;
  margin: 30px auto 0;
  padding: 16px 20px;
  border-left: 2px solid var(--violet);
  font-size: 13px;
  color: var(--ink-faint);
  line-height: 1.6;
  background: rgba(181, 76, 255, 0.03);
}
.agreements-note em { color: var(--violet); font-style: normal; font-weight: 600; letter-spacing: 0.05em; }

/* ─── 07 Promo video section ─── */
.promo-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .promo-wrap { grid-template-columns: 1fr; } }
.promo-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-hi);
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(181, 76, 255, 0.3) 0%, rgba(255, 47, 199, 0.15) 40%, transparent 80%),
    linear-gradient(135deg, #120624 0%, #1d0940 100%);
  box-shadow: 0 30px 80px rgba(181, 76, 255, 0.25);
}
.promo-inner {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.promo-icon {
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--magenta);
  border-radius: 50%;
  font-size: 26px;
  color: var(--magenta);
  background: rgba(5, 3, 15, 0.7);
  box-shadow:
    0 0 30px rgba(255, 47, 199, 0.5),
    inset 0 0 20px rgba(255, 47, 199, 0.2);
  animation: promo-pulse 2.5s ease-in-out infinite;
  padding-left: 6px;
}
@keyframes promo-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 47, 199, 0.5), inset 0 0 20px rgba(255, 47, 199, 0.2); }
  50%      { transform: scale(1.08); box-shadow: 0 0 50px rgba(255, 47, 199, 0.8), inset 0 0 30px rgba(255, 47, 199, 0.3); }
}
.promo-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-top: 10px;
}
.promo-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  text-align: center;
  padding: 0 30px;
}
.promo-copy p {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}
.promo-copy strong { color: var(--ink); font-weight: 600; }

/* ─── 08 AI Notice section (prominent) ─── */
.ai-notice-section { padding: 80px 0; }
.ai-notice {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px clamp(32px, 5vw, 70px);
  border: 1px solid var(--line-hi);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 210, 102, 0.05) 0%, rgba(255, 47, 199, 0.05) 100%),
    var(--glass);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.ai-notice::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--magenta), var(--violet));
}
.ai-notice-head { margin-bottom: 30px; }
.ai-badge {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  border: 1px solid rgba(255, 210, 102, 0.4);
  border-radius: 999px;
  background: rgba(255, 210, 102, 0.08);
  margin-bottom: 18px;
}
.ai-notice-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.ai-notice-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-dim);
  margin-bottom: 18px;
}
.ai-notice-body strong { color: var(--ink); font-weight: 600; }

/* ─── 10 Econ note ─── */
.econ-note {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-faint);
  border-left: 2px solid var(--violet);
  background: rgba(181, 76, 255, 0.03);
  font-style: italic;
}

/* ─── 11 Forecast section ─── */
.forecast-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 980px) { .forecast-wrap { grid-template-columns: 1fr; } }

.forecast-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(10px);
}
.ft-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  align-items: center;
}
.ft-row:last-child { border-bottom: none; }
.ft-head {
  background: rgba(138, 43, 226, 0.1);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
}
.ft-year { text-align: right; }
.ft-row .num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.ft-subtotal {
  background: rgba(138, 43, 226, 0.06);
  border-top: 1px solid var(--line-hi);
  border-bottom: 1px solid var(--line-hi);
}
.ft-total {
  background: linear-gradient(90deg, rgba(255, 47, 199, 0.1) 0%, rgba(58, 255, 237, 0.1) 100%);
  padding-top: 20px;
  padding-bottom: 20px;
}
.ft-total .accent {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-size: 16px;
}
@media (max-width: 720px) {
  .ft-row { grid-template-columns: 1.6fr 1fr 1fr 1fr; padding: 12px 14px; gap: 8px; font-size: 12px; }
}

/* Forecast bars visual */
.forecast-viz {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
  min-height: 340px;
}
.fv-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 280px;
}
.fv-bars {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.fv-bar {
  width: 65%;
  height: var(--h);
  min-height: 24px;
  background: var(--accent-grad);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 30px rgba(181, 76, 255, 0.5);
  position: relative;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1.6s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.fv-col.in-view .fv-bar { transform: scaleY(1); }
.fv-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-top: 12px;
}
.fv-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin-top: 6px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fv-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* ─── 12 Terms card full-width ─── */
.terms-card-full {
  padding: 10px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  max-width: 1000px;
  margin: 0 auto;
}
.terms-card-full .terms-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.terms-card-full .terms-row:last-child { border-bottom: none; }
.terms-card-full .terms-row > span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.terms-card-full .terms-row > strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.terms-card-full .terms-row > strong.accent {
  font-size: 22px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.terms-row-tall > strong {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  color: var(--ink-dim) !important;
}
@media (max-width: 720px) {
  .terms-card-full .terms-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ─── 13 Use of funds (standalone section) ─── */
.use-funds-section .use-of-funds {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 42px;
}
.fund-desc {
  display: block;
  font-size: 13px;
  color: var(--ink-faint);
  font-weight: 400;
  margin-top: 4px;
  line-height: 1.5;
}
.fund-row .fund-meta > div:first-child {
  flex: 1;
  min-width: 0;
}
.use-funds-section .fund-row {
  margin-bottom: 30px;
}

/* ─── Timeline — priority line ─── */
.tl-priority {
  font-size: 13px;
  color: var(--cyan);
  margin-bottom: 6px;
  line-height: 1.5;
}
.tl-priority strong { color: var(--cyan); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; }

/* ─── 15 Closing View ─── */
.closing-view { padding: 120px 0; }
.closing-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.closing-p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--ink);
}
.closing-p strong { color: var(--magenta); font-weight: 600; }
.closing-emph {
  margin-top: 20px;
  padding: 24px 28px;
  border-left: 3px solid transparent;
  border-image: var(--accent-grad) 1;
  background: linear-gradient(90deg, rgba(255, 47, 199, 0.08) 0%, rgba(58, 255, 237, 0.04) 100%);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 21px) !important;
  line-height: 1.45 !important;
}

/* ═══════════════════════════════════════════════════════════
   TEAM VIDEOS PAGE
   ═══════════════════════════════════════════════════════════ */
.team-hero {
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
}
.team-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(181, 76, 255, 0.4));
}
.team-hero .team-lede {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-dim);
  line-height: 1.65;
}
.team-section {
  padding: 60px 0;
}
.team-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.team-section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 48px);
  letter-spacing: -0.01em;
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .member-grid { grid-template-columns: 1fr; gap: 30px; }
}
.member-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.member-card:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
}
.member-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.member-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.member-body {
  padding: 28px 32px 32px;
}
.member-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.member-name .accent-dot {
  color: var(--magenta);
  margin: 0 6px;
}
.member-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-dim);
}
.member-desc strong { color: var(--ink); }

/* Featured first card (Burundi / artist development) */
.member-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}
.member-featured .member-video { aspect-ratio: auto; height: 100%; min-height: 420px; }
.member-featured .member-body { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.member-featured .member-name { font-size: 32px; }
@media (max-width: 900px) {
  .member-featured { grid-template-columns: 1fr; }
  .member-featured .member-video { min-height: 0; aspect-ratio: 16 / 9; }
  .member-featured .member-body { padding: 28px 32px 32px; }
  .member-featured .member-name { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════════
   Hero logo (replaces glitch SPAZZ text)
   ═══════════════════════════════════════════════════════════ */
.hero-logo {
  width: min(620px, 90vw);
  height: auto;
  margin-bottom: 12px;
  filter:
    drop-shadow(0 0 40px rgba(181, 76, 255, 0.55))
    drop-shadow(0 0 80px rgba(255, 47, 199, 0.35));
}

/* ═══════════════════════════════════════════════════════════
   Tech list — grid version
   ═══════════════════════════════════════════════════════════ */
.tech-list-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px 30px;
  max-width: 1100px;
  margin: 40px auto 70px;
  padding: 30px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(10px);
}
.tech-list-grid li {
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.tech-list-grid li span {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(58, 255, 237, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   Software screenshot grid
   ═══════════════════════════════════════════════════════════ */
.software-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 720px) { .software-grid { grid-template-columns: 1fr; } }

.sw-tile {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(10px);
  transition: all .3s;
}
.sw-tile:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(181, 76, 255, 0.2);
}
.sw-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.sw-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s;
}
.sw-tile:hover .sw-frame img { transform: scale(1.04); }
.sw-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 3, 15, 0.65) 100%);
  pointer-events: none;
}
.sw-meta {
  padding: 20px 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.sw-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sw-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-transform: uppercase;
}
@media (max-width: 560px) {
  .sw-meta { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ═══════════════════════════════════════════════════════════
   New Footer layout with social links
   ═══════════════════════════════════════════════════════════ */
.footer {
  padding: 70px 0 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5, 3, 15, 0) 0%, rgba(5, 3, 15, 0.8) 100%);
}
.footer .footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
  align-items: start;
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink-dim);
}
@media (max-width: 820px) {
  .footer .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-brand { gap: 18px; }
.footer-logo-img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(255, 47, 199, 0.35));
}
.footer-tagline {
  font-size: 13px;
  color: var(--ink-faint);
  line-height: 1.55;
  max-width: 300px;
}
.footer-tagline em { color: var(--cyan); font-style: italic; }
.footer-col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Social link list */
.social-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.02em;
  padding: 8px 0;
  transition: color .2s, transform .2s;
}
.social-links a:hover { color: var(--magenta); transform: translateX(3px); }
.social-links svg { flex-shrink: 0; transition: filter .2s; }
.social-links a:hover svg { filter: drop-shadow(0 0 8px rgba(255, 47, 199, 0.7)); }

/* Contact list */
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--magenta); }

/* Bottom bar */
.footer-bottom {
  padding: 22px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   Darker background scrim for readability
   ═══════════════════════════════════════════════════════════ */
body {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(10, 4, 28, 0.72) 0%, rgba(2, 1, 8, 0.92) 70%, rgba(0, 0, 0, 0.96) 100%),
    #02010a;
}
.vignette {
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.88) 100%);
}
/* extra overlay to ensure text readability over three.js scene */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0.55) 100%);
}

/* ═══════════════════════════════════════════════════════════
   Tech section — 6-tile software grid + square variant
   ═══════════════════════════════════════════════════════════ */

/* Manifesto without the portrait — full-width text */
.manifesto-grid--full {
  grid-template-columns: 1fr !important;
}
.manifesto-grid--full .manifesto-text {
  max-width: 900px;
  margin: 0 auto;
}

/* 6-tile grid: 3 columns on wide, 2 on medium, 1 on mobile */
.software-grid--6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .software-grid--6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .software-grid--6 { grid-template-columns: 1fr; }
}

/* Tile: frame + label BELOW the frame, centered, outside the card */
.software-grid--6 .sw-tile {
  background: none;
  border: none;
  backdrop-filter: none;
  overflow: visible;
  padding: 0;
  transition: transform .3s;
}
.software-grid--6 .sw-tile:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.software-grid--6 .sw-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  position: relative;
  transition: border-color .3s;
}
.software-grid--6 .sw-tile:hover .sw-frame {
  border-color: var(--violet);
  box-shadow: 0 14px 50px rgba(181, 76, 255, 0.25);
}

/* Square variant for Nuclyr */
.software-grid--6 .sw-tile--square .sw-frame {
  aspect-ratio: 1 / 1;
}

/* Subtle gradient overlay at bottom of frame */
.software-grid--6 .sw-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 3, 15, 0.5) 100%);
  pointer-events: none;
}

.software-grid--6 .sw-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s;
}
.software-grid--6 .sw-tile:hover .sw-frame img {
  transform: scale(1.04);
}

/* Title stacked UNDER the frame, centered */
.software-grid--6 .sw-meta {
  padding: 18px 8px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.software-grid--6 .sw-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.software-grid--6 .sw-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
}

/* Square tile label alignment to center to visually balance */
.software-grid--6 .sw-tile--square .sw-meta {
  align-items: flex-start;
}

/* ═══════════════════════════════════════════════════════════
   ABDUCTION ENDING SEQUENCE
   Whiteout flash → Alien lab examination table + intake form
   ═══════════════════════════════════════════════════════════ */

.abduction-whiteout {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  background: #000;
  padding: 0;
}
.aw-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.08);
  animation: awPulse 4s ease-in-out infinite;
}
.aw-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(5, 3, 15, 0.55) 90%),
    linear-gradient(180deg, rgba(5, 3, 15, 0.35) 0%, transparent 20%, transparent 80%, rgba(5, 3, 15, 0.7) 100%);
  pointer-events: none;
}
@keyframes awPulse {
  0%, 100% { transform: scale(1.0); filter: brightness(1.08) saturate(1.05); }
  50%      { transform: scale(1.04); filter: brightness(1.18) saturate(1.2); }
}
@media (max-width: 720px) {
  .abduction-whiteout { height: 50vh; }
}

.abduction-lab {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 140px;
  overflow: hidden;
}
.al-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.1) contrast(1.05);
}
.al-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 3, 15, 0.72) 0%, rgba(5, 3, 15, 0.58) 55%, rgba(5, 3, 15, 0.88) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(5, 3, 15, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.al-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  text-align: center;
}

.al-meta { margin-bottom: 28px; }
.al-stamp {
  display: inline-block;
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(58, 255, 237, 0.45);
  border-radius: 999px;
  background: rgba(5, 3, 15, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 24px rgba(58, 255, 237, 0.2);
}

.al-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--ink);
  filter: drop-shadow(0 0 40px rgba(181, 76, 255, 0.4));
}
.al-title .accent {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.al-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-dim);
  line-height: 1.6;
  margin-bottom: 44px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.al-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px clamp(28px, 5vw, 44px);
  border: 1px solid rgba(58, 255, 237, 0.38);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(58, 255, 237, 0.07) 0%, rgba(181, 76, 255, 0.07) 100%),
    rgba(5, 3, 20, 0.78);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow:
    0 0 60px rgba(58, 255, 237, 0.18),
    inset 0 0 30px rgba(58, 255, 237, 0.06);
  position: relative;
  text-align: left;
}
.al-form::before {
  content: "◈";
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--cyan);
  background: rgba(5, 3, 20, 0.95);
  border: 1px solid rgba(58, 255, 237, 0.5);
  border-radius: 50%;
  text-shadow: 0 0 10px rgba(58, 255, 237, 0.8);
  box-shadow: 0 0 18px rgba(58, 255, 237, 0.5);
}

.al-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.al-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0.85;
}
.al-optional { color: var(--ink-faint); letter-spacing: 0.2em; }

.al-field input,
.al-field select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: rgba(5, 3, 15, 0.55);
  border: 1px solid rgba(58, 255, 237, 0.28);
  border-radius: 4px;
  outline: none;
  transition: border-color .3s, box-shadow .3s, background .3s;
  appearance: none;
  -webkit-appearance: none;
}
.al-field input::placeholder {
  color: var(--ink-faint);
  opacity: 0.7;
}
.al-field input:focus,
.al-field select:focus {
  border-color: var(--cyan);
  background: rgba(5, 3, 20, 0.85);
  box-shadow: 0 0 0 3px rgba(58, 255, 237, 0.12), 0 0 20px rgba(58, 255, 237, 0.25);
}
.al-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%228%22 viewBox=%220 0 12 8%22 fill=%22none%22><path d=%22M1 1l5 5 5-5%22 stroke=%22%233affed%22 stroke-width=%221.5%22 stroke-linecap=%22round%22/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.al-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #0a0015;
  background: var(--accent-grad);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform .2s, box-shadow .3s, filter .2s;
  box-shadow:
    0 10px 40px rgba(255, 47, 199, 0.3),
    0 0 30px rgba(58, 255, 237, 0.3);
  position: relative;
  overflow: hidden;
}
.al-submit::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}
.al-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 14px 50px rgba(255, 47, 199, 0.5),
    0 0 50px rgba(58, 255, 237, 0.5);
}
.al-submit:hover::before { opacity: 1; }
.al-submit:active { transform: translateY(0); }
.al-submit:disabled { filter: grayscale(0.4) brightness(0.8); cursor: progress; }

.al-fallback {
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  text-align: center;
}
.al-fallback a {
  color: var(--cyan);
  text-decoration: none;
  transition: color .2s;
  margin: 0 6px;
}
.al-fallback a:hover { color: var(--ink); }
.al-fallback span { color: var(--ink-faint); opacity: 0.5; }

.al-confirm {
  position: absolute; inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background:
    radial-gradient(ellipse at center, rgba(5, 3, 20, 0.92) 0%, rgba(5, 3, 15, 0.98) 80%),
    rgba(5, 3, 15, 0.95);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  opacity: 0;
  transition: opacity .9s ease-out;
  pointer-events: none;
}
.al-confirm:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}
.al-confirm-inner {
  max-width: 560px;
  text-align: center;
  animation: confirmRise 1s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}
@keyframes confirmRise {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.al-confirm-sigil {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--cyan);
  text-shadow:
    0 0 30px rgba(58, 255, 237, 0.8),
    0 0 80px rgba(181, 76, 255, 0.5);
  margin-bottom: 20px;
  animation: sigilPulse 3s ease-in-out infinite;
}
@keyframes sigilPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.05); }
}
.al-confirm h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 20px 0 28px;
  color: var(--ink);
}
.al-confirm h2 .accent {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.al-confirm p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin-bottom: 12px;
}
.al-confirm p span {
  font-family: var(--font-mono);
  color: var(--cyan);
  letter-spacing: 0.06em;
}
.al-confirm-meta {
  margin-top: 28px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px !important;
  color: var(--ink-faint) !important;
}
.al-confirm-meta a { color: var(--cyan); }

.al-submit.submitting span::after {
  content: "...";
  display: inline-block;
  width: 24px;
  text-align: left;
  animation: dots 1s steps(4, end) infinite;
}
@keyframes dots {
  0%, 20% { content: ""; }
  40%     { content: "."; }
  60%     { content: ".."; }
  80%, 100% { content: "..."; }
}

@media (max-width: 620px) {
  .abduction-lab { padding: 80px 0 100px; }
  .al-form { padding: 32px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   ABDUCTION SEQUENCE · 3-scene overrides
   Replaces the single-panel form with: whiteout → robot face →
   clipboard-overlay form.
   ═══════════════════════════════════════════════════════════ */

/* ─── Scene 2: Robot leaning over POV ─── */
.abduction-face {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}
.af-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.1) contrast(1.05);
}
.af-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 3, 15, 0.35) 0%, rgba(5, 3, 15, 0) 40%, rgba(5, 3, 15, 0) 60%, rgba(5, 3, 15, 0.85) 100%),
    radial-gradient(ellipse at 50% 40%, transparent 30%, rgba(5, 3, 15, 0.55) 90%);
  pointer-events: none;
}
.af-content {
  position: absolute;
  left: 0; right: 0; bottom: 12%;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.af-content .al-stamp { margin-bottom: 24px; }
.af-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 auto;
  max-width: 900px;
  color: var(--ink);
  filter: drop-shadow(0 0 40px rgba(181, 76, 255, 0.4)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.8));
}
.af-title .accent {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─── Scene 3: Clipboard intake — kill the old single-panel form styling ─── */
.abduction-lab {
  position: relative;
  padding: 0 0 140px;
  min-height: auto;
  overflow: visible;
}
.abduction-lab .al-bg,
.abduction-lab .al-overlay { display: none; }
.abduction-lab .al-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 40px auto 0;
  padding: 0 clamp(24px, 5vw, 60px);
  text-align: center;
}

/* The stage: locked-aspect 16:9 wrapper for the clipboard image + inputs */
.al-stage {
  position: relative;
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}
.al-stage .al-bg {
  display: block;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Inputs are absolutely positioned over the clipboard's NAME and EMAIL lines.
   The percentages target the clipboard position in the generated image.
   Tweak these numbers if the visual alignment drifts. */
.al-clipboard-form {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none; /* allow clicks only on the inputs themselves */
}
.al-input {
  position: absolute;
  pointer-events: auto;
  width: 34%;
  left: 34%;
  height: 6.5%;
  padding: 0 14px;
  background: transparent;
  border: none;
  outline: none;
  color: #2a3548;   /* dark ink — clipboard is white, so use dark text */
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.6vw, 22px);
  letter-spacing: 0.04em;
  text-align: center;
  transition: all .25s;
  border-radius: 4px;
}
.al-input::placeholder {
  color: rgba(80, 110, 140, 0.55);
  font-style: italic;
  letter-spacing: 0.04em;
}
.al-input:hover {
  background: rgba(120, 210, 255, 0.10);
}
.al-input:focus {
  background: rgba(140, 220, 255, 0.14);
  color: #1a2330;
  box-shadow: 0 0 0 1px rgba(58, 255, 237, 0.5), 0 0 22px rgba(58, 255, 237, 0.35);
}

/* Row positions on the new doctor clipboard (% of stage height) */
.al-input--name  { top: 34%; }
.al-input--email { top: 52%; }

/* ─── Transmit button below the stage ─── */
.abduction-lab .al-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  margin-top: 40px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #0a0015;
  background: var(--accent-grad);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s, box-shadow .3s, filter .2s;
  box-shadow: 0 10px 40px rgba(255, 47, 199, 0.35), 0 0 30px rgba(58, 255, 237, 0.3);
  position: relative;
  overflow: hidden;
}
.abduction-lab .al-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 50px rgba(255, 47, 199, 0.55), 0 0 50px rgba(58, 255, 237, 0.5);
}

/* ─── Mobile adjustments ─── */
@media (max-width: 720px) {
  .abduction-face { min-height: 70vh; }
  .af-content { bottom: 8%; }
  .al-input {
    font-size: clamp(10px, 2.4vw, 14px);
    height: 6.5%;
  }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL-SCRUB VIDEO BACKGROUND
   Replaces Three.js cosmic scene. Video sits fixed behind all
   content; scroll position maps to video currentTime via JS.
   ═══════════════════════════════════════════════════════════ */

.bg-video {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: -3;
  pointer-events: none;
  background: #000;
}

/* Scrim: subtly darkens video so overlaid content reads cleanly */
.bg-scrim {
  position: fixed; inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.05) 18%, rgba(0, 0, 0, 0.05) 82%, rgba(0, 0, 0, 0.55) 100%);
}

/* Hide the old Three.js canvas (element no longer created, this is a belt-and-suspenders) */
#bg-canvas { display: none !important; }

/* ─── Silent-intro hero section (scroll 0 → ~18s of video, no overlay content) ─── */
.hero-intro {
  position: relative;
  min-height: 120vh;   /* eat a bit more scroll to be sure we pass 18s of video before any content appears */
  pointer-events: none;
}

/* ─── Cover page (appears as the spaceship reveals at ~18s) ─── */
.cover-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px clamp(24px, 5vw, 80px) 120px;
  z-index: 2;
}
.cover-content {
  max-width: 820px;
  margin: 0;
}
.cover-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}
.cover-meta .confidential {
  color: var(--magenta);
  text-shadow: 0 0 10px rgba(255, 47, 199, 0.8);
}
.cover-meta .date {
  padding: 4px 10px;
  border: 1px solid var(--line-hi);
  border-radius: 3px;
}
.cover-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 44px;
  color: var(--ink);
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.7));
}
.cover-title .accent {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cover-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 40px;
  padding: 24px 42px 24px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  max-width: 760px;
  flex-wrap: wrap;
}
.cover-stats .stat {
  flex: 1;
  min-width: 120px;
  padding: 0 18px;
}
.cover-stats .stat:first-child { padding-left: 6px; }
.cover-stats .stat:last-child  { padding-right: 6px; }
.cover-stats .stat-divider {
  width: 1px;
  background: var(--line);
  margin: 4px 0;
}
@media (max-width: 720px) {
  .cover-stats .stat-divider { display: none; }
  .cover-stats .stat { flex: 1 1 45%; padding: 8px 12px; }
}
.cover-callout {
  max-width: 780px;
  padding: 18px 22px;
  border-left: 2px solid var(--magenta);
  background: linear-gradient(90deg, rgba(255, 47, 199, 0.08) 0%, rgba(255, 47, 199, 0) 100%);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
  border-radius: 0 4px 4px 0;
}
.cover-callout strong { color: var(--magenta); font-weight: 600; }

/* ─── Content sections on top of video (all get glassy backing so text reads) ─── */
.manifesto,
.intro-spazz,
.participate,
.why-win,
.venue-moment,
.foundation,
.agreements,
.promo,
.ai-notice-section,
.routes,
.economics,
.forecast-section,
.tech-edge,
.terms,
.use-funds-section,
.timeline-sec,
.closing-view,
.contact,
.abduction-whiteout,
.abduction-face,
.abduction-lab,
.disclaimer,
.footer {
  position: relative;
  z-index: 2;
}

/* Slightly darker backdrop behind the densest text blocks so video motion doesn't fight legibility */
.manifesto, .intro-spazz, .participate, .why-win, .foundation, .agreements,
.routes, .economics, .forecast-section, .terms, .use-funds-section,
.timeline-sec, .closing-view {
  background: rgba(5, 3, 15, 0.55);
  backdrop-filter: blur(3px);
}

/* ─── Simplified intake form (clipboard image removed, now lives in video) ─── */
.al-form-simple {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
  margin: 30px auto 24px;
  padding: 36px clamp(26px, 4vw, 42px);
  border: 1px solid rgba(58, 255, 237, 0.35);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(58, 255, 237, 0.06) 0%, rgba(181, 76, 255, 0.06) 100%),
    rgba(5, 3, 20, 0.78);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 0 60px rgba(58, 255, 237, 0.18), inset 0 0 30px rgba(58, 255, 237, 0.06);
  text-align: left;
}
.al-form-simple .al-field { display: flex; flex-direction: column; gap: 6px; }
.al-form-simple label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
}
.al-form-simple input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: rgba(5, 3, 15, 0.55);
  border: 1px solid rgba(58, 255, 237, 0.28);
  border-radius: 4px;
  outline: none;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.al-form-simple input::placeholder { color: var(--ink-faint); opacity: 0.7; }
.al-form-simple input:focus {
  border-color: var(--cyan);
  background: rgba(5, 3, 20, 0.85);
  box-shadow: 0 0 0 3px rgba(58, 255, 237, 0.12), 0 0 22px rgba(58, 255, 237, 0.25);
}
.al-form-simple .al-submit { align-self: stretch; margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════
   OVERRIDES · bg-video clarity + clipboard intake + scroll indicator
   ═══════════════════════════════════════════════════════════ */

/* 1. Kill the backdrop-blur on content sections so bg video stays sharp.
      Keep a light translucent dark fill so text contrast holds. */
.manifesto, .intro-spazz, .participate, .why-win, .foundation, .agreements,
.routes, .economics, .forecast-section, .terms, .use-funds-section,
.timeline-sec, .closing-view {
  background: rgba(5, 3, 15, 0.42) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Also kill glass blurs on individual content cards/tables/panels for clarity.
   Keep translucent fill only. */
.manifesto-text .lead, .pillar, .edge, .route-card,
.econ-table, .forecast-table, .forecast-viz,
.terms-card, .terms-card-full, .use-of-funds,
.partner, .agreement, .pv-card, .pv-table, .participate-table,
.al-form-simple, .al-form, .al-confirm,
.foundation-note, .private-plane-callout,
.promo-frame, .ai-notice, .hero-stats, .cover-stats {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* 2. Clipboard intake section — the doctor image holds at scroll bottom,
      inputs sit exactly on the printed NAME / EMAIL lines. */
.abduction-lab {
  padding: 0 !important;
  min-height: 100vh;
  background: #000 !important;   /* flat black behind the stage */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* Un-hide the image that was previously suppressed */
.abduction-lab .al-bg {
  display: block !important;
}

.abduction-lab .al-stage {
  position: relative;
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}
.abduction-lab .al-stage .al-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Clipboard-form overlay: inputs pinned to NAME / EMAIL lines in the image */
.al-clipboard-form {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;   /* only the inputs receive clicks */
}
.al-input {
  position: absolute;
  pointer-events: auto;
  width: 34%;
  left: 34%;
  height: 6.2%;
  padding: 0 14px;
  background: transparent;
  border: none;
  outline: none;
  color: #1e2a3a;            /* dark ink on the white clipboard */
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.55vw, 22px);
  letter-spacing: 0.04em;
  text-align: center;
  border-radius: 4px;
  transition: background .25s, box-shadow .25s;
}
.al-input::placeholder {
  color: rgba(80, 110, 140, 0.55);
  font-style: italic;
}
.al-input:hover  { background: rgba(120, 210, 255, 0.10); }
.al-input:focus  {
  background: rgba(140, 220, 255, 0.18);
  color: #0f1620;
  box-shadow: 0 0 0 1px rgba(58, 255, 237, 0.55), 0 0 22px rgba(58, 255, 237, 0.4);
}

/* Y-positions on this specific clipboard image */
.al-input--name  { top: 36%; }
.al-input--email { top: 54%; }

/* Content block (transmit button + fallback) sits ABOVE the stage, overlaid */
.abduction-lab .al-content {
  position: absolute;
  left: 0; right: 0; bottom: 4vh;
  z-index: 3;
  text-align: center;
  max-width: none;
  margin: 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.abduction-lab .al-submit {
  margin-top: 0 !important;
}

/* 3. Scroll indicator → bottom-right corner */
.hero-scroll-indicator {
  left: auto !important;
  right: clamp(20px, 3vw, 40px);
  transform: none !important;
  bottom: 24px;
}

@media (max-width: 720px) {
  .al-input { font-size: clamp(11px, 2.6vw, 15px); }
}

/* ═══════════════════════════════════════════════════════════
   INTAKE FORM · Final override (image removed, inputs overlay video's clipboard frame)
   ═══════════════════════════════════════════════════════════ */

/* Section fills the viewport so when scroll reaches bottom, the video's
   last frame (the clipboard) is what we see, with inputs overlaid. */
.abduction-lab {
  background: transparent !important;   /* let the video show through */
  min-height: 100vh;
  position: relative;
}

/* Stage now matches the viewport (no aspect-ratio lock) — percentages inside
   target viewport coords, aligning with the video's centered clipboard. */
.abduction-lab .al-stage {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  max-width: none !important;
  background: transparent !important;
  overflow: visible !important;
}

/* Belt-and-suspenders: no lingering .al-bg image */
.abduction-lab .al-bg { display: none !important; }

/* Keep the same tuned input positions — they target the clipboard's NAME/EMAIL lines */
.al-input--name  { top: 36% !important; }
.al-input--email { top: 54% !important; }

/* ═══════════════════════════════════════════════════════════
   Misc polish · extend intro + brighten fund descriptions
   ═══════════════════════════════════════════════════════════ */

/* 1. Give the SPAZZ logo intro more breathing room before the cover title arrives */
.hero-intro { min-height: 175vh !important; }

/* 2. Brighten the Use-of-Funds sub-lines (was too dark purple to read) */
.fund-desc {
  color: #c7b8f5 !important;   /* brighter, still on-palette */
  opacity: 0.95;
  font-weight: 500;
}

/* ─── Cover stats bar · keep 12–24 MO on one line, give bar a bit more room ─── */
.cover-stats {
  max-width: 1040px !important;   /* widen to give "12–24 MO" more breathing room */
}
.cover-stats .stat-value,
.cover-stats .stat-value-small {
  white-space: nowrap;
}
.cover-stats .stat-value span {
  white-space: nowrap;
  display: inline;
  margin-left: 4px;
}

/* ═══════════════════════════════════════════════════════════
   END FREEZE-FRAME · last video frame pinned behind the form
   Fades in when .abduction-lab is in view so the clipboard
   holds steady for the user to fill out.
   ═══════════════════════════════════════════════════════════ */
.al-freeze-frame {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease-out;
  pointer-events: none;
}
.abduction-lab.is-at-bottom .al-freeze-frame { opacity: 1; }

/* Inputs sit above the freeze-frame */
.abduction-lab .al-stage { z-index: 2 !important; }
.abduction-lab .al-content { z-index: 3 !important; }

/* Re-calibrated input positions to land inside the clipboard's actual input rectangles
   (measured from end-frame.jpg: NAME box y54-60%, EMAIL box y63-69%, x42-63%, width ~21%) */
.al-input {
  width: 17% !important;
  left: 42.5% !important;
  height: 5% !important;
  font-size: clamp(11px, 1.1vw, 17px) !important;
  color: #1c2230 !important;
  background: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(40, 60, 90, 0.5) !important;
  border-radius: 4px !important;
}
.al-input--name  { top: 73% !important; }
.al-input--email { top: 81% !important; }
.al-input::placeholder { color: rgba(40, 60, 90, 0.7) !important; font-size: 0.85em; }
.al-input:focus {
  background: rgba(120, 210, 255, 0.18) !important;
  box-shadow: 0 0 0 1px rgba(58, 255, 237, 0.6), 0 0 18px rgba(58, 255, 237, 0.5) !important;
}

/* ─── Lighten ALL subtext (same family as the new fund-desc color) ─── */
:root {
  --ink-dim:   #b4a8e8;   /* was #9a92c2 — brighter, still on-palette */
  --ink-faint: #9a8ecc;   /* was #5e5784 — much more readable */
}

/* Any place we hand-rolled dim color strings gets bumped too */
.section-sub,
.pv-card p,
.partner-why,
.agreement-body p,
.fund-desc,
.econ-note,
.intro-text p,
.manifesto-text p,
.edge p,
.route-why,
.tl-item p,
.contact-sub,
.promo-copy p,
.foundation-note {
  color: #c7b8f5 !important;
  opacity: 0.95;
}

/* ═══════════════════════════════════════════════════════════
   FINAL INTAKE · No freeze-frame; form sits on the video's
   last frame directly. Footer is squeezed tight below.
   ═══════════════════════════════════════════════════════════ */

/* Kill the old freeze-frame overlay rules */
.al-freeze-frame { display: none !important; }

/* The intake section IS the last big viewport. Make it exactly 100vh so
   max-scroll lands the viewport on this section. */
.abduction-lab {
  min-height: 100vh !important;
  height: 100vh !important;
  padding: 0 !important;
}
.abduction-lab .al-stage {
  position: relative !important;
  width: 100% !important;
  height: 100vh !important;
}

/* Hide transmit-button content until form is filled (keep UI minimal) */
.abduction-lab .al-content {
  position: absolute !important;
  left: 0; right: 0;
  bottom: 1.5vh !important;
  z-index: 4;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}
.abduction-lab .al-content .al-submit,
.abduction-lab .al-content .al-fallback { pointer-events: auto; }

/* Compact disclaimer — collapse to a thin strip under the clipboard */
.disclaimer {
  padding: 18px 0 10px !important;
  background: rgba(5, 3, 15, 0.82) !important;
}
.disclaimer .disc-body { padding: 0 !important; }
.disclaimer .disc-small {
  font-size: 10px !important;
  line-height: 1.45 !important;
  opacity: 0.6;
}

/* Compact footer — same treatment */
.footer {
  padding: 24px 0 16px !important;
  background: rgba(5, 3, 15, 0.9) !important;
}
.footer .footer-inner {
  grid-template-columns: auto 1fr auto !important;
  gap: 24px !important;
  padding-bottom: 16px !important;
  font-size: 12px !important;
}
.footer-logo-img { width: 120px !important; }
.footer-tagline { display: none !important; }
.footer-col-label { font-size: 9px !important; }
.social-links { flex-direction: row !important; gap: 14px !important; }
.social-links a span { display: none; }   /* just icons */
.footer-contact a { font-size: 11px !important; }
.footer-bottom { padding: 10px 0 !important; font-size: 9px !important; }

@media (max-width: 720px) {
  .footer .footer-inner { grid-template-columns: 1fr !important; gap: 12px !important; }
}
