:root {
  --bg: #080808;
  --ink: #f7f0e0;
  --muted: #b4aa96;
  --yellow: #ffcc00;
  --yellow-2: #e6b000;
  --line: rgba(255, 204, 0, 0.16);
  --card: #14120e;
}

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

html, body { margin: 0; padding: 0; }
html { color-scheme: dark; }

body {
  min-height: 100dvh;
  font-family: Outfit, ui-rounded, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #080808;
  color: var(--ink);
  line-height: 1.35;
}

.bg { display: none; }

.wrap {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 20px));
  margin: 0 auto;
  padding: 0 0 32px;
}

.hero {
  text-align: center;
  background: #080808;
  padding: 8px 12px 16px;
}

.hero-inner { margin: 0 auto; }

.logo {
  width: min(180px, 48vw);
  height: auto;
  display: block;
  margin: 0 auto 2px;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.tagline {
  margin: 0 0 12px;
  font-size: clamp(0.95rem, 3vw, 1.2rem);
  font-weight: 500;
  font-style: italic;
}

.tagline em {
  color: var(--yellow);
  font-style: italic;
  font-weight: 700;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe066, var(--yellow) 40%, var(--yellow-2));
  color: #16120a;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
}

.cta svg { width: 18px; height: 18px; fill: currentColor; }

.soon { opacity: 0.55; pointer-events: none; }

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.card img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  background: #0b0a08;
}

.card-body {
  padding: 6px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kicker {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.card h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 1.1;
}

.card p { display: none; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 4px;
}

.split a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.65rem;
  color: #16120a;
  background: var(--yellow);
}

.split a.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.foot {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
}

.foot strong { color: var(--ink); }

.foot a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

@media (min-width: 640px) {
  .grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .card img { height: 96px; }
  .logo { width: min(200px, 28vw); }
}
