/* ============================================================
   GAMEGIST — shared stylesheet
   Neon-arcade-at-dusk zine. No external assets. No JS.
   ============================================================ */

:root {
  --bg:        #160f29;
  --bg-2:      #1d1338;
  --surface:   #271849;
  --surface-2: #33215c;
  --line:      #43307a;
  --pink:      #ff3d81;
  --teal:      #3dd1c9;
  --gold:      #ffcf3f;
  --lime:      #9be86b;
  --text:      #f2ecff;
  --muted:     #b3a3d6;
  --radius:    5px;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", "Segoe UI Mono", Menlo, Consolas, monospace;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow-pink: 6px 6px 0 rgba(255,61,129,.9);
  --shadow-teal: 6px 6px 0 rgba(61,209,201,.85);
  --shadow-gold: 6px 6px 0 rgba(255,207,63,.85);
  --shadow-dark: 6px 6px 0 rgba(0,0,0,.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% -10%, rgba(255,61,129,.16), transparent 40%),
    radial-gradient(circle at 92% 0%, rgba(61,209,201,.14), transparent 42%),
    linear-gradient(0deg, rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: auto, auto, 40px 40px, 40px 40px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.05; margin: 0 0 .5em; letter-spacing: -.02em; }

.wrap { width: min(1140px, 92vw); margin-inline: auto; }

.mono { font-family: var(--mono); }

/* ---------- Skip link + focus ---------- */
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: #1a1030; padding: .6rem 1rem;
  font-weight: 800; z-index: 100; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16,10,30,.9);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 1.2rem;
  flex-wrap: wrap;
  padding: .7rem 0;
}
.brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand:hover { text-decoration: none; }
.brand .logo-mark { width: 40px; height: 40px; flex: none; }
.brand .word {
  font-weight: 900; font-size: 1.5rem; letter-spacing: -.04em;
  color: var(--text); text-transform: uppercase;
}
.brand .word b { color: var(--pink); }

.nav-links { display: flex; flex-wrap: wrap; gap: .35rem .4rem; align-items: center; }
.nav-links a {
  color: var(--muted); font-weight: 700; font-size: .9rem;
  padding: .45rem .7rem; border-radius: var(--radius);
  border: 2px solid transparent;
}
.nav-links a:hover { color: var(--text); text-decoration: none; background: var(--surface); }
.nav-links a[aria-current="page"] {
  color: var(--text); border-color: var(--pink);
  background: var(--surface);
}

/* ============================================================
   REUSABLE BITS
   ============================================================ */
main { flex: 1 0 auto; padding-block: 2.6rem 4rem; }

.eyebrow {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .18em;
  color: var(--teal); font-weight: 700; margin: 0 0 .6rem;
}

.tag {
  display: inline-block; font-family: var(--mono); font-size: .68rem;
  font-weight: 700; letter-spacing: .08em;
  padding: .22rem .5rem; border-radius: 3px;
  border: 1.5px solid var(--line); color: var(--muted);
  background: rgba(255,255,255,.03);
}
.tag.pink { color: var(--pink); border-color: var(--pink); }
.tag.teal { color: var(--teal); border-color: var(--teal); }
.tag.gold { color: var(--gold); border-color: var(--gold); }
.tag.lime { color: var(--lime); border-color: var(--lime); }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: .95rem; cursor: pointer;
  padding: .7rem 1.15rem; border-radius: var(--radius);
  border: 2px solid #120b22; color: #1a1030;
  background: var(--gold);
  box-shadow: var(--shadow-dark);
  transition: transform .08s ease, box-shadow .08s ease;
}
.btn:hover { text-decoration: none; transform: translate(3px,3px); box-shadow: 3px 3px 0 rgba(0,0,0,.35); }
.btn:active { transform: translate(6px,6px); box-shadow: 0 0 0 rgba(0,0,0,.35); }
.btn.pink { background: var(--pink); color: #fff; }
.btn.teal { background: var(--teal); }
.btn.ghost {
  background: transparent; color: var(--text); border-color: var(--line);
  box-shadow: none;
}
.btn.ghost:hover { border-color: var(--teal); transform: none; box-shadow: none; }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin: 3.2rem 0 1.4rem;
  border-bottom: 2px solid var(--line); padding-bottom: .7rem;
}
.section-head h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin: 0; }
.section-head .more { font-family: var(--mono); font-size: .82rem; font-weight: 700; }

/* ---------- Card grid ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-dark);
  transition: transform .1s ease, box-shadow .1s ease, border-color .1s ease;
}
.card.link:hover { transform: translate(3px,3px); box-shadow: 3px 3px 0 rgba(0,0,0,.35); border-color: var(--pink); }

/* thumbnail zone painted with CSS/SVG, never a raster file */
.thumb {
  aspect-ratio: 16 / 9;
  position: relative;
  display: grid; place-items: center;
  border-bottom: 2px solid var(--line);
  overflow: hidden;
}
.thumb svg { width: 74%; height: 74%; filter: drop-shadow(3px 3px 0 rgba(0,0,0,.3)); }
.thumb .thumb-tag { position: absolute; top: .6rem; left: .6rem; }

