/* GoldGrade — Full retro arcade. CRT scanlines, chromatic aberration,
   neon outlines, blinking arcade flair. */
:root {
  --bg: #07041a;
  --bg-2: #0d0726;
  --bg-3: #150a36;
  --card: #100728;
  --card-2: #1a0d3c;

  --ink: #f6f4ff;
  --ink-2: #d6f3ff;       /* soft cyan body text — easier on the eyes than purple-tinted */
  --ink-3: #a3b6c9;
  --muted: #7e8aa3;

  --pink: #ff2bbf;
  --pink-glow: #ff7ed8;
  --cyan: #19e6ff;
  --cyan-glow: #7af0ff;
  --violet: #9b4dff;
  --gold: #ffd24d;
  --gold-2: #ffe27a;
  --green: #6cff7a;

  --rule: rgba(255,255,255,0.10);
  --rule-pink: rgba(255,43,191,0.55);
  --rule-cyan: rgba(25,230,255,0.55);

  --neon-pink: 0 0 1px #fff, 0 0 6px var(--pink), 0 0 18px var(--pink), 0 0 32px rgba(255,43,191,0.55);
  --neon-cyan: 0 0 1px #fff, 0 0 6px var(--cyan), 0 0 18px var(--cyan), 0 0 32px rgba(25,230,255,0.55);
  --neon-gold: 0 0 1px #fff, 0 0 6px var(--gold), 0 0 18px var(--gold), 0 0 30px rgba(255,210,77,0.55);

  --shadow-md: 0 12px 36px rgba(255,43,191,0.18), 0 4px 16px rgba(0,0,0,0.7);
  --shadow-lg: 0 28px 80px rgba(155,77,255,0.30), 0 10px 30px rgba(0,0,0,0.8);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(155,77,255,0.32), transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(25,230,255,0.12), transparent 70%),
    radial-gradient(ellipse 80% 60% at 0% 80%, rgba(255,43,191,0.12), transparent 70%),
    var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ----- CRT overlay ----- */
.scanlines {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 100;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.12) 0px,
    rgba(0,0,0,0.12) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: multiply;
  opacity: 0.22;
}
.crt {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 99;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.55) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255,43,191,0.025) 0px,
      rgba(0,0,0,0) 2px,
      rgba(25,230,255,0.025) 4px,
      rgba(0,0,0,0) 6px
    );
  animation: flicker 7s infinite;
}
@keyframes flicker {
  0%, 95%, 100% { opacity: 1; }
  96% { opacity: 0.85; }
  97% { opacity: 1; }
  98% { opacity: 0.78; }
  99% { opacity: 1; }
}

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--pink); color: #07041a; }

