/* =============================================================================
   GAMEBOY MODS UK - holding page
   Aesthetic: authentic DMG dot-matrix LCD on a premium dark base.
   ============================================================================= */

:root {
  /* --- DMG / LCD green ramp (the original 4-tone Game Boy palette) --- */
  --lcd-darkest: #0f380f;
  --lcd-dark:    #2c5417;
  --lcd-mid:     #5a8a2c;
  --lcd-light:   #8bac0f;
  --lcd-bright:  #9bbc0f;
  --lcd-screen:  #142b0e;   /* unlit LCD pane */

  /* --- dark shell base --- */
  --ink:      #07090a;      /* page background */
  --ink-2:    #0d1110;      /* raised surfaces */
  --ink-3:    #141a17;      /* cards */
  --hairline: #233027;      /* borders */
  --hairline-soft: #1a221d;

  /* --- text --- */
  --text:     #e8efe2;
  --text-dim: #9bb09a;
  --text-mute:#62786a;

  /* --- accent --- */
  --accent:   #9bbc0f;      /* LCD green, the signature */
  --accent-ink:#0a1404;
  --power:    #d23b2c;      /* power LED red */

  --font-pixel: "Press Start 2P", monospace;
  --font-mono:  "JetBrains Mono", ui-monospace, monospace;
  --font-body:  "Manrope", system-ui, sans-serif;

  --radius: 14px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* layered atmosphere: green-tinted radial glows over near-black */
  background-image:
    radial-gradient(120% 80% at 50% -10%, rgba(155, 188, 15, 0.10), transparent 60%),
    radial-gradient(80% 60% at 100% 100%, rgba(48, 98, 48, 0.12), transparent 55%),
    radial-gradient(70% 60% at 0% 90%, rgba(155, 188, 15, 0.05), transparent 50%);
  background-attachment: fixed;
}

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

/* ───────────────────────── grain overlay ───────────────────────── */
.fx-grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ───────────────────────── shared bits ───────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}

.btn {
  --bg: transparent;
  --fg: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--hairline);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease),
              background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --bg: var(--accent);
  --fg: var(--accent-ink);
  border-color: var(--accent);
  box-shadow: 0 0 0 rgba(155, 188, 15, 0);
}
.btn--primary:hover {
  box-shadow: 0 8px 30px rgba(155, 188, 15, 0.28), 0 0 0 1px var(--accent);
}
.btn--ghost { backdrop-filter: blur(4px); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ───────────────────────── top bar ───────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(7, 9, 10, 0.72);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--hairline-soft);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.brand__name {
  font-family: var(--font-pixel);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--text);
  white-space: nowrap;
}
.brand__dot { color: var(--accent); margin: 0 0.1em; }
.brand__logo {
  width: 34px; height: 34px;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.led {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--power);
  box-shadow: 0 0 8px 1px rgba(210, 59, 44, 0.8);
  animation: led-pulse 2.6s ease-in-out infinite;
}
@keyframes led-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px 1px rgba(210, 59, 44, 0.85); }
  50%      { opacity: 0.55; box-shadow: 0 0 4px 0 rgba(210, 59, 44, 0.4); }
}

.topbar__nav { display: flex; gap: 1.4rem; }
.topbar__nav a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  position: relative;
  transition: color 0.2s var(--ease);
}
.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.topbar__nav a + a::before {
  content: "";
  position: absolute;
  left: -0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1em;
  background: var(--hairline);
}
.topbar__nav a:hover { color: var(--text); }
.topbar__nav a:hover::after { width: 100%; }

/* ───────────────────────── hero ───────────────────────── */
.hero {
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem) clamp(3rem, 7vw, 6rem);
}