.card-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card-body h3 { font-size: 1.12rem; margin: 0; }
.card-body h3 a { color: var(--text); }
.card-body h3 a:hover { color: var(--pink); text-decoration: none; }
.card-body p { margin: 0; color: var(--muted); font-size: .92rem; }
.meta { font-family: var(--mono); font-size: .72rem; color: var(--muted); margin-top: auto; padding-top: .3rem; }
.meta b { color: var(--teal); font-weight: 700; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { position: relative; padding: 1rem 0 .5rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 2rem; align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 7.5vw, 5rem); font-weight: 900;
  letter-spacing: -.045em; margin: .4rem 0 .8rem;
}
.hero h1 .glow { color: var(--pink); text-shadow: 0 0 22px rgba(255,61,129,.5); }
.hero h1 .glow2 { color: var(--teal); }
.hero p.lead { font-size: 1.1rem; color: var(--muted); max-width: 46ch; margin: 0 0 1.4rem; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.press-start {
  font-family: var(--mono); font-weight: 700; font-size: .8rem;
  letter-spacing: .2em; color: var(--gold); margin-top: 1.6rem;
}
.press-start .blink { animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero-art {
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
  border: 2px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-pink);
  padding: 1.6rem; display: grid; place-items: center;
}

/* ticker */
.ticker {
  margin-top: 1.8rem; border: 2px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2); overflow: hidden; display: flex; align-items: stretch;
}
.ticker .label {
  background: var(--pink); color: #fff; font-family: var(--mono); font-weight: 800;
  font-size: .74rem; letter-spacing: .1em; padding: .6rem .9rem; display: grid;
  place-items: center; white-space: nowrap;
}
.ticker .track { overflow: hidden; flex: 1; position: relative; }
.ticker ul {
  display: flex; gap: 2.5rem; margin: 0; padding: .6rem 1rem; list-style: none;
  white-space: nowrap; font-family: var(--mono); font-size: .8rem; color: var(--muted);
  animation: slide 26s linear infinite;
}
.ticker li b { color: var(--gold); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head {
  border: 2px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(120deg, var(--surface-2), var(--surface));
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow-teal); margin-bottom: 2.4rem;
  display: flex; gap: 1.4rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.page-head h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin: .3rem 0 .3rem; }
.page-head p { color: var(--muted); margin: 0; max-width: 55ch; }
.page-head .badge-art { width: 92px; height: 92px; flex: none; }

/* ============================================================
   LIST / FEED (news)
   ============================================================ */
.feed { display: grid; gap: 1.2rem; }
.post {
  display: grid; grid-template-columns: 150px 1fr; gap: 1.2rem;
  background: var(--surface); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow-dark);
  transition: border-color .1s ease, transform .1s ease, box-shadow .1s ease;
}
.post:hover { border-color: var(--teal); transform: translate(3px,3px); box-shadow: 3px 3px 0 rgba(0,0,0,.35); }
.post .post-thumb {
  border-radius: 4px; overflow: hidden; border: 2px solid var(--line);
  aspect-ratio: 1; display: grid; place-items: center;
}
.post .post-thumb svg { width: 70%; height: 70%; }
.post h3 { font-size: 1.2rem; margin: .3rem 0 .4rem; }
.post h3 a { color: var(--text); }
.post h3 a:hover { color: var(--pink); text-decoration: none; }
.post p { margin: 0 0 .6rem; color: var(--muted); font-size: .94rem; }
.post .meta { margin-top: 0; }
.tag-row { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .3rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.review-card {
  background: var(--surface); border: 2px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-dark);
  overflow: hidden; display: flex; flex-direction: column;
}
.review-top { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: 1.2rem; align-items: center; }
.review-cover {
  aspect-ratio: 16/9; border-bottom: 2px solid var(--line);
  display: grid; place-items: center;
}
.review-cover svg { width: 55%; }
.score-ring {
  --val: 90; --ring: var(--teal);
  width: 84px; height: 84px; border-radius: 50%; flex: none;
  display: grid; place-items: center; position: relative;
  background: conic-gradient(var(--ring) calc(var(--val) * 1%), var(--line) 0);
}
.score-ring::before {
  content: ""; position: absolute; inset: 8px; border-radius: 50%; background: var(--surface);
}
.score-ring .num { position: relative; font-family: var(--mono); font-weight: 800; font-size: 1.3rem; }
.review-card h3 { font-size: 1.2rem; margin: 0 0 .2rem; }
.review-card .verdict { color: var(--muted); font-size: .92rem; margin: .1rem 0 0; }
.review-foot {
  border-top: 2px solid var(--line); padding: .8rem 1.2rem;
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .74rem; color: var(--muted);
}