/* ----- Topbar ----- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,4,26,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 1px 0 rgba(255,43,191,0.25);
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 46px; height: 46px;
  border-radius: 8px;
  object-fit: cover;
  border: 1.5px solid var(--pink);
  box-shadow: var(--neon-pink);
  image-rendering: pixelated;
}
.brand-text {
  font-family: 'Faster One', 'Bowlby One', 'Russo One', 'Newsreader', serif;
  font-size: 24px; font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-stroke: 1.5px #07041a;
  text-shadow:
    -2px 2px 0 #07041a,
    0 0 10px rgba(255,255,255,0.4),
    0 0 20px rgba(255,43,191,0.35);
}
.brand-text small {
  display: block;
  color: #ffffff;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
  margin-top: 6px;
  text-transform: uppercase;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 6px rgba(255,255,255,0.45);
}
nav { display: flex; gap: 30px; align-items: center; }
nav a {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 400;
  transition: color .15s, text-shadow .15s;
}
nav a:hover { color: var(--cyan); text-shadow: var(--neon-cyan); }
nav .nav-cta {
  background: var(--pink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 4px;
  border: 1.5px solid var(--pink);
  box-shadow: var(--neon-pink), inset 0 0 12px rgba(255,255,255,0.2);
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
}
nav .nav-cta:hover { color: #fff; text-shadow: 0 0 12px #fff; transform: translateY(-1px); }

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: 120px 0 160px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
/* synthwave horizon grid */
.hero::before {
  content: "";
  position: absolute; left: 50%; bottom: -10px;
  width: 240%; height: 360px;
  transform: translateX(-50%) perspective(700px) rotateX(60deg);
  background-image:
    linear-gradient(to right, rgba(255,43,191,0.7) 2px, transparent 2px),
    linear-gradient(to bottom, rgba(25,230,255,0.6) 2px, transparent 2px);
  background-size: 60px 60px;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1), transparent 80%);
  mask-image: linear-gradient(to top, rgba(0,0,0,1), transparent 80%);
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(255,43,191,0.5));
  animation: gridscroll 12s linear infinite;
}
@keyframes gridscroll {
  0% { background-position: 0 0; }
  100% { background-position: 0 60px; }
}
/* sun */
.hero::after {
  content: "";
  position: absolute; left: 50%; top: 60%;
  width: 520px; height: 520px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(255,210,77,0.45), rgba(255,43,191,0.50) 40%, rgba(155,77,255,0.20) 65%, transparent 75%);
  filter: blur(4px);
  pointer-events: none;
}
.hero-wrap {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.hero-medallion {
  width: 130px; height: 130px;
  border-radius: 14px;
  object-fit: cover;
  border: 2.5px solid var(--pink);
  box-shadow:
    0 0 0 4px rgba(255,43,191,0.15),
    0 0 60px rgba(255,43,191,0.65),
    0 0 100px rgba(155,77,255,0.45),
    0 18px 60px rgba(0,0,0,0.7);
  image-rendering: pixelated;
  animation: pulse-pink 3s ease-in-out infinite;
}
@keyframes pulse-pink {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,43,191,0.15), 0 0 60px rgba(255,43,191,0.65), 0 0 100px rgba(155,77,255,0.45), 0 18px 60px rgba(0,0,0,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(255,43,191,0.10), 0 0 90px rgba(255,43,191,0.85), 0 0 140px rgba(25,230,255,0.4), 0 18px 60px rgba(0,0,0,0.7); }
}

.kicker {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  -webkit-text-stroke: 0.5px #07041a;
  text-shadow:
    -1px 1px 0 #07041a,
    0 0 8px var(--green),
    0 0 16px rgba(108,255,122,0.5);
}
.kicker .blink { animation: blink 1s steps(2) infinite; }
@keyframes blink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }

/* Chromatic-aberration headline — bigger, bolder hierarchy */
.hero h1 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(52px, 8.2vw, 108px);
  line-height: 1.0;
  letter-spacing: -2px;
  margin: 0;
  color: var(--ink);
  position: relative;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(255,43,191,0.4));
}
.glitch {
  position: relative;
  display: inline-block;
  text-shadow:
    -2px 0 0 rgba(255,43,191,0.85),
    2px 0 0 rgba(25,230,255,0.85);
  animation: chroma 5s ease-in-out infinite;
}
.glitch-2 { animation-delay: 0.5s; }
@keyframes chroma {
  0%, 92%, 100% { text-shadow: -2px 0 0 rgba(255,43,191,0.85), 2px 0 0 rgba(25,230,255,0.85); transform: translate(0,0); }
  93% { text-shadow: -4px 0 0 rgba(255,43,191,1), 4px 0 0 rgba(25,230,255,1); transform: translate(1px, -1px); }
  94% { text-shadow: 3px 0 0 rgba(255,43,191,1), -3px 0 0 rgba(25,230,255,1); transform: translate(-1px, 1px); }
  95% { text-shadow: -2px 0 0 rgba(255,43,191,0.85), 2px 0 0 rgba(25,230,255,0.85); }
}