.lcd {
  position: relative;
  width: min(100%, 880px);
  border-radius: 22px;
  /* a backlit GBA colour LCD: lit from behind, glass front, IPS colour wash */
  background:
    /* glossy reflection across the top */
    linear-gradient(168deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 16%, transparent 36%),
    /* central backlight bloom - the panel is lit */
    radial-gradient(120% 95% at 50% 38%, rgba(155,188,15,0.20), transparent 68%),
    /* faint IPS colour shift in the corners - signals a colour panel */
    radial-gradient(150% 130% at 0% 0%, rgba(70,170,255,0.08), transparent 42%),
    radial-gradient(150% 130% at 100% 100%, rgba(255,80,190,0.07), transparent 42%),
    /* deep glass base */
    linear-gradient(180deg, #0e1709, #060b06);
  border: 1px solid rgba(155,188,15,0.20);
  /* black GBA-style bezel ring, recessed glass, and an outer backlight glow */
  box-shadow:
    inset 0 0 0 10px #0a0d09,
    inset 0 0 0 11px rgba(255,255,255,0.04),
    inset 0 0 70px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 40px 90px -28px rgba(0,0,0,0.9),
    0 0 70px -22px rgba(155,188,15,0.30);
  overflow: hidden;
}
/* fine RGB sub-pixel grid - a lit colour LCD, not a green dot-matrix */
.lcd__scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg,
      rgba(255,0,40,0.05) 0 1px,
      rgba(0,255,90,0.05) 1px 2px,
      rgba(40,120,255,0.05) 2px 3px,
      transparent 3px 4px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 4px);
  mix-blend-mode: screen;
  opacity: 0.5;
}
/* glass sheen sweeping across the front of the panel */
.lcd::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(118deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.02) 22%,
    transparent 46%,
    transparent 82%,
    rgba(255,255,255,0.05) 100%);
  mix-blend-mode: screen;
}
.lcd__inner {
  position: relative;
  z-index: 2;
  padding: clamp(2.2rem, 6vw, 4rem) clamp(1.6rem, 5vw, 3.5rem) clamp(2.4rem, 6vw, 3.6rem);
  text-align: center;
}

.boot-line {
  font-family: var(--font-pixel);
  font-size: clamp(0.6rem, 1.6vw, 0.82rem);
  color: var(--lcd-light);
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-bottom: clamp(1.6rem, 4vw, 2.4rem);
  opacity: 0;
  animation: boot-fade 0.5s var(--ease) forwards;
}
.cursor { animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero__logo {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 0.9rem);
  font-family: var(--font-pixel);
  line-height: 1.05;
  /* the famous Nintendo-logo drop */
  animation: logo-drop 0.7s var(--ease) 0.35s both;
}
.hero__logo-1 {
  font-size: clamp(1.7rem, 7vw, 4rem);
  color: var(--lcd-bright);
  text-shadow: 0 0 18px rgba(155,188,15,0.55), 3px 3px 0 var(--lcd-darkest);
}
.hero__logo-2 {
  font-size: clamp(1rem, 4vw, 2.1rem);
  color: var(--lcd-light);
  text-shadow: 0 0 14px rgba(139,172,15,0.4), 2px 2px 0 var(--lcd-darkest);
}

.hero__tag {
  max-width: 34ch;
  margin: clamp(1.4rem, 4vw, 2rem) auto 0;
  color: #cfe4b0;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  font-weight: 500;
  opacity: 0;
  animation: boot-fade 0.6s var(--ease) 1.05s forwards;
}

