@font-face {
  font-family: "Press Start 2P";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/press-start-2p.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-700.woff2") format("woff2");
}

:root {
  --bg: #0d0d0f;
  --bg-2: #0a0a0c;
  --surface: #16161a;
  --surface-2: #1c1c22;
  --border: #26262c;
  --border-strong: #3a3a44;
  --text: #e9e9ec;
  --muted: #9a9aa6;
  --muted-2: #86868f;
  --red: #e5484d;
  --red-bright: #ff5c60;
  --red-strong: #d63a3f;
  --red-strong-hover: #c92f34;
  --red-dim: rgba(229, 72, 77, 0.14);
  --gold: #f2c14e;
  --green: #3fb950;
  --font-pixel: "Press Start 2P", "Courier New", monospace;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --wrap: 1080px;
  --radius: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  overflow-x: clip;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 0, 0, 0.16) 3px,
    rgba(0, 0, 0, 0) 4px
  );
  opacity: 0.5;
  mix-blend-mode: multiply;
}

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

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  color: var(--red-bright);
}

p {
  overflow-wrap: anywhere;
}

:focus-visible {
  outline: 2px solid #f4f4f6;
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--red-strong);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 12px;
  color: #fff;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

.pixel {
  font-family: var(--font-pixel);
  line-height: 1.5;
  letter-spacing: 0;
}

.eyebrow {
  font-family: var(--font-pixel);
  font-size: 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 18px;
}

.section {
  padding: 64px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  color: #f4f4f6;
  line-height: 1.25;
  font-weight: 700;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
}

h3 {
  font-size: 1.15rem;
}

.muted {
  color: var(--muted);
}

.link-more {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-more .icon {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.link-more:hover .icon {
  transform: translateX(3px);
}

.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  vertical-align: middle;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 13, 15, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  min-width: 0;
}

.brand:hover {
  color: var(--text);
}

.brand img {
  width: 26px;
  height: 26px;
  image-rendering: pixelated;
}

.brand-name {
  font-family: var(--font-pixel);
  font-size: 12px;
  color: #f4f4f6;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.brand-name .accent {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-links a[aria-current="page"] {
  color: var(--red);
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle .icon {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: inline-block;
}

.hero {
  position: relative;
  padding: 84px 0 64px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(900px 380px at 78% -10%, rgba(229, 72, 77, 0.16), transparent 60%),
    linear-gradient(180deg, #101013, var(--bg));
}

.hero-inner {
  max-width: 720px;
  margin: 0;
}

.hero h1 {
  font-family: var(--font-pixel);
  font-size: clamp(1.4rem, 5.4vw, 2.6rem);
  line-height: 1.35;
  margin: 0 0 22px;
  color: #f6f6f8;
}

.hero h1 .accent {
  color: var(--red);
  text-shadow: 0 0 18px rgba(229, 72, 77, 0.45);
}

.hero .lede {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-head {
  padding: 56px 0 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.page-head h1 {
  font-size: clamp(1.7rem, 4.4vw, 2.6rem);
  margin: 0 0 14px;
}

.page-head p {
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 40px;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn .icon {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--red-strong);
  color: #fff;
  border-color: var(--red-strong);
}

.btn-primary:hover {
  background: var(--red-strong-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--red);
  transform: translateY(-2px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 72, 77, 0.6);
  box-shadow: 0 12px 30px -18px rgba(229, 72, 77, 0.6);
}

.card-thumb {
  aspect-ratio: 16 / 10;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--border);
  image-rendering: pixelated;
  background: var(--bg-2);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  min-width: 0;
}

.card-kicker {
  font-family: var(--font-pixel);
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-2);
}

.card-title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 600;
  color: #f2f2f4;
  line-height: 1.3;
}

.card-title a {
  color: inherit;
}

.card-title a:hover {
  color: var(--red);
}

.card-excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 6px;
}

.date {
  font-size: 0.8rem;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
}

.score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hp {
  display: inline-flex;
  gap: 2px;
}

.hp span {
  width: 7px;
  height: 13px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
}

.hp span.on {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 6px rgba(229, 72, 77, 0.5);
}

.score-num {
  font-family: var(--font-pixel);
  font-size: 10px;
  color: var(--gold);
  white-space: nowrap;
}

.score-lg .hp span {
  width: 12px;
  height: 22px;
}

.score-lg .score-num {
  font-size: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--red-dim);
  color: var(--red-bright);
  border: 1px solid rgba(229, 72, 77, 0.3);
}