/* ============================================================
   GUIDES
   ============================================================ */
.guide-card {
  background: var(--surface); border: 2px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-dark);
  padding: 1.3rem; display: flex; flex-direction: column; gap: .6rem;
}
.guide-card .lvl {
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: .4rem;
}
.difficulty { display: inline-flex; gap: 3px; }
.difficulty i { width: 9px; height: 9px; border-radius: 2px; background: var(--line); display: inline-block; }
.difficulty i.on { background: var(--gold); }
.guide-card h3 { font-size: 1.15rem; margin: .2rem 0; }
.guide-card h3 a { color: var(--text); }
.guide-card h3 a:hover { color: var(--teal); text-decoration: none; }
.guide-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.guide-card .foot { margin-top: auto; padding-top: .6rem; font-family: var(--mono); font-size: .74rem; color: var(--muted); }

/* Featured guide */
.guide-featured {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
  border: 2px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-gold); margin-bottom: 2.4rem;
}
.guide-featured .art { background: linear-gradient(150deg, var(--surface-2), var(--surface)); display: grid; place-items: center; padding: 2rem; border-right: 2px solid var(--line); }
.guide-featured .art svg { width: 70%; }
.guide-featured .body { padding: 1.8rem; }
.guide-featured .body h2 { font-size: 1.8rem; }
.steps { list-style: none; counter-reset: s; margin: 1rem 0 0; padding: 0; display: grid; gap: .7rem; }
.steps li { counter-increment: s; display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; }
.steps li::before {
  content: counter(s); font-family: var(--mono); font-weight: 800;
  background: var(--pink); color: #fff; width: 28px; height: 28px; border-radius: 4px;
  display: grid; place-items: center; font-size: .85rem;
}
.steps li span { color: var(--muted); font-size: .94rem; }

/* ============================================================
   RELEASE RADAR (timeline)
   ============================================================ */