.hero__cta {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
  opacity: 0;
  animation: boot-fade 0.6s var(--ease) 1.3s forwards;
}
/* on the LCD the ghost button reads better with a green tint */
.lcd .btn--ghost { color: var(--lcd-light); border-color: #3a5e22; }
.lcd .btn--ghost:hover { color: var(--lcd-bright); border-color: var(--lcd-bright); }

.hero__meta {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6f9442;
  opacity: 0;
  animation: boot-fade 0.6s var(--ease) 1.55s forwards;
}

@keyframes boot-fade { to { opacity: 1; } }
@keyframes logo-drop {
  0%   { transform: translateY(-120%); opacity: 0; }
  70%  { transform: translateY(6%);    opacity: 1; }
  85%  { transform: translateY(-2%); }
  100% { transform: translateY(0);     opacity: 1; }
}

/* ───────────────────────── about ───────────────────────── */
.about {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}
.about__text {
  margin-top: 1rem;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
  text-wrap: balance;
}

/* ───────────────────────── gallery ───────────────────────── */
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem);
}
.gallery__head { margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }
.gallery__title {
  font-family: var(--font-pixel);
  font-size: clamp(1.2rem, 4vw, 2rem);
  margin-top: 0.7rem;
  line-height: 1.2;
}
.gallery__sub { color: var(--text-dim); margin-top: 0.8rem; font-size: 1.02rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease);
  /* staggered entrance, set per-card via --i in app.js */
  opacity: 0;
  transform: translateY(20px);
  animation: card-in 0.6s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 80ms + 0.2s);
}
@keyframes card-in { to { opacity: 1; transform: translateY(0); } }

.card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.9),
              0 0 0 1px rgba(155,188,15,0.4),
              0 0 40px -10px rgba(155,188,15,0.25);
}

.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(155,188,15,0.07), transparent 70%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 10px, transparent 10px 20px),
    var(--ink-2);
  border-bottom: 1px solid var(--hairline-soft);
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.card:hover .card__media img { transform: scale(1.04); }
/* SP shots are portrait clamshells: show the whole console (no crop) on a
   light backdrop that blends with the studio photo background. */
.card[data-form="sp"] .card__media {
  background: radial-gradient(120% 100% at 50% 38%, #e7e5e0, #d2cfc8 72%, #c5c2ba);
}
.card[data-form="sp"] .card__media img { object-fit: contain; }
.card__media svg {
  width: 84%; height: 84%;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.45));
  transition: transform 0.4s var(--ease);
}
.card:hover .card__media svg { transform: translateY(-3px) scale(1.02); }

/* hover "View on eBay" badge over the media */
.card__view {
  position: absolute;
  left: 0.8rem; bottom: 0.8rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.card:hover .card__view, .card:focus-within .card__view {
  opacity: 1; transform: translateY(0);
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.05rem 1.15rem 1.25rem;
  flex: 1;
}
.card__title {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.card__caption {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.45;
}

.gallery__foot { display: flex; justify-content: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ───────────────────────── notify ───────────────────────── */
.notify {
  padding: clamp(1rem, 3vw, 2rem) clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 7vw, 5rem);
}
.notify__panel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3.4rem);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(155,188,15,0.10), transparent 60%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.9);
}
.notify__title {
  font-family: var(--font-pixel);
  font-size: clamp(1.1rem, 3.6vw, 1.7rem);
  margin-top: 0.7rem;
  line-height: 1.25;
}
.notify__sub { color: var(--text-dim); margin-top: 0.9rem; }
/* --- MailerLite embedded form, themed to match -------------------------------
   MailerLite injects its own markup at runtime; these overrides restyle it to
   fit the retro look. !important is needed to beat MailerLite's bundled styles.
   Tip: in MailerLite, set the form layout to a single inline row for the best
   fit. Minor tweaks may be needed once your real form is in. */
.ml-embedded { margin-top: 1.6rem; }
.ml-form-embedContainer,
.ml-form-embedWrapper,
.ml-form-embedBody,
.ml-form-align-center { background: transparent !important; border: 0 !important; }
.ml-form-embedWrapper { max-width: none !important; }
.ml-form-embedContainer .ml-form-embedContent,
.ml-form-embedContainer .ml-form-formContent { margin: 0 0 0.9rem !important; }
.ml-form-embedContainer .ml-form-embedContent h4,
.ml-form-embedContainer .ml-form-embedContent p { color: var(--text-dim) !important; }

