/* ==========================================================================
   XBoing — Neon Retro-Arcade Theme
   ========================================================================== */

:root {
  --bg-void:      #05040d;
  --bg-panel:     #0d0a1f;
  --bg-panel-2:   #14102b;
  --neon-cyan:    #2ee6ff;
  --neon-pink:    #ff2ea6;
  --neon-yellow:  #ffe62e;
  --neon-green:   #39ff8f;
  --neon-purple:  #a742ff;
  --text-main:    #eef0ff;
  --text-dim:     #9a95c9;
  --border-glow:  rgba(46, 230, 255, 0.35);
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'Space Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --header-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-void);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(167, 66, 255, 0.25), transparent),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(46, 230, 255, 0.12), transparent);
}

h1, h2, h3, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
code { font-family: var(--font-mono); }

/* Scanline overlay for CRT feel */
.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
  opacity: 0.5;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(5, 4, 13, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46, 230, 255, 0.2);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.brand-logo {
  height: 30px;
  width: auto;
  image-rendering: pixelated;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.main-nav a {
  color: var(--text-dim);
  transition: color 0.2s, text-shadow 0.2s;
  padding: 6px 0;
}

.main-nav a:hover { color: var(--neon-cyan); text-shadow: 0 0 8px var(--neon-cyan); }

.main-nav .nav-cta {
  color: var(--bg-void);
  background: var(--neon-green);
  padding: 10px 16px;
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(57, 255, 143, 0.6);
}

.main-nav .nav-cta:hover {
  color: var(--bg-void);
  text-shadow: none;
  filter: brightness(1.15);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 6px var(--neon-cyan);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 24px 100px;
  overflow: hidden;
}

/* A very faint copy of the game, tilted back in 3D like a screen receding
   into the distance behind the title - not a full-bleed photo background.
   Uses a real <img> (with width/height attributes) rather than a CSS
   background-image so it always has a real, guaranteed-visible size. */
.hero-backdrop-wrap {
  position: absolute;
  top: 6%;
  left: 50%;
  width: min(68vw, 620px);
  z-index: 0;
  transform: translateX(-50%) perspective(1600px) rotateX(22deg) rotateY(-6deg) rotateZ(1deg) scale(1.1);
  transform-origin: center top;
  pointer-events: none;
}

.hero-backdrop {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.22;
  filter: blur(1px) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 4, 13, 0.1) 0%, rgba(5, 4, 13, 0.05) 40%, rgba(5, 4, 13, 0.65) 100%);
  pointer-events: none;
}

#bgCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto 28px;
}

.hero-logo {
  width: min(85vw, 480px);
  height: auto;
  display: block;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 24px rgba(46, 230, 255, 0.55));
  animation: logoFlicker 6s infinite;
}

@keyframes logoFlicker {
  0%, 94%, 100% { opacity: 1; }
  95% { opacity: 0.82; }
  96% { opacity: 1; }
  97% { opacity: 0.7; }
  98% { opacity: 1; }
}

/* Random star glint across the logo, mirroring the in-game effect */
.glint {
  position: absolute;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  pointer-events: none;
  animation: glintPulse 0.9s ease-out forwards;
}
.glint::before, .glint::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.95), 0 0 18px 5px rgba(255, 255, 255, 0.5);
}
.glint::before { width: 100%; height: 2px; transform: translate(-50%, -50%); }
.glint::after { width: 2px; height: 100%; transform: translate(-50%, -50%); }

@keyframes glintPulse {
  0%   { transform: scale(0);    opacity: 0; }
  25%  { transform: scale(1.15); opacity: 1; }
  55%  { transform: scale(0.8);  opacity: 0.85; }
  100% { transform: scale(0);    opacity: 0; }
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--neon-yellow);
  text-shadow: 0 0 12px rgba(255, 230, 46, 0.6);
  margin: 0 0 36px;
}

.hero-meta {
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* A little paddle sliding back and forth, standing in for the old rainbow stripe */
.hero-paddle {
  width: 96px;
  height: 14px;
  margin: 32px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--neon-pink) 0 10px, #f3f2ff 10px calc(100% - 10px), var(--neon-pink) calc(100% - 10px) 100%);
  box-shadow: 0 0 18px rgba(255, 46, 166, 0.55);
  animation: paddleSlide 3.4s ease-in-out infinite;
}

@keyframes paddleSlide {
  0%, 100% { transform: translateX(-42px); }
  50% { transform: translateX(42px); }
}

/* ---------- Section shell ---------- */
main section, .stack-panel { padding: 110px 24px; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; width: 100%; }

