:root {
  color-scheme: dark;
  --bg: #0c0c0e;
  --bg-ink: #121214;
  --surface: #1a1a1e;
  --surface-lit: #222228;
  --text: #f2f0ec;
  --muted: #8e8a84;
  --tattoo: #e8e4dc;
  --stencil: #ff3b5c;
  --stencil-dim: rgba(255, 59, 92, 0.14);
  --ink: #3d8bfd;
  --ink-dim: rgba(61, 139, 253, 0.12);
  --line: rgba(242, 240, 236, 0.1);
  --border: rgba(242, 240, 236, 0.08);
  --radius: 4px;
  --font-display:
    "SF Mono",
    "Menlo",
    "Consolas",
    monospace;
  --font-body:
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 35% at 10% 20%, var(--stencil-dim), transparent 50%),
    radial-gradient(ellipse 40% 30% at 90% 80%, var(--ink-dim), transparent 45%),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 23px,
      rgba(242, 240, 236, 0.03) 23px,
      rgba(242, 240, 236, 0.03) 24px
    ),
    var(--bg-ink);
}

.backdrop__trace {
  position: absolute;
  top: 14%;
  right: 8%;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 59, 92, 0.25);
  border-radius: 50%;
  opacity: 0.5;
}

.backdrop__trace::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(61, 139, 253, 0.3);
  border-radius: 50%;
}

.page {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.hero {
  margin-bottom: 36px;
}

.hero__panel {
  padding: 32px 28px 28px;
  background: linear-gradient(160deg, var(--surface-lit) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--stencil);
  border-radius: var(--radius);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 5px 12px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stencil);
  background: var(--stencil-dim);
  border: 1px solid rgba(255, 59, 92, 0.3);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-title .tattoo {
  color: var(--tattoo);
}

.brand-title .stencil {
  color: var(--stencil);
}

.brand-title .cleaner {
  display: block;
  margin-top: 6px;
  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

h1 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin-top: 14px;
  max-width: 54ch;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

.updated {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: rgba(255, 59, 92, 0.8);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 20px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.highlights li:nth-child(1) {
  border-top: 2px solid var(--stencil);
}

.highlights li:nth-child(2) {
  border-top: 2px solid var(--ink);
}

.highlights li:nth-child(3) {
  border-top: 2px solid var(--tattoo);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.highlights span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stencil);
}

.card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

.card p + p {
  margin-top: 10px;
}

.card--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(34, 34, 40, 0.6) 100%);
  border-color: rgba(255, 59, 92, 0.15);
}

a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 139, 253, 0.35);
}

a:hover {
  color: var(--stencil);
}

.footer {
  margin-top: 36px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer strong {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text);
}

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

@media (max-width: 760px) {
  .highlights {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card--wide {
    grid-column: auto;
  }

  .hero__panel {
    padding: 24px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 32px 0 56px;
    width: min(100% - 24px, 920px);
  }
}
