/* ================================================================
   VARIABLES
================================================================= */
:root {
  /* Laser palette — starts blue, transitions to red via scroll */
  --laser-core:       #d0eeff;
  --laser-mid:        #0099ff;
  --laser-mid-tip:    rgba(0, 140, 255, 0.3);
  --laser-outer:      rgba(0, 140, 255, 0.25);

  /* Planet fills full viewport when fully risen */
  --planet-h:         100vh;
  /* Foreground fills full viewport — entire image revealed as planet exits */
  --fg-h:             100vh;

  /* Total scene height = scene-multiplier × 100vh */
  --scene-multiplier: 15;

  /* Palette */
  --bg:               #010408;
  --space-near:       #06111e;
}

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

html { scroll-behavior: auto; }

/* Hide animated layers until GSAP has applied initial positions */
.loading .layer--planet,
.loading .layer--clouds,
.loading .layer--foreground {
  visibility: hidden;
}

body {
  background: var(--bg);
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Courier New', monospace;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ================================================================
   SCENE SECTION
================================================================= */
.scene-section {
  position: relative;
  height: calc(var(--scene-multiplier) * 100vh);
}

.scene-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
  overflow: hidden;
}

/* ================================================================
   LAYER BASE
================================================================= */
.layer {
  position: absolute;
  inset: 0;
}

/* ================================================================
   LAYER 0 — Deep space
================================================================= */
.layer--space {
  z-index: 0;
  background: radial-gradient(
    ellipse 140% 70% at 50% -5%,
    var(--space-near) 0%,
    var(--bg) 55%,
    #000 100%
  );
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  will-change: opacity;
  animation: twinkle var(--d, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% { opacity: var(--o, 0.55); }
  50%       { opacity: calc(var(--o, 0.55) * 0.12); }
}

/* ================================================================
   LAYER 1 — Space station
   max-height: 42vh with padding-top: 5vh keeps station bottom
   at or below 47vh — always above the 50vh laser tip anchor.
================================================================= */
.layer--station {
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5vh;
}

.station-img {
  width: 80%;
  height: auto;
  max-height: 42vh;
  object-fit: contain;
}

/* ================================================================
   LASER
   Position (top, left, height) is set entirely by JS each frame.
   The tip is always fixed at 50vh regardless of progress or screen
   size (Model 2: top = tipY - height, height = span * progress).
================================================================= */
.laser {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 0;
  z-index: 6;
  pointer-events: none;
  will-change: top, height;
}

.laser__outer,
.laser__mid,
.laser__core {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

.laser__outer {
  width: 64px;
  background: linear-gradient(
    to bottom,
    transparent            0%,
    var(--laser-outer)     6%,
    var(--laser-outer)    94%,
    transparent          100%
  );
  filter: blur(14px);
  animation: laser-flicker 0.14s ease-in-out infinite;
}

.laser__mid {
  width: 16px;
  background: linear-gradient(
    to bottom,
    transparent              0%,
    var(--laser-mid)         4%,
    var(--laser-mid)        96%,
    var(--laser-mid-tip)   100%
  );
  filter: blur(5px);
  opacity: 0.9;
}

.laser__core {
  width: 5px;
  background: linear-gradient(
    to bottom,
    transparent         0%,
    var(--laser-core)   3%,
    var(--laser-core)  97%,
    var(--laser-mid)  100%
  );
}

.laser__impact {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 10%,
    rgba(255, 140, 40, 0.9)  0%,
    rgba(255, 50,  0,  0.4) 45%,
    transparent             70%
  );
  filter: blur(5px);
  opacity: 0;
}

@keyframes laser-flicker {
  0%   { opacity: 0.72; }
  33%  { opacity: 1;    }
  66%  { opacity: 0.84; }
  100% { opacity: 0.72; }
}

/* ================================================================
   LAYER 2 — Planet surface
   height: 50vh + bottom: 0 means at y=0 the top edge is at 50vh,
   which is exactly the laser tip anchor. GSAP animates from
   translateY(110%) to y:0 so it rises up from off-screen below.
================================================================= */
.layer--planet {
  z-index: 3;
  top: auto;
  bottom: 0;
  height: var(--planet-h);
  overflow: hidden;
  transform: translateY(110%);
}

.planet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ================================================================
   QUOTES
   Positioned at top: 50vh; GSAP applies yPercent: -50 to center
   each quote's midpoint exactly at the laser tip.
================================================================= */
.quotes {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}

.quote {
  position: absolute;
  top: 50vh;
  max-width: 32vw;
  opacity: 0;
}

.quote--left {
  right: calc(50% + 56px);
  text-align: right;
}

.quote--right {
  left: calc(50% + 56px);
}

.quote__text {
  font-size: 1.35rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.96);
  font-style: italic;
  font-weight: 500;
  text-shadow:
    0 2px 4px #000,
    0 4px 16px #000,
    0 0 48px rgba(255, 80, 0, 0.45),
    0 2px 12px rgba(0, 0, 0, 0.9);
}