.section-title {
  font-size: 28px;
  margin-bottom: 48px;
  color: var(--text-main);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.section-title span {
  font-size: 15px;
  font-weight: 600;
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

.section-subtitle {
  color: var(--text-dim);
  font-size: 17px;
  margin: -28px 0 40px;
  max-width: 640px;
}
.section-subtitle code {
  color: var(--neon-cyan);
  background: rgba(46, 230, 255, 0.08);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.85em;
}

/* ---------- Sticky panel layering ----------
   About / History / Features stack on top of one another as you scroll:
   each panel is pinned via position: sticky and the next panel's normal
   document flow slides up and over it. */
.stack-container {
  position: relative;
}

.stack-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

/* Content scrolls inside the pinned panel so longer sections (like History)
   never get cut off by the next panel sliding over before you're done reading. */
.stack-panel > .section-inner {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(46, 230, 255, 0.4) transparent;
}
.stack-panel > .section-inner::-webkit-scrollbar { width: 6px; }
.stack-panel > .section-inner::-webkit-scrollbar-thumb {
  background: rgba(46, 230, 255, 0.35);
  border-radius: 3px;
}
.stack-panel > .section-inner::-webkit-scrollbar-track { background: transparent; }

.stack-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 1;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-pink), transparent);
  box-shadow: 0 0 16px rgba(46, 230, 255, 0.35);
}

.panel-about {
  z-index: 1;
  background: linear-gradient(160deg, #0d0a1f 0%, #14102b 100%);
}
.panel-history {
  z-index: 2;
  background: linear-gradient(160deg, #14102b 0%, #1c1440 100%);
}
.panel-features {
  z-index: 3;
  background: linear-gradient(160deg, #1c1440 0%, #0d0a1f 100%);
  box-shadow: 0 -30px 70px rgba(0, 0, 0, 0.55);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-copy p {
  color: var(--text-dim);
  font-size: 18px;
  margin: 0 0 20px;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-note {
  font-size: 16px !important;
  color: var(--text-dim);
  border-left: 2px solid var(--neon-cyan);
  padding-left: 16px;
}
.about-note a { color: var(--neon-cyan); text-decoration: underline; }
.about-note a:hover { text-shadow: 0 0 8px var(--neon-cyan); }

.arcade-frame {
  border: 3px solid var(--neon-purple);
  border-radius: 10px;
  padding: 14px;
  background: var(--bg-panel);
  box-shadow: 0 0 30px rgba(167, 66, 255, 0.35);
}
.arcade-frame img {
  width: 100%;
  border-radius: 6px;
  image-rendering: pixelated;
}

/* ---------- History / Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid rgba(46, 230, 255, 0.3);
}

.timeline-item {
  position: relative;
  padding-bottom: 44px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 12px var(--neon-pink);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--neon-yellow);
  text-shadow: 0 0 8px rgba(255, 230, 46, 0.5);
  margin-bottom: 10px;
}

.timeline-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--text-main);
}

.timeline-body p {
  color: var(--text-dim);
  font-size: 17px;
  margin: 0;
}
.timeline-body code {
  color: var(--neon-cyan);
  background: rgba(46, 230, 255, 0.08);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.85em;
}
.timeline-body a { color: var(--neon-cyan); text-decoration: underline; }
.timeline-body a:hover { text-shadow: 0 0 8px var(--neon-cyan); }

/* ---------- Install card (Homebrew, etc.) ---------- */
.install-card {
  background: var(--bg-panel);
  border: 1px solid rgba(57, 255, 143, 0.3);
  border-radius: 8px;
  padding: 22px 24px;
  margin-bottom: 28px;
  box-shadow: 0 0 24px rgba(57, 255, 143, 0.12);
}

.install-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--neon-green);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.install-label .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  display: inline-block;
}

.install-cmd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg-void);
  border: 1px solid rgba(46, 230, 255, 0.2);
  border-radius: 6px;
  padding: 14px 18px;
  flex-wrap: wrap;
}
.install-cmd code {
  font-size: 16px;
  color: var(--neon-cyan);
  overflow-x: auto;
  white-space: nowrap;
}
.copy-btn {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--text-dim);
  border-radius: 4px;
  padding: 8px 12px;
  transition: color 0.2s, border-color 0.2s;
}
.copy-btn:hover, .copy-btn.copied {
  color: var(--neon-green);
  border-color: var(--neon-green);
}

