@import url("https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap");

:root {
  --bg: #000000;
  --panel: #070707;
  --panel-soft: #101010;
  --ink: #f3f1e7;
  --muted: #b5b0a0;
  --line: #34312c;
  --line-strong: #8b816a;
  --accent: #d7b46a;
  --accent-cool: #6f9dff;
  --ok: #9ae2a7;
  --danger: #ff9494;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
}

body {
  padding: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 4px solid var(--line-strong);
  background: #000;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 3px solid var(--line);
  background: linear-gradient(180deg, #090909 0%, #040404 100%);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.topbar strong,
.eyebrow,
.panel-title,
.meta-label,
.stat-label {
  color: var(--accent);
  font-family: "Silkscreen", monospace;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero,
.section {
  padding: 18px;
  border-bottom: 3px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 18px;
}

.panel {
  border: 3px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.98), rgba(7, 7, 7, 0.98));
  padding: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  flex: 0 0 auto;
}

.brand-badge {
  width: 84px;
  height: 84px;
  border: 2px solid var(--line);
  background: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: "Silkscreen", monospace;
  font-size: 0.8rem;
  line-height: 1.4;
  text-transform: uppercase;
  text-align: center;
  flex: 0 0 auto;
}

.brand-copy {
  min-width: 0;
}

h1, h2, p {
  margin: 0;
}

h1 {
  margin-top: 8px;
  color: var(--ink);
  font-family: "Silkscreen", monospace;
  font-size: clamp(1.15rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  text-transform: uppercase;
}

h2 {
  color: var(--ink);
  font-family: "Silkscreen", monospace;
  font-size: 0.95rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.subtitle,
.section-copy,
.panel-copy,
.screenshot-note,
.spec-text {
  color: var(--muted);
  line-height: 1.8;
}

.subtitle {
  margin-top: 12px;
  font-size: 0.96rem;
  max-width: 70ch;
}

.hero-aside {
  display: grid;
  gap: 12px;
  align-content: start;
}

.aside-note {
  border: 2px solid var(--line);
  background: #0a0f1c;
  padding: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.9rem;
}

.aside-note strong {
  color: var(--accent-cool);
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  border: 2px solid var(--line);
  background: #090909;
  padding: 12px;
}

.stat-label {
  font-size: 0.74rem;
  margin-bottom: 8px;
}

.stat-value {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.7;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.spec {
  border: 2px solid var(--line);
  background: #090909;
  padding: 14px;
}

.spec-text {
  font-size: 0.92rem;
}

.screenshot-frame {
  border: 3px solid var(--line);
  background: #050505;
  padding: 14px;
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  border: 1px solid #222;
}

.screenshot-note {
  font-size: 0.9rem;
}

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

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 2px solid var(--line);
  font-family: "Silkscreen", monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.button {
  background: #121212;
}

.button:hover {
  border-color: var(--accent);
  background: #171717;
}

.button-ghost {
  color: var(--muted);
  background: transparent;
}

.button-ghost:hover {
  color: var(--ink);
  border-color: var(--accent-cool);
}

.footer {
  padding: 16px 18px 20px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.84rem;
}

.footer strong {
  color: var(--accent);
}

@media (max-width: 920px) {
  .hero,
  .stats,
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding: 10px;
  }

  .topbar,
  .section-head,
  .brand {
    display: grid;
  }

  .brand img {
    width: 72px;
    height: 72px;
  }

  .brand-badge {
    width: 72px;
    height: 72px;
    font-size: 0.72rem;
  }
}