.quote__attr {
  margin-top: 0.55em;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 80, 0, 0.95);
  text-shadow: 0 0 24px rgba(255, 80, 0, 0.65);
}

/* ================================================================
   LAYER 2.5 — Sand atmosphere / dust clouds
================================================================= */
.layer--clouds {
  z-index: 6;
  top: -15vh;
  bottom: auto;
  height: 65vh;
  overflow: hidden;
  transform: translateY(169.2%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 82%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 82%, transparent 100%);
}

.cloud-canvas {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

/* ================================================================
   LAYER 3 — Foreground
   height: 35% of planet height = covers bottom 35% of planet.
   bottom: 0 keeps it flush to viewport base.
   GSAP animates from translateY(130%) to y:0.
================================================================= */
.layer--foreground {
  z-index: 7;
  top: auto;
  bottom: 0;
  height: var(--fg-h);
  transform: translateY(100%);
}

.foreground-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.cta-block {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
}

.headline__text {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
  text-shadow:
    0 2px 8px #000,
    0 6px 24px #000,
    0 0 80px rgba(255, 80, 0, 0.55),
    0 0 140px rgba(255, 80, 0, 0.25),
    0 2px 12px rgba(0, 0, 0, 0.9);
}

.cta-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.4rem;
}

.cta-btn-wrap {
  display: flex;
  justify-content: center;
  animation: heat-aura 2.6s ease-in-out infinite;
}

.cta-btn-wrap:hover {
  animation-play-state: paused;
  filter:
    drop-shadow(0 0 22px var(--laser-mid))
    drop-shadow(0 0 55px var(--laser-mid))
    drop-shadow(0 0 110px var(--laser-outer));
  transition: filter 0.2s ease;
}

@keyframes heat-aura {
  0%, 100% {
    filter:
      drop-shadow(0 0 8px var(--laser-mid))
      drop-shadow(0 0 22px var(--laser-outer))
      drop-shadow(0 0 52px var(--laser-outer));
  }
  40% {
    filter:
      drop-shadow(0 0 18px var(--laser-mid))
      drop-shadow(0 0 42px var(--laser-mid))
      drop-shadow(0 0 90px var(--laser-outer));
  }
  72% {
    filter:
      drop-shadow(0 0 5px var(--laser-mid))
      drop-shadow(0 0 14px var(--laser-outer))
      drop-shadow(0 0 36px var(--laser-outer));
  }
}

.cta-btn {
  pointer-events: all;
  display: inline-block;
  text-decoration: none;
  padding: 1em 3.5em;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(140, 30, 0, 0.35);
  border: 2px solid var(--laser-mid);
  cursor: pointer;
  clip-path: polygon(
    14px 0%, calc(100% - 14px) 0%,
    100% 14px, 100% calc(100% - 14px),
    calc(100% - 14px) 100%, 14px 100%,
    0% calc(100% - 14px), 0% 14px
  );
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.9),
    0 0 28px var(--laser-mid);
  transition: background 0.25s ease;
}