/* ---------- Community ---------- */
.community-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--bg-panel);
  border: 1px solid rgba(46, 230, 255, 0.25);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 0 24px rgba(46, 230, 255, 0.12);
}
.community-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(46, 230, 255, 0.1);
  font-size: 28px;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(46, 230, 255, 0.6);
}
.community-copy h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--text-main);
}
.community-copy p {
  color: var(--text-dim);
  font-size: 17px;
  margin: 0 0 20px;
}
.community-copy p a { color: var(--neon-cyan); text-decoration: underline; }
.community-copy p a:hover { text-shadow: 0 0 8px var(--neon-cyan); }
.btn-facebook {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--bg-void);
  background: var(--neon-cyan);
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 0 16px rgba(46, 230, 255, 0.5);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn-facebook:hover { transform: translateY(-2px); filter: brightness(1.1); }

/* ---------- Contact ---------- */
.contact-card { margin-bottom: 0; }
.contact-email {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--neon-cyan);
  overflow-x: auto;
  white-space: nowrap;
  text-decoration: none;
}
.contact-email:hover { text-decoration: underline; }
.contact-noscript {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 15px;
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-panel);
  border: 1px solid rgba(46, 230, 255, 0.18);
  border-radius: 8px;
  padding: 28px 24px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(46, 230, 255, 0.18);
}

.feature-shot {
  position: relative;
  width: 66%;
  aspect-ratio: 16 / 10;
  margin: 0 auto 20px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(46, 230, 255, 0.25);
  box-shadow: 0 0 16px rgba(46, 230, 255, 0.15);
}
.feature-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  filter: saturate(1.15) contrast(1.05) brightness(0.92);
}

.feature-icon {
  font-size: 26px;
  color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(255, 230, 46, 0.6);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.feature-card p {
  color: var(--text-dim);
  font-size: 16px;
  margin: 0;
}

/* ---------- Screenshots / Gallery ---------- */
.screenshots { background: var(--bg-void); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  background: var(--bg-panel);
  border: 1px solid rgba(46, 230, 255, 0.18);
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.gallery-item:hover {
  transform: scale(1.03);
  border-color: var(--neon-pink);
  box-shadow: 0 0 24px rgba(255, 46, 166, 0.4);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 575 / 720;
  object-fit: cover;
  image-rendering: pixelated;
}
.gallery-caption {
  display: block;
  padding: 10px 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dim);
}

/* ---------- Download ---------- */
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.download-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 230, 46, 0.2);
  border-radius: 8px;
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.download-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-yellow);
  box-shadow: 0 8px 30px rgba(255, 230, 46, 0.2);
}

.platform-icon {
  font-size: 30px;
  margin-bottom: 14px;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57, 255, 143, 0.6);
}

.download-card h3 { font-size: 17px; margin-bottom: 8px; }
.download-sub { color: var(--text-dim); font-size: 15px; }

.requirements { color: var(--text-dim); font-size: 15px; text-align: center; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(46, 230, 255, 0.15);
  padding: 50px 24px;
  text-align: center;
}
.footer-logo {
  height: 24px;
  width: auto;
  margin: 0 auto 18px;
  opacity: 0.85;
  image-rendering: pixelated;
}
.site-footer p { color: var(--text-dim); font-size: 16px; margin: 6px 0; }
.footer-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin: 18px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.footer-links a { color: var(--text-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--neon-cyan); }
.footer-credits {
  display: block;
  width: 100%;
  font-size: 14px;
  opacity: 0.75;
  max-width: 520px;
  margin: 6px auto !important;
  text-align: center !important;
}
.footer-copy { font-size: 13px; opacity: 0.6; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 4, 13, 0.92);
  backdrop-filter: blur(4px);
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-content { max-width: 640px; width: 100%; text-align: center; }
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  border: 2px solid var(--neon-purple);
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(167, 66, 255, 0.4);
  image-rendering: pixelated;
}
.lightbox-caption {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 16px;
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: none;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(46, 230, 255, 0.4);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(5, 4, 13, 0.97);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid rgba(46, 230, 255, 0.2);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .main-nav .nav-cta { margin-top: 10px; text-align: center; }
  .nav-toggle { display: flex; }

  .hero-tagline { font-size: 21px; }
  main section, .stack-panel { padding: 80px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .lightbox-prev, .lightbox-next { width: 36px; height: 36px; font-size: 16px; }
  .timeline { padding-left: 20px; }
  .timeline-item::before { left: -26px; }
  .install-cmd { flex-direction: column; align-items: stretch; }
  .install-cmd code { white-space: normal; word-break: break-word; }
  .copy-btn { align-self: flex-start; }
  .community-card { flex-direction: column; text-align: center; }
  /* Sticky stacking is a desktop flourish; on small screens just let panels flow normally
     so nothing depends on a fiddly nested-scroll gesture. */
  .stack-panel {
    position: static;
    height: auto;
    overflow: visible;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .stack-panel > .section-inner {
    height: auto;
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-logo { animation: none; }
  .hero-paddle { animation: none; }
}
