


html.intro-active,
html.intro-active body {
  overflow: hidden !important;
  touch-action: none;
  overscroll-behavior: none;
}

.intro-veil {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  color: var(--green, #39ff14);
  font-family: var(--font-mono, ui-monospace, monospace);

  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  isolation: isolate;

  animation: intro-boot 600ms ease-out both;
  transition:
    opacity 700ms cubic-bezier(.4,.0,.2,1),
    transform 800ms cubic-bezier(.6,.0,.2,1),
    filter 700ms ease-out;
  will-change: opacity, transform, filter;
}
@keyframes intro-boot {
  from { opacity: 0; filter: blur(8px) brightness(0.4); }
  to   { opacity: 1; filter: blur(0)   brightness(1);   }
}


.intro-veil.is-dismissed {
  opacity: 0;
  transform: translateY(-100vh);
  filter: blur(20px) brightness(0.2);
  pointer-events: none;
}


.intro-ascii {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;

  z-index: 0;
  image-rendering: pixelated;
}


.intro-vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(80% 60% at 50% 50%, transparent 0%, rgba(0,0,0,0.85) 100%),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 3px,
      rgba(0, 0, 0, 0.25) 3px,
      rgba(0, 0, 0, 0.25) 4px
    );
}

.intro-noise {
  position: absolute; inset: -50%;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: screen;
  background-image:
    repeating-conic-gradient(
      from 0deg,
      #39ff14 0deg 0.2deg,
      transparent 0.2deg 1deg
    );
  background-size: 3px 3px;
  animation: intro-grain 1.6s steps(6) infinite;
}
@keyframes intro-grain {
  0%   { transform: translate3d(0, 0, 0); }
  20%  { transform: translate3d(-12px, 8px, 0); }
  40%  { transform: translate3d(10px, -6px, 0); }
  60%  { transform: translate3d(-4px, -10px, 0); }
  80%  { transform: translate3d(8px, 4px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.intro-scan {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 48%,
      rgba(57, 255, 20, 0.18) 50%,
      transparent 52%,
      transparent 100%
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 2px,
      rgba(57, 255, 20, 0.035) 2px,
      rgba(57, 255, 20, 0.035) 3px
    );
  background-size: 100% 220%, 100% 100%;
  background-position: 0 -110%, 0 0;
  mix-blend-mode: screen;
  animation: intro-scan 5.5s cubic-bezier(.4,.0,.2,1) infinite;
}
@keyframes intro-scan {
  0%   { background-position: 0 -110%, 0 0; }
  70%  { background-position: 0 210%,  0 0; }
  100% { background-position: 0 210%,  0 0; }
}


.intro-corner {
  position: absolute;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(57, 255, 20, 0.65);
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.3;
  z-index: 2;
  text-shadow: 0 0 6px rgba(57, 255, 20, 0.4);
}
.intro-corner-tl { top: 24px; left: 28px; }
.intro-corner-tr { top: 24px; right: 28px; text-align: right; align-items: flex-end; }
.intro-corner-bl { bottom: 24px; left: 28px; }
.intro-corner-br { bottom: 24px; right: 28px; text-align: right; align-items: flex-end; }
.intro-corner span:nth-child(2) { color: rgba(57, 255, 20, 0.4); }

.intro-blink { animation: intro-blink 1.4s steps(2) infinite; }
@keyframes intro-blink {
  0%, 60% { opacity: 1; }
  60.01%, 100% { opacity: 0.25; }
}


.intro-stack {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vh, 32px);
  padding: 80px 24px;
  text-align: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}


.intro-sections {
  position: relative;
  z-index: 3;
}
.intro-section {
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
}


.intro-gate { gap: clamp(20px, 3.5vh, 40px); }

.intro-gate-readout {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: rgba(57, 255, 20, 0.85);
  text-align: left;
  max-width: min(560px, 92vw);
  width: 100%;
  text-shadow: 0 0 6px rgba(57, 255, 20, 0.35);
}
.intro-gate-readout .dim { color: rgba(57, 255, 20, 0.45); }

.intro-gate-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(560px, 92vw);
  padding: 14px 16px;
  border: 1px solid rgba(57, 255, 20, 0.35);
  background: rgba(0, 16, 0, 0.55);
  box-shadow:
    inset 0 0 24px rgba(57, 255, 20, 0.06),
    0 0 24px rgba(57, 255, 20, 0.18);
  text-align: left;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.intro-gate-form:focus-within {
  border-color: var(--green, #39ff14);
  box-shadow:
    inset 0 0 28px rgba(57, 255, 20, 0.12),
    0 0 36px rgba(57, 255, 20, 0.35);
}
.intro-gate-prompt {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(57, 255, 20, 0.7);
  white-space: nowrap;
}
.intro-gate-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--green, #39ff14);
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 4px 0;
  caret-color: var(--green, #39ff14);
  text-shadow: 0 0 6px rgba(57, 255, 20, 0.5);
}
.intro-gate-input::placeholder {
  color: rgba(57, 255, 20, 0.3);
  letter-spacing: 0.2em;
  text-transform: lowercase;
}
.intro-gate-caret {
  width: 8px;
  height: 14px;
  background: var(--green, #39ff14);
  box-shadow: 0 0 6px var(--green, #39ff14);
  animation: intro-gate-caret 1.05s steps(2) infinite;
  flex: 0 0 auto;
}
.intro-gate-form:focus-within .intro-gate-caret { display: none; }
@keyframes intro-gate-caret {
  0%, 50%  { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
.intro-gate-submit {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(57, 255, 20, 0.4);
  color: var(--green, #39ff14);
  font: inherit;
  font-size: 12px;
  padding: 6px 10px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: background 200ms ease, border-color 200ms ease;
}
.intro-gate-submit:hover,
.intro-gate-submit:focus-visible {
  background: rgba(57, 255, 20, 0.08);
  border-color: var(--green, #39ff14);
  outline: none;
}

.intro-gate-status {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  min-height: 1.2em;
  color: rgba(57, 255, 20, 0.5);
}
.intro-gate-status.is-error {
  color: #ff4f4f;
  text-shadow: 0 0 8px rgba(255, 79, 79, 0.6);
  animation: intro-gate-shake 350ms cubic-bezier(.36,.07,.19,.97);
}
.intro-gate-status.is-ok {
  color: #d8ffc8;
  text-shadow: 0 0 10px var(--green, #39ff14);
}
@keyframes intro-gate-shake {
  10%, 90%  { transform: translateX(-2px); }
  20%, 80%  { transform: translateX( 4px); }
  30%, 50%, 70% { transform: translateX(-6px); }
  40%, 60%  { transform: translateX( 6px); }
}


.intro-ascii,
.intro-vignette,
.intro-noise,
.intro-scan { position: fixed; }

.intro-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(57, 255, 20, 0.7);
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);

  animation: intro-eyebrow-in 800ms 200ms cubic-bezier(.2,.8,.2,1) both;
}
@keyframes intro-eyebrow-in {
  from { opacity: 0; letter-spacing: 0.6em; transform: translateY(-8px); }
  to   { opacity: 1; letter-spacing: 0.25em; transform: translateY(0); }
}


.intro-portrait {
  position: relative;
  width: clamp(220px, 32vmin, 360px);
  aspect-ratio: 1 / 1;

  clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
  background: #000;
  padding: 3px;
  box-sizing: border-box;
  animation: intro-portrait-in 1100ms 350ms cubic-bezier(.2,.8,.2,1) both;
}
@keyframes intro-portrait-in {
  from { opacity: 0; transform: scale(0.92) translateY(8px); filter: blur(20px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);   filter: blur(0);    }
}

.intro-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: inherit;
  background:
    linear-gradient(135deg,
      rgba(57, 255, 20, 0.45),
      rgba(57, 255, 20, 0.05) 40%,
      rgba(57, 255, 20, 0.45) 80%,
      rgba(57, 255, 20, 0.1)
    );
  filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.5));
  z-index: 0;
}
.intro-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;


  filter:
    url(#intro-glitch)
    grayscale(1)
    brightness(0.55)
    contrast(1.7)
    blur(2.2px)
    sepia(1)
    hue-rotate(70deg)
    saturate(2.2);
  mix-blend-mode: screen;
  animation: intro-portrait-flicker 4.2s steps(60) infinite;
}
@keyframes intro-portrait-flicker {
  0%, 100% { opacity: 0.85; transform: translate3d(0, 0, 0); }
  12%      { opacity: 0.6;  transform: translate3d(-1px, 0, 0); }
  13%      { opacity: 1;    transform: translate3d(1.5px, 0, 0); }
  22%      { opacity: 0.7;  transform: translate3d(0, 1px, 0); }
  48%      { opacity: 0.95; transform: translate3d(0, 0, 0); }
  60%      { opacity: 0.5;  transform: translate3d(2px, -1px, 0); }
  61%      { opacity: 1;    transform: translate3d(-2px, 0, 0); }
  78%      { opacity: 0.8;  transform: translate3d(0, 0, 0); }
}

.intro-portrait-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:

    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 2px,
      rgba(0, 0, 0, 0.55) 2px,
      rgba(0, 0, 0, 0.55) 3px
    ),

    linear-gradient(90deg, transparent 49.7%, rgba(57,255,20,0.25) 50%, transparent 50.3%),

    linear-gradient(0deg, transparent 49.7%, rgba(57,255,20,0.25) 50%, transparent 50.3%);
  mix-blend-mode: multiply;
}

.intro-portrait-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green, #39ff14);
  text-shadow: 0 0 6px rgba(57, 255, 20, 0.6);
}
.intro-portrait-frame span:nth-child(1) { position: absolute; top: 10px; left: 14px; }
.intro-portrait-frame span:nth-child(2) { position: absolute; bottom: 10px; right: 14px; }


.intro-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(57, 255, 20, 0.75);
  display: grid;
  gap: 4px;
  min-width: 280px;
  max-width: 380px;
  animation: intro-meta-in 900ms 600ms cubic-bezier(.2,.8,.2,1) both;
}
@keyframes intro-meta-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}
.intro-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(57, 255, 20, 0.18);
  padding: 4px 0;
  text-transform: uppercase;
}
.intro-meta-row span:first-child { opacity: 0.55; }
.intro-meta-row .v { color: var(--green, #39ff14); }
.intro-entropy {
  font-family: var(--font-mono, ui-monospace, monospace);
  letter-spacing: 0;
  animation: intro-entropy 1.2s steps(10) infinite;
}
@keyframes intro-entropy {
  0%   { content: '██████████'; }
  100% { content: '░▒▓██▓▒░██'; }
}


.intro-cta {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(57, 255, 20, 0.4);
  color: var(--green, #39ff14);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
  box-shadow:
    inset 0 0 24px rgba(57, 255, 20, 0.06),
    0 0 24px rgba(57, 255, 20, 0.18);
  transition:
    border-color 200ms ease,
    background 200ms ease,
    transform 200ms cubic-bezier(.2,.8,.2,1);
  animation: intro-cta-in 1000ms 850ms cubic-bezier(.2,.8,.2,1) both;
  margin-top: 8px;
}
@keyframes intro-cta-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.intro-cta:hover,
.intro-cta:focus-visible {
  border-color: var(--green, #39ff14);
  background: rgba(57, 255, 20, 0.06);
  outline: none;
  transform: translateY(-1px);
}
.intro-cta-arrow {
  animation: intro-arrow 1.6s ease-in-out infinite;
  font-size: 14px;
  line-height: 1;
}
@keyframes intro-arrow {
  0%, 100% { transform: translateY(0);   opacity: 0.55; }
  50%      { transform: translateY(4px); opacity: 1;    }
}


.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 380ms cubic-bezier(.4,.0,.2,1),
    visibility 0s linear 380ms;
}
.intro-veil.is-loading .intro-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 480ms cubic-bezier(.2,.8,.2,1) 80ms,
    visibility 0s linear 0s;
}


.intro-veil.is-loading .intro-sections {
  opacity: 0;
  pointer-events: none;
  filter: blur(8px) brightness(0.4);
  transition:
    opacity 320ms ease-out,
    filter 360ms ease-out;
}

.intro-veil.is-loading .intro-corner { opacity: 0.35; transition: opacity 300ms; }


.intro-veil.is-loading .intro-ascii { animation: intro-ascii-flicker 1.8s steps(8) infinite; }
@keyframes intro-ascii-flicker {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.82; }
  53%      { opacity: 1; }
}

.intro-veil.is-loading .intro-scan { animation-duration: 2.8s; }

.intro-loader-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.4vh, 24px);
  width: min(640px, 92vw);
  padding: 28px 30px 30px;
  border: 1px solid rgba(57, 255, 20, 0.35);
  background:
    linear-gradient(180deg, rgba(0,12,0,0.86), rgba(0,8,0,0.78));
  box-shadow:
    inset 0 0 40px rgba(57, 255, 20, 0.06),
    0 0 50px rgba(57, 255, 20, 0.25);
  text-align: left;
  animation: intro-loader-in 480ms cubic-bezier(.2,.8,.2,1) 60ms both;
}
@keyframes intro-loader-in {
  from { opacity: 0; transform: translateY(8px) scale(0.99); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    filter: blur(0); }
}