.cta-btn:hover {
  background: rgba(200, 50, 0, 0.5);
}

/* ================================================================
   FLEET SHOWCASE BLOCK
================================================================= */
.fleet-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
}

.fleet-img {
  height: clamp(56px, 8vh, 80px);
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.fleet-id {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fleet-id__border {
  width: 2px;
  height: clamp(64px, 9vh, 90px);
  background: linear-gradient(to bottom, transparent, rgba(255, 230, 160, 0.9), transparent);
  box-shadow:
    0 0 8px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 0, 0, 0.7);
  transform: scaleY(0);
  transform-origin: top center;
  flex-shrink: 0;
}

.fleet-id__name {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.fleet-id__line {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  text-shadow:
    0 1px 3px #000,
    0 2px 8px rgba(0, 0, 0, 0.95),
    0 4px 20px rgba(0, 0, 0, 0.85);
}

.fleet-id__line--1 { font-size: clamp(1.8rem, 4vw, 3rem); }
.fleet-id__line--2 {
  font-size: clamp(1rem, 2.2vw, 1.7rem);
  letter-spacing: 0.2em;
  color: rgba(255, 220, 160, 0.85);
}

/* ================================================================
   PLACEHOLDERS
================================================================= */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  pointer-events: none;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.placeholder span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.placeholder em {
  font-style: normal;
  font-size: 0.48rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.16);
}

.placeholder--station {
  position: absolute;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 28vh;
}


/* ================================================================
   CARDS
   Centered in viewport, opaque gray background, appear between
   36%–67% scroll. Animated by GSAP (same pattern as quotes).
================================================================= */
.cards {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
}

.card {
  position: absolute;
  top: 50vh;
  max-width: 32vw;
  opacity: 0;
  background: rgba(30, 32, 38, 0.60);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.18),
    inset -1px -1px 0 rgba(0, 0, 0, 0.70),
    inset 0 3px 16px rgba(0, 0, 0, 0.45),
    0 8px 32px rgba(0, 0, 0, 0.7),
    0 2px 8px rgba(0, 0, 0, 0.5);
}

.card--left {
  right: calc(50% + 56px);
  text-align: right;
}

.card--right {
  left: calc(50% + 56px);
}

.card__text {
  font-size: 1.15rem;
  line-height: 1.65;
  letter-spacing: 0.025em;
  color: rgba(255, 255, 255, 0.90);
  font-style: normal;
  font-weight: 400;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 3px 12px rgba(0, 0, 0, 0.7);
}

.card__text + .card__text {
  margin-top: 0.75em;
}

@media (max-width: 768px) {
  .card,
  .card--left,
  .card--right {
    left: 10vw;
    right: auto;
    width: 80vw;
    max-width: none;
    text-align: left;
  }
}

/* ================================================================
   MEET THE CREW
================================================================= */
.meet-crew {
  position: absolute;
  top: 40%;
  left: 50%;
  opacity: 0;
  z-index: 11;
  pointer-events: none;
  white-space: nowrap;
  text-align: center;
}

.meet-crew__text {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.7);
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.55),
    0 0 32px rgba(255, 255, 255, 0.25),
    0 0 70px rgba(255, 255, 255, 0.12);
}

/* ================================================================
   SCROLL HUD
================================================================= */
#scroll-hud {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  pointer-events: none;
}

#scroll-hud span {
  background: rgba(0, 0, 0, 0.65);
  color: rgba(255, 200, 0, 0.95);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

/* ================================================================
   SCROLL HINT
================================================================= */
.scroll-hint {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
}

.scroll-hint__label {
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.85),
    0 2px 12px rgba(0, 0, 0, 0.7),
    0 0 24px rgba(255, 255, 255, 0.35);
}

.scroll-hint__line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.75), transparent);
  transform-origin: top center;
  animation: hint-pulse 1.9s ease-in-out infinite;
}