.tag-neutral {
  background: var(--surface-2);
  color: var(--muted);
  border-color: var(--border-strong);
}

.article {
  padding: 48px 0 24px;
}

.article-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.crumbs {
  font-size: 0.85rem;
  color: var(--muted-2);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.crumbs a {
  color: var(--muted);
}

.crumbs a:hover {
  color: var(--red);
}

.article-head h1 {
  font-size: clamp(1.7rem, 4.6vw, 2.5rem);
  margin: 0 0 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 0.9rem;
}

.byline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.byline img {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  image-rendering: pixelated;
  border: 1px solid var(--border);
}

.byline b {
  color: var(--text);
  font-weight: 600;
}

.article-hero {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  image-rendering: pixelated;
  margin: 28px 0 12px;
  background: var(--bg-2);
}

.verdict {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 30px 0;
}

.verdict .v-label {
  font-family: var(--font-pixel);
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.verdict p {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

.prose {
  font-size: 1.06rem;
  color: #d6d6dc;
}

.prose p {
  margin: 0 0 20px;
}

.prose h2 {
  font-size: 1.4rem;
  margin: 38px 0 14px;
}

.prose h3 {
  margin: 30px 0 10px;
}

.prose ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.prose strong {
  color: #fff;
  font-weight: 600;
}

.prose a {
  border-bottom: 1px solid rgba(229, 72, 77, 0.4);
}

.pull {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: #f4f4f6;
  line-height: 1.5;
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 20px;
  margin: 30px 0;
}

.fact-row {
  display: flex;
  gap: 12px 26px;
  flex-wrap: wrap;
  padding: 16px 0 6px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  font-size: 0.9rem;
}

.fact-row div {
  min-width: 0;
}

.fact-row span {
  display: block;
  font-family: var(--font-pixel);
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 5px;
}

.fact-row b {
  color: var(--text);
  font-weight: 600;
}

.siblings {
  border-top: 1px solid var(--border);
  padding: 34px 0;
  margin-top: 40px;
}

.siblings h2 {
  font-size: 1.05rem;
  margin: 0 0 20px;
}

.sib-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 14px;
}

.sib {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.sib:hover {
  transform: translateX(4px);
  border-color: rgba(229, 72, 77, 0.5);
}

.sib img {
  width: 56px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 3px;
  image-rendering: pixelated;
  object-fit: cover;
}

.sib .s-body {
  min-width: 0;
}

.sib .s-body {
  display: flex;
  flex-direction: column;
}

.sib .s-title {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.sib:hover .s-title {
  color: var(--red);
}

.sib .s-score {
  display: block;
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--gold);
  margin-top: 6px;
  white-space: nowrap;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 18px;
}

.member {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.member img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 5px;
  border: 1px solid var(--border);
  image-rendering: pixelated;
}

.member .m-body {
  min-width: 0;
}

.member .m-handle {
  font-weight: 600;
  color: #f2f2f4;
}

.member .m-role {
  font-family: var(--font-pixel);
  font-size: 7.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--red);
  margin: 3px 0 8px;
}

.member .m-bio {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--border);
}

.timeline li {
  position: relative;
  padding: 0 0 26px 26px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--red);
  border: 2px solid var(--bg);
}

.timeline .t-year {
  font-family: var(--font-pixel);
  font-size: 11px;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  max-width: 560px;
  margin: 8px auto 0;
}

.contact-card .mailmark {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  color: var(--red);
}

.contact-card .mailmark .icon {
  width: 46px;
  height: 46px;
}

.mail-btn {
  font-family: var(--font-pixel);
  font-size: clamp(8.5px, 2.7vw, 12px);
  overflow-wrap: anywhere;
  max-width: 100%;
}

.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 26px auto 0;
}

.notice .icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.center {
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 48px 0 34px;
  margin-top: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 34px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 34ch;
  margin: 0;
}

.footer-col h4 {
  font-family: var(--font-pixel);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 0.84rem;
}

.footer-bottom .pixel-note {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--muted-2);
  letter-spacing: 0.5px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
  }

  .nav-links.open {
    max-height: 340px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 14px;
    font-size: 1rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section {
    padding: 48px 0;
  }

  .contact-card {
    padding: 26px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