.lede {
  max-width: 740px;
  margin: 0 auto;
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.7;
  font-weight: 400;
}
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Neon outline buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 4px;
  transition: all .15s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  box-shadow: var(--neon-pink), inset 0 0 14px rgba(255,255,255,0.25);
  text-shadow: 0 0 8px rgba(255,255,255,0.7);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.15); }
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: var(--neon-cyan);
  text-shadow: 0 0 8px var(--cyan);
}
.btn-outline:hover { background: var(--cyan); color: #07041a; text-shadow: none; }

/* trust-strip removed */

/* ----- Bands ----- */
.band { padding: 110px 0; position: relative; }
.band-soft { background: var(--bg-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.band-deep {
  background:
    linear-gradient(180deg, rgba(255,43,191,0.08), transparent 50%),
    var(--bg-3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-eyebrow {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: var(--neon-cyan);
}
.band-deep .section-eyebrow { color: var(--gold); text-shadow: var(--neon-gold); }

.section-title {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -1.2px;
  margin: 0 0 20px;
  color: var(--ink);
  /* softer chromatic aberration — readable, still has the vibe */
  text-shadow: -0.5px 0 0 rgba(255,43,191,0.35), 0.5px 0 0 rgba(25,230,255,0.35);
}
.section-sub {
  color: var(--ink-2);
  font-size: 18px;
  margin: 0 0 56px;
  max-width: 700px;
  line-height: 1.65;
  font-weight: 400;
}

/* ----- Scale: scannable, color-coded, full-width row on desktop ----- */
.scale-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.scale-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.25)),
    var(--card);
  border: 1.5px solid var(--rule);
  border-top-width: 4px;
  padding: 28px 22px 26px;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
  text-align: center;
}
.scale-card:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.20)),
    var(--card-2);
}
.scale-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 12px currentColor);
}
.scale-card .g {
  font-family: 'Faster One', 'Bowlby One', 'Russo One', 'VT323', monospace;
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  -webkit-text-stroke: 1.5px #07041a;
  text-shadow:
    -2px 2px 0 #07041a,
    0 0 8px currentColor,
    0 0 18px currentColor;
}
.scale-card .g sup {
  font-size: 14px;
  margin-left: 2px;
  font-family: 'Press Start 2P', monospace;
  vertical-align: 1.4em;
  -webkit-text-stroke: 0;
}
.scale-card .t {
  font-family: 'Bungee', 'Press Start 2P', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--ink);
  text-transform: uppercase;
  text-shadow: 0 0 8px currentColor;
}
.scale-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* Per-grade colour coding — top border + glow + icon/grade colour */
.scale-10 { border-top-color: var(--gold); box-shadow: 0 -2px 18px rgba(255,210,77,0.30); }
.scale-10 .scale-icon, .scale-10 .g { color: var(--gold); }
.scale-10:hover { border-color: var(--gold); box-shadow: 0 -2px 24px rgba(255,210,77,0.55), 0 12px 30px rgba(0,0,0,0.6); }