@keyframes hint-pulse {
  0%, 100% { transform: scaleY(1);    opacity: 0.75; }
  50%       { transform: scaleY(0.3);  opacity: 1;    }
}

.scroll-hint__chevrons {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-hint__chevron {
  width: 18px;
  height: 18px;
  border-right: 2.5px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2.5px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.8));
  animation: chevron-pulse 1.8s ease-in-out infinite;
}

.scroll-hint__chevron:nth-child(2) {
  animation-delay: 0.22s;
}

@keyframes chevron-pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.85; }
}

/* ================================================================
   SITE HEADER — compact fixed bar, slides in from top when scene exits
================================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 200;
  background: rgba(1, 4, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.site-header__inner {
  max-width: 2560px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  gap: 2rem;
}

.site-header__title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
  flex: 1;
  text-shadow:
    0 0 20px rgba(255, 80, 0, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.8);
}

.site-header__btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.45em 1.8em;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(140, 30, 0, 0.4);
  border: 1px solid var(--laser-mid);
  clip-path: polygon(
    8px 0%, calc(100% - 8px) 0%,
    100% 8px, 100% calc(100% - 8px),
    calc(100% - 8px) 100%, 8px 100%,
    0% calc(100% - 8px), 0% 8px
  );
  text-shadow: 0 0 14px var(--laser-mid);
  transition: background 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.site-header__btn:hover {
  background: rgba(200, 50, 0, 0.55);
}

.site-header__fleet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__fleet-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.site-header__fleet-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-header__fleet-line1 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.1;
}

.site-header__fleet-line2 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(255, 220, 160, 0.8);
  line-height: 1.1;
}

/* ================================================================
   INFO — fixed-height panel, desktop only, revealed when scene exits
   Inner content area scrolls independently via overflow-y: auto.
================================================================= */
.info {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: #060d14;
  pointer-events: none;
}

.info__content {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.info__content::-webkit-scrollbar {
  width: 4px;
}

.info__content::-webkit-scrollbar-track {
  background: transparent;
}

.info__content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.info__content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Info body — constrained width, padded content column */
.info__body {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 2.5rem 5rem;
}

/* About text */
.info__about {
  margin-bottom: 2.5rem;
}

.info__about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
}

.info__about-text + .info__about-text {
  margin-top: 1rem;
}

/* Stat + link cards */
.info__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.info__card {
  background: rgba(30, 32, 38, 0.60);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.45rem;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.12),
    inset -1px -1px 0 rgba(0, 0, 0, 0.60),
    0 4px 16px rgba(0, 0, 0, 0.4);
}

.info__card-value {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
}

.info__card-label {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.info__card--rsi {
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
}

.info__card--rsi:hover {
  background: rgba(40, 45, 55, 0.75);
}

.info__rsi-logo {
  width: 80%;
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

/* FAQ */
.info__faq-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.info__faq-item {
  margin-bottom: 1.5rem;
}

.info__faq-q {
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}

.info__faq-a {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.02em;
}

/* Back to top */
.info__back-wrap {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}

.info__back-btn {
  cursor: pointer;
  background: rgba(140, 30, 0, 0.25);
  border: 2px solid var(--laser-mid);
  color: #fff;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.22em;
  padding: 0.75em 2.5em;
  clip-path: polygon(
    10px 0%, calc(100% - 10px) 0%,
    100% 10px, 100% calc(100% - 10px),
    calc(100% - 10px) 100%, 10px 100%,
    0% calc(100% - 10px), 0% 10px
  );
  text-shadow: 0 0 18px var(--laser-mid);
  transition: background 0.2s ease;
}

.info__back-btn:hover {
  background: rgba(200, 50, 0, 0.4);
}

@media (max-width: 768px) {
  .site-header {
    display: none;
  }

  /* Info sits in normal document flow on mobile — no fixed overlay */
  .info {
    position: static;
  }

  .info__content {
    height: auto;
    overflow-y: visible;
  }

  .info__body {
    padding: 2rem 1.25rem 4rem;
  }

  .info__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