.intro-loader-stack::before,
.intro-loader-stack::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--green, #39ff14);
  pointer-events: none;
}
.intro-loader-stack::before { top: -1px; left: -1px;   border-right: 0; border-bottom: 0; }
.intro-loader-stack::after  { bottom: -1px; right: -1px; border-left: 0;  border-top: 0; }

.intro-loader-eyebrow { animation: none; }


.intro-loader-log {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: rgba(220, 255, 200, 0.85);
  height: 9.3em;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-top:    1px dashed rgba(57, 255, 20, 0.18);
  border-bottom: 1px dashed rgba(57, 255, 20, 0.18);
  padding: 8px 0;
  mask-image: linear-gradient(180deg, transparent 0, #000 35%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 35%, #000 100%);
}
.intro-loader-log-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: intro-loader-line-in 220ms ease-out both;
  text-shadow: 0 0 4px rgba(57, 255, 20, 0.35);
}
.intro-loader-log-line .ok  { color: var(--green, #39ff14); }
.intro-loader-log-line .err { color: #ff7a7a; }
.intro-loader-log-line .dim { color: rgba(57, 255, 20, 0.45); }
.intro-loader-log-line .hex { color: rgba(57, 255, 20, 0.75); letter-spacing: 0.05em; }
@keyframes intro-loader-line-in {
  from { opacity: 0; transform: translateX(-6px); filter: blur(2px); }
  to   { opacity: 1; transform: translateX(0);    filter: blur(0); }
}


.intro-loader-bar {
  position: relative;
  height: 14px;
  border: 1px solid rgba(57, 255, 20, 0.45);
  background: rgba(0, 16, 0, 0.6);
  overflow: hidden;
  box-shadow: inset 0 0 14px rgba(57, 255, 20, 0.08);
}
.intro-loader-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background:
    linear-gradient(90deg,
      rgba(57, 255, 20, 0.95),
      rgba(180, 255, 130, 1) 50%,
      rgba(57, 255, 20, 0.95) 100%);
  box-shadow:
    0 0 12px rgba(57, 255, 20, 0.6),
    inset 0 0 12px rgba(255, 255, 255, 0.25);
  transition: width 180ms cubic-bezier(.2,.8,.2,1);
}

.intro-loader-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0 0 0 auto;
  width: 28px;
  background: linear-gradient(90deg, transparent, #fff 80%, #fff);
  filter: blur(3px);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.intro-loader-bar-ticks {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(10% - 1px),
      rgba(0, 0, 0, 0.55) calc(10% - 1px),
      rgba(0, 0, 0, 0.55) 10%
    );
  pointer-events: none;
}


.intro-loader-readout {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(57, 255, 20, 0.8);
}
.intro-loader-pct {
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--green, #39ff14);
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.6);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  min-width: 3.2ch;
  display: inline-block;
}
.intro-loader-pct-sym {
  font-size: 16px;
  color: rgba(57, 255, 20, 0.7);
  margin-left: -4px;
}
.intro-loader-sep { opacity: 0.4; }
.intro-loader-status {
  flex: 1;
  min-width: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 0 6px rgba(57, 255, 20, 0.35);
}
.intro-loader-spinner {
  display: inline-flex;
  gap: 3px;
  align-items: flex-end;
  height: 12px;
}
.intro-loader-spinner i {
  display: inline-block;
  width: 3px;
  height: 100%;
  background: var(--green, #39ff14);
  box-shadow: 0 0 6px rgba(57, 255, 20, 0.6);
  animation: intro-loader-bar-eq 0.9s ease-in-out infinite;
}
.intro-loader-spinner i:nth-child(2) { animation-delay: 0.12s; }
.intro-loader-spinner i:nth-child(3) { animation-delay: 0.24s; }
.intro-loader-spinner i:nth-child(4) { animation-delay: 0.36s; }
@keyframes intro-loader-bar-eq {
  0%, 100% { transform: scaleY(0.3); opacity: 0.55; }
  50%      { transform: scaleY(1);   opacity: 1; }
}


.intro-loader-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(57, 255, 20, 0.55);
}
.intro-loader-stat {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  border-bottom: 1px dotted rgba(57, 255, 20, 0.18);
  padding-bottom: 4px;
}
.intro-loader-stat .v {
  color: rgba(57, 255, 20, 0.5);
  font-variant-numeric: tabular-nums;
  transition: color 200ms ease, text-shadow 200ms ease;
}
.intro-loader-stat .v.is-ok {
  color: var(--green, #39ff14);
  text-shadow: 0 0 6px rgba(57, 255, 20, 0.55);
}
.intro-loader-stat .v.is-progress {
  color: rgba(220, 255, 200, 0.9);
}


.intro-veil.is-complete .intro-loader-stack {
  animation: intro-loader-flash 360ms cubic-bezier(.2,.8,.2,1);
}
@keyframes intro-loader-flash {
  0%   { box-shadow: inset 0 0 40px rgba(57,255,20,0.06), 0 0 50px rgba(57,255,20,0.25); }
  50%  { box-shadow: inset 0 0 80px rgba(57,255,20,0.4),  0 0 120px rgba(57,255,20,0.9); border-color: #fff; }
  100% { box-shadow: inset 0 0 40px rgba(57,255,20,0.06), 0 0 50px rgba(57,255,20,0.25); }
}
.intro-veil.is-complete .intro-loader-bar-fill {
  background: linear-gradient(90deg, #fff, #d8ffc8 50%, #fff);
  box-shadow: 0 0 24px #fff;
}

@media (max-width: 560px) {
  .intro-loader-stack { padding: 22px 18px; gap: 14px; }
  .intro-loader-log   { height: 8.4em; font-size: 10.5px; }
  .intro-loader-pct   { font-size: 22px; }
  .intro-loader-stats { grid-template-columns: repeat(2, 1fr); font-size: 9.5px; }
}


@media (prefers-reduced-motion: reduce) {
  .intro-veil,
  .intro-noise,
  .intro-scan,
  .intro-portrait,
  .intro-portrait img,
  .intro-eyebrow,
  .intro-meta,
  .intro-cta,
  .intro-cta-arrow,
  .intro-blink {
    animation: none !important;
  }
  .intro-veil { transition: opacity 250ms ease, transform 250ms ease; }
  .intro-loader-spinner i,
  .intro-loader-log-line,
  .intro-loader-stack { animation: none !important; }
}


@media (max-width: 560px) {
  .intro-corner { font-size: 9px; }
  .intro-corner-tl, .intro-corner-bl { left: 14px; }
  .intro-corner-tr, .intro-corner-br { right: 14px; }
  .intro-corner-tl, .intro-corner-tr { top: 14px; }
  .intro-corner-bl, .intro-corner-br { bottom: 14px; }
  .intro-stack { gap: 16px; padding: 64px 16px; }
  .intro-meta  { font-size: 10px; min-width: 240px; }
  .intro-cta   { font-size: 11px; padding: 12px 22px; }
}