.scale-95 { border-top-color: #d6d6e8; box-shadow: 0 -2px 18px rgba(214,214,232,0.25); }
.scale-95 .scale-icon, .scale-95 .g { color: #ecedf5; }
.scale-95:hover { border-color: #d6d6e8; box-shadow: 0 -2px 22px rgba(214,214,232,0.45), 0 12px 30px rgba(0,0,0,0.6); }

.scale-90 { border-top-color: var(--green); box-shadow: 0 -2px 18px rgba(108,255,122,0.25); }
.scale-90 .scale-icon, .scale-90 .g { color: var(--green); }
.scale-90:hover { border-color: var(--green); box-shadow: 0 -2px 22px rgba(108,255,122,0.45), 0 12px 30px rgba(0,0,0,0.6); }

.scale-80 { border-top-color: var(--cyan); box-shadow: 0 -2px 18px rgba(25,230,255,0.25); }
.scale-80 .scale-icon, .scale-80 .g { color: var(--cyan); }
.scale-80:hover { border-color: var(--cyan); box-shadow: 0 -2px 22px rgba(25,230,255,0.45), 0 12px 30px rgba(0,0,0,0.6); }

.scale-70 { border-top-color: var(--violet); box-shadow: 0 -2px 18px rgba(155,77,255,0.30); }
.scale-70 .scale-icon, .scale-70 .g { color: #c89aff; }
.scale-70:hover { border-color: var(--violet); box-shadow: 0 -2px 22px rgba(155,77,255,0.50), 0 12px 30px rgba(0,0,0,0.6); }

.scale-60 { border-top-color: var(--pink); box-shadow: 0 -2px 18px rgba(255,43,191,0.30); }
.scale-60 .scale-icon, .scale-60 .g { color: var(--pink-glow); }
.scale-60:hover { border-color: var(--pink); box-shadow: 0 -2px 22px rgba(255,43,191,0.55), 0 12px 30px rgba(0,0,0,0.6); }

/* What we examine / scoring / receive — quick FAQ band */
.scale-faq {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px;
  background: rgba(7,4,26,0.45);
  border: 1px solid var(--rule);
  border-radius: 10px;
}
.faq-item { display: flex; flex-direction: column; gap: 4px; padding: 6px 8px; }
.faq-q {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 8px var(--gold);
}
.faq-a { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* ----- Vault ----- */
.vault-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 28px;
  margin-bottom: 50px;
}
.vault-header > div:first-child { max-width: 620px; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  background: transparent;
  border: 1.5px solid var(--rule);
  color: var(--ink-2);
  padding: 10px 16px;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: all .12s;
  font-weight: 400;
}
.chip:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: var(--neon-cyan); }
.chip.is-on {
  background: var(--pink);
  color: #fff; border-color: var(--pink);
  box-shadow: var(--neon-pink);
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}
.card {
  background: var(--card);
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .2s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
  box-shadow: var(--neon-pink), var(--shadow-lg);
}
.card-img {
  aspect-ratio: 1 / 1;
  background-color: #07041a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.card-img::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(7,4,26,0.6)),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.18) 0px, rgba(0,0,0,0.18) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.badge-grade {
  position: absolute; top: 14px; right: 14px;
  background: rgba(7,4,26,0.85);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'VT323', monospace;
  font-weight: 400;
  font-size: 28px;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  box-shadow: var(--neon-gold);
  z-index: 2;
  line-height: 1;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  backdrop-filter: blur(6px);
  text-shadow: var(--neon-gold);
}
.badge-grade small {
  font-size: 7px;
  letter-spacing: 1.5px;
  font-family: 'Press Start 2P', monospace;
  font-weight: 400;
  color: var(--gold-2);
  text-shadow: none;
}
.badge-mp {
  position: absolute; top: 14px; left: 14px;
  background: rgba(7,4,26,0.85);
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 4px;
  z-index: 2;
  font-weight: 400;
  backdrop-filter: blur(6px);
  text-shadow: 0 0 8px var(--cyan);
  box-shadow: 0 0 14px rgba(25,230,255,0.4);
}
.card-body {
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.card-platform {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 400;
  text-shadow: 0 0 8px var(--pink);
}
.card-title {
  font-family: 'Newsreader', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  flex: 1;
  letter-spacing: -0.2px;
}
.card-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.card-price {
  font-family: 'VT323', monospace;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
  text-shadow: var(--neon-gold);
}
.card-link {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 400;
}
.card:hover .card-link { color: var(--cyan); text-shadow: 0 0 8px var(--cyan); }

.vault-note {
  margin-top: 50px;
  text-align: center;
  color: var(--ink-3);
  font-size: 13px;
  font-style: italic;
}
.vault-note a { color: var(--cyan); border-bottom: 1px solid currentColor; }
.vault-note a:hover { color: var(--pink); border-color: var(--pink); }

/* ----- About ----- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.two-col p { font-size: 17px; line-height: 1.8; color: var(--ink-2); }
.two-col p + p { margin-top: 18px; }

.card-quote {
  border-left: 3px solid;
  border-image: linear-gradient(180deg, var(--pink), var(--cyan)) 1;
  padding: 8px 0 8px 36px;
  filter: drop-shadow(-3px 0 12px rgba(255,43,191,0.4));
}
.card-quote blockquote {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 30px;
  line-height: 1.3;
  margin: 0 0 20px;
  color: var(--ink);
  letter-spacing: -0.3px;
  text-shadow: -1px 0 0 rgba(255,43,191,0.45), 1px 0 0 rgba(25,230,255,0.45);
}
.card-quote cite {
  font-style: normal;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  text-shadow: 0 0 8px var(--gold);
}

/* ----- Contact ----- */
.contact-wrap { text-align: center; }
.contact-wrap .section-sub { margin-left: auto; margin-right: auto; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.contact-card {
  background: var(--card);
  border: 1.5px solid var(--rule);
  padding: 38px 28px;
  border-radius: 6px;
  display: flex; flex-direction: column; gap: 8px;
  transition: all .2s;
  text-align: left;
}
.contact-card:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: var(--neon-cyan); }
.cc-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pink); font-weight: 400;
  text-shadow: 0 0 8px var(--pink);
}
.cc-name {
  font-family: 'Newsreader', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.cc-meta { font-size: 13px; color: var(--ink-3); }

.email-cta {
  margin: 56px auto 0;
  max-width: 600px;
  background:
    linear-gradient(135deg, rgba(255,43,191,0.18), rgba(25,230,255,0.10)),
    var(--card-2);
  border: 1.5px solid var(--rule-pink);
  color: var(--ink);
  padding: 44px 32px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(255,43,191,0.28), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.email-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(25,230,255,0.18), transparent 55%);
  pointer-events: none;
}
.email-cta h3 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: 30px;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
  position: relative;
  text-shadow: -1.5px 0 0 rgba(255,43,191,0.55), 1.5px 0 0 rgba(25,230,255,0.55);
}
.email-cta p {
  margin: 0 0 24px;
  color: var(--ink-2);
  font-size: 15px;
  position: relative;
}
.email-cta .btn { position: relative; }

/* ----- Footer ----- */
footer {
  border-top: 1px solid var(--rule);
  padding: 40px 0;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--ink-3);
  background: var(--bg-2);
}
.foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; align-items: center; }
.foot-links { display: flex; gap: 22px; }
.foot-links a:hover { color: var(--cyan); text-shadow: var(--neon-cyan); }
.foot strong {
  font-family: 'Faster One', 'Bowlby One', 'Russo One', 'VT323', monospace;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-right: 12px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff8c2 0%, #ffd24d 35%, #f08a1f 70%, #b94a06 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #07041a;
  filter: drop-shadow(-1.5px 1.5px 0 #07041a) drop-shadow(0 0 8px rgba(255,210,77,0.5));
}

/* ----- Contact modal (FORGE-style) ----- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(7,4,26,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
}
.modal-overlay.is-open { display: flex; animation: modal-fade .2s ease-out; }
@keyframes modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal {
  width: 100%;
  max-width: 460px;
  padding: 36px 32px 28px;
  background:
    linear-gradient(180deg, rgba(255,43,191,0.10), rgba(15,8,32,0.98)),
    var(--card-2);
  border: 1.5px solid var(--rule-pink);
  border-radius: 18px;
  color: var(--ink);
  box-shadow:
    0 30px 80px rgba(255,43,191,0.30),
    0 0 0 1px rgba(255,43,191,0.20),
    inset 0 0 40px rgba(155,77,255,0.10);
  position: relative;
  animation: modal-pop .25s cubic-bezier(.2,.8,.3,1.2);
}
@keyframes modal-pop {
  from { transform: translateY(8px) scale(.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.modal h3 {
  margin: 0 0 8px;
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink-glow);
  text-shadow: 0 0 10px var(--pink);
}
.modal p {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}
.modal form { display: flex; flex-direction: column; }
.modal input,
.modal textarea {
  width: 100%;
  padding: 13px 15px;
  margin-bottom: 12px;
  background: rgba(7,4,26,0.65);
  border: 1.5px solid rgba(255,43,191,0.25);
  border-radius: 10px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  transition: border-color .2s, box-shadow .2s, background .2s;
  resize: vertical;
}
.modal input::placeholder,
.modal textarea::placeholder {
  color: rgba(214,243,255,0.40);
}
.modal input:focus,
.modal textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(7,4,26,0.85);
  box-shadow: 0 0 0 3px rgba(255,43,191,0.18), 0 0 18px rgba(255,43,191,0.25);
}
.form-status {
  margin: 4px 0 12px;
  font-size: 13px;
  min-height: 18px;
  color: var(--cyan);
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.form-status.is-error { color: #ff6b9a; text-shadow: 0 0 8px #ff6b9a; }
.form-status.is-ok    { color: var(--green); text-shadow: 0 0 8px var(--green); }
.modal-submit {
  width: 100%;
  padding: 14px;
  border: 1.5px solid var(--pink);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,43,191,0.85), rgba(155,77,255,0.85));
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
  box-shadow: var(--neon-pink), inset 0 0 14px rgba(255,255,255,0.18);
  transition: transform .12s, filter .15s;
}
.modal-submit:hover { transform: translateY(-1px); filter: brightness(1.12); }
.modal-submit[disabled] { opacity: .55; cursor: not-allowed; transform: none; filter: none; }
.modal-close {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(214,243,255,0.55);
  cursor: pointer;
  user-select: none;
  transition: color .15s;
}
.modal-close:hover { color: var(--cyan); text-shadow: 0 0 8px var(--cyan); }

body.modal-open { overflow: hidden; }

/* ----- Floating mobile CTA ----- */
.fab {
  display: none;
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 60;
  background: var(--pink);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: var(--neon-pink), 0 8px 24px rgba(0,0,0,0.6);
  align-items: center;
  gap: 10px;
  text-shadow: 0 0 6px rgba(255,255,255,0.6);
  border: 2px solid var(--pink);
  min-height: 52px;
}
.fab .fab-icon {
  font-size: 16px;
  filter: drop-shadow(0 0 6px #fff);
  animation: pulse-pink 2.4s ease-in-out infinite;
}

/* ----- Responsive ----- */
@media (max-width: 1080px) {
  .scale-grid { grid-template-columns: repeat(3, 1fr); }
  .scale-faq { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 70px 0 100px; }
  .band { padding: 70px 0; }
  nav { gap: 12px; }
  nav a:not(.nav-cta) { display: none; }
  .vault-header { flex-direction: column; align-items: flex-start; }
  .topbar .wrap { height: 64px; }
  .brand-text { font-size: 20px; }
  .hero-medallion { width: 96px; height: 96px; }
  .hero h1 { font-size: clamp(40px, 11vw, 56px); letter-spacing: -1px; }
  .lede { font-size: 17px; }
  .scale-grid { grid-template-columns: 1fr; gap: 12px; }
  .scale-card { padding: 22px 20px; flex-direction: row; text-align: left; align-items: center; gap: 16px; }
  .scale-card .scale-icon { font-size: 30px; margin: 0; flex-shrink: 0; }
  .scale-card .g { font-size: 26px; flex-shrink: 0; min-width: 96px; text-align: left; }
  .scale-card .t { display: none; }
  .scale-card p { font-size: 13px; line-height: 1.45; }
  .trust-strip { gap: 16px; padding: 16px 22px; border-radius: 16px; }
  .trust-strip > div { flex-direction: column; align-items: center; gap: 4px; }
  .btn { padding: 16px 22px; font-size: 10px; min-height: 48px; }
  .cta-row { flex-direction: column; width: 100%; }
  .cta-row .btn { justify-content: center; width: 100%; }
  .fab { display: inline-flex; }
  /* Tighter chromatic aberration on small screens for legibility */
  .glitch { text-shadow: -1px 0 0 rgba(255,43,191,0.7), 1px 0 0 rgba(25,230,255,0.7); }
  .section-title { text-shadow: none; }
  footer .foot { font-size: 8px; }
}
@media (max-width: 460px) {
  .fab .fab-text { display: none; }
  .fab { padding: 14px; width: 56px; height: 56px; min-height: 56px; justify-content: center; }
  .fab .fab-icon { font-size: 22px; animation: none; }
}