.timeline { position: relative; margin-left: 12px; padding-left: 2rem; border-left: 3px solid var(--line); display: grid; gap: 1.6rem; }
.release {
  position: relative; background: var(--surface); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-dark);
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.1rem; align-items: center;
}
.release::before {
  content: ""; position: absolute; left: calc(-2rem - 9px); top: 1.6rem;
  width: 15px; height: 15px; background: var(--gold); border: 3px solid var(--bg);
  border-radius: 50%; box-shadow: 0 0 0 2px var(--gold);
}
.release .date-chip {
  font-family: var(--mono); text-align: center; border: 2px solid var(--line);
  border-radius: 4px; padding: .5rem .7rem; min-width: 74px; background: var(--bg-2);
}
.release .date-chip .d { font-size: 1.5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.release .date-chip .m { font-size: .7rem; letter-spacing: .12em; color: var(--muted); }
.release .platform-ico { width: 54px; height: 54px; flex: none; }
.release h3 { font-size: 1.15rem; margin: 0 0 .25rem; }
.release p { margin: 0; color: var(--muted); font-size: .88rem; }
.countdown { font-family: var(--mono); font-size: .74rem; color: var(--teal); font-weight: 700; white-space: nowrap; }

/* ============================================================
   ABOUT + CONTACT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; }
.prose p { color: var(--muted); }
.prose h2 { margin-top: 1.8rem; font-size: 1.5rem; }
.stat-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 1.6rem 0; }
.stat {
  border: 2px solid var(--line); border-radius: var(--radius); background: var(--surface);
  padding: 1rem; text-align: center; box-shadow: var(--shadow-dark);
}
.stat .n { font-family: var(--mono); font-weight: 800; font-size: 1.7rem; color: var(--gold); }
.stat .l { font-size: .78rem; color: var(--muted); }

.panel {
  border: 2px solid var(--line); border-radius: var(--radius); background: var(--surface);
  padding: 1.4rem; box-shadow: var(--shadow-teal);
}
.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.field label { font-weight: 700; font-size: .85rem; }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: .95rem; color: var(--text);
  background: var(--bg-2); border: 2px solid var(--line); border-radius: 4px;
  padding: .6rem .7rem;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--teal); outline: none; }

.faq { display: grid; gap: .8rem; }
details.qa {
  border: 2px solid var(--line); border-radius: var(--radius); background: var(--surface);
  padding: .3rem 1rem; box-shadow: var(--shadow-dark);
}
details.qa summary {
  cursor: pointer; font-weight: 700; padding: .7rem 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after { content: "+"; font-family: var(--mono); color: var(--pink); font-size: 1.3rem; }
details.qa[open] summary::after { content: "\2013"; }
details.qa p { color: var(--muted); margin: 0 0 .9rem; font-size: .93rem; }

/* team */
.team { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.member { text-align: center; background: var(--surface); border: 2px solid var(--line); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow-dark); }
.member .avatar { width: 72px; height: 72px; margin: 0 auto .7rem; }
.member h3 { font-size: 1.05rem; margin: 0; }
.member .role { font-family: var(--mono); font-size: .74rem; color: var(--teal); }
.member p { color: var(--muted); font-size: .86rem; margin: .5rem 0 0; }

/* ============================================================
   NEWSLETTER STRIP
   ============================================================ */
.subscribe {
  margin-top: 3.4rem; border: 2px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(120deg, var(--surface-2), var(--surface));
  padding: 1.8rem; box-shadow: var(--shadow-pink);
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap;
}
.subscribe h2 { font-size: 1.5rem; margin: 0 0 .2rem; }
.subscribe p { margin: 0; color: var(--muted); }
.sub-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.sub-form input {
  font-family: var(--sans); font-size: .95rem; color: var(--text);
  background: var(--bg-2); border: 2px solid var(--line); border-radius: 4px; padding: .7rem .8rem; min-width: 240px;
}
.sub-form input:focus { border-color: var(--gold); outline: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot {
  border-top: 2px solid var(--line); background: var(--bg-2);
  padding: 2.4rem 0 1.6rem; margin-top: 3rem;
}
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 1.6rem; }
.foot-grid h4 { font-size: .8rem; font-family: var(--mono); letter-spacing: .1em; color: var(--gold); text-transform: uppercase; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.foot-grid a { color: var(--muted); font-size: .9rem; }
.foot-grid a:hover { color: var(--text); }
.foot-about p { color: var(--muted); font-size: .9rem; margin: .6rem 0 0; max-width: 34ch; }
.foot-brand { display: flex; align-items: center; gap: .5rem; }
.foot-brand .word { font-weight: 900; font-size: 1.2rem; text-transform: uppercase; letter-spacing: -.03em; }
.foot-brand .word b { color: var(--pink); }
.foot-bottom {
  border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 1.2rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-family: var(--mono); font-size: .74rem; color: var(--muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .guide-featured { grid-template-columns: 1fr; }
  .guide-featured .art { border-right: none; border-bottom: 2px solid var(--line); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .grid.cols-3, .grid.cols-2, .team, .stat-strip { grid-template-columns: 1fr; }
  .post { grid-template-columns: 1fr; }
  .post .post-thumb { aspect-ratio: 16/9; }
  .release { grid-template-columns: auto 1fr; }
  .release .platform-ico { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .subscribe { flex-direction: column; align-items: flex-start; }
  .brand .word { font-size: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .btn:hover, .card.link:hover, .post:hover { transform: none; }
}

/* ---------- thumbnail tint variants ---------- */
.thumb.t-pink { background: radial-gradient(circle at 28% 22%, rgba(255,61,129,.30), transparent 62%), linear-gradient(160deg, #2c1a52, #1d1338); }
.thumb.t-teal { background: radial-gradient(circle at 28% 22%, rgba(61,209,201,.28), transparent 62%), linear-gradient(160deg, #17303a, #1d1338); }
.thumb.t-gold { background: radial-gradient(circle at 28% 22%, rgba(255,207,63,.26), transparent 62%), linear-gradient(160deg, #3a2f16, #1d1338); }
.thumb.t-lime { background: radial-gradient(circle at 28% 22%, rgba(155,232,107,.24), transparent 62%), linear-gradient(160deg, #223a1e, #1d1338); }
.thumb.t-violet { background: radial-gradient(circle at 28% 22%, rgba(138,111,212,.34), transparent 62%), linear-gradient(160deg, #322055, #1d1338); }
.post-thumb.t-pink { background: linear-gradient(160deg, #2c1a52, #1d1338); }
.post-thumb.t-teal { background: linear-gradient(160deg, #17303a, #1d1338); }
.post-thumb.t-gold { background: linear-gradient(160deg, #3a2f16, #1d1338); }
.post-thumb.t-lime { background: linear-gradient(160deg, #223a1e, #1d1338); }
.post-thumb.t-violet { background: linear-gradient(160deg, #322055, #1d1338); }
.review-cover.t-pink { background: radial-gradient(circle at 50% 30%, rgba(255,61,129,.26), transparent 65%), var(--surface-2); }
.review-cover.t-teal { background: radial-gradient(circle at 50% 30%, rgba(61,209,201,.24), transparent 65%), var(--surface-2); }
.review-cover.t-gold { background: radial-gradient(circle at 50% 30%, rgba(255,207,63,.24), transparent 65%), var(--surface-2); }
.hero-invader { width: 78%; max-width: 320px; }
.hero-invader svg { filter: drop-shadow(6px 6px 0 rgba(0,0,0,.35)); }