.ml-form-embedContainer input[type="email"],
.ml-form-embedContainer input[type="text"],
.ml-form-embedContainer .form-control {
  font-family: var(--font-mono) !important;
  font-size: 0.92rem !important;
  color: var(--text) !important;
  background: var(--ink) !important;
  border: 1.5px solid var(--hairline) !important;
  border-radius: 8px !important;
  padding: 0.85rem 1rem !important;
  height: auto !important;
  box-shadow: none !important;
}
.ml-form-embedContainer input::placeholder { color: var(--text-mute) !important; }
.ml-form-embedContainer input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(155,188,15,0.18) !important;
}

.ml-form-embedContainer .ml-form-embedSubmit button,
.ml-form-embedContainer button[type="submit"] {
  font-family: var(--font-mono) !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--accent-ink) !important;
  background: var(--accent) !important;
  border: 1.5px solid var(--accent) !important;
  border-radius: 8px !important;
  padding: 0.85rem 1.4rem !important;
  box-shadow: none !important;
  transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease) !important;
}
.ml-form-embedContainer .ml-form-embedSubmit button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(155,188,15,0.28) !important;
}
.ml-form-embedContainer .ml-form-successBody *,
.ml-form-embedContainer .ml-form-successContent * { color: var(--text) !important; }

/* ───────────────────────── footer ───────────────────────── */
.footer {
  border-top: 1px solid var(--hairline-soft);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.footer__logo { width: 60px; height: 60px; display: block; margin-bottom: 0.3rem; }
.footer__loc {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}
.footer__links { display: flex; gap: 1.6rem; }
.footer__links a {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-dim);
  position: relative;
  transition: color 0.2s var(--ease);
}
.footer__links a + a::before {
  content: "";
  position: absolute;
  left: -0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1em;
  background: var(--hairline);
}
.footer__links a:hover { color: var(--accent); }
.footer__legal {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-mute);
  max-width: 46ch;
  line-height: 1.5;
}

/* ───────────────────────── responsive ───────────────────────── */
@media (max-width: 560px) {
  .topbar__nav { gap: 1rem; }
  .topbar__nav a { font-size: 0.74rem; }
  .topbar__nav a + a::before { left: -0.5rem; }
  .brand__name { font-size: 0.6rem; }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; }
}

/* =============================================================================
   FLASH CART PAGE (+ homepage teaser)  ·  flashcart.html
   ============================================================================= */

.fc-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 4vw, 2.5rem) 0;
}
.fc-hero__title {
  font-family: var(--font-pixel);
  font-size: clamp(1.3rem, 3.6vw, 2.2rem);
  line-height: 1.5;
  margin-top: 1.1rem;
}
.fc-hero__sub {
  color: var(--text-dim);
  max-width: 46rem;
  margin-top: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.fc-detail {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.2rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 760px) {
  .fc-detail { grid-template-columns: 1fr; }
}
.fc-detail__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  object-fit: cover;
}

.fc-list {
  list-style: none;
  margin-top: 1.1rem;
  display: grid;
  gap: 0.85rem;
}
.fc-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-dim);
  line-height: 1.6;
}
.fc-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.fc-list strong { color: var(--text); }

.fc-note {
  margin-top: 1.4rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  background: var(--ink-2);
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}
.fc-note code {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.9em;
}

.fc-buy .notify__panel { text-align: center; }
.fc-buy__btn { margin-top: 1.6rem; }
.fc-buy__meta {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-mute);
}

.fc-faq {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.2rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem);
}
.fc-faq__list {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.fc-faq__item {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--ink-2);
  padding: 1.2rem 1.3rem;
}
.fc-faq__item dt {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text);
}
.fc-faq__item dd {
  margin-top: 0.6rem;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}
.fc-faq__item code {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.9em;
}

.fc-teaser { padding-bottom: 0; }
.fc-teaser .notify__panel { text-align: center; }
.fc-teaser__btn { margin-top: 1.6rem; }

/* ───────────────────────── reduced motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .boot-line, .hero__tag, .hero__cta, .hero__meta, .hero__logo, .card { opacity: 1; transform: none; }
}
