:root {
  color-scheme: light;
  --bg: #f4f6f8;
  --bg-cool: #e8eef4;
  --surface: #ffffff;
  --text: #141820;
  --muted: #5c6470;
  --ome: #0066ff;
  --ome-dim: rgba(0, 102, 255, 0.1);
  --bang: #ff3b30;
  --bang-soft: rgba(255, 59, 48, 0.12);
  --interview: #1a1f28;
  --accent: #00c7be;
  --border: rgba(20, 24, 32, 0.09);
  --shadow: 0 18px 48px rgba(0, 102, 255, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display:
    "SF Pro Display",
    "Segoe UI",
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  --font-body:
    "SF Pro Text",
    "Segoe UI",
    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:
    linear-gradient(135deg, var(--ome-dim) 0%, transparent 40%),
    linear-gradient(225deg, var(--bang-soft) 0%, transparent 35%),
    linear-gradient(180deg, var(--bg-cool) 0%, var(--bg) 100%);
}

.backdrop__dots {
  position: absolute;
  top: 10%;
  right: 6%;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(0, 102, 255, 0.2) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.6;
}

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

.hero {
  margin-bottom: 36px;
}

.hero__stage {
  padding: 36px 32px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--ome);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

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

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

.brand-title .interview {
  display: block;
  margin-top: 8px;
  font-size: 0.38em;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--interview);
}

h1 {
  margin: 20px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin-top: 16px;
  max-width: 52ch;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.78;
}

.updated {
  margin-top: 18px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ome);
}

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

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

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

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

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

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--interview);
}

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

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

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

.card h2 {
  margin: 0 0 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ome);
}

.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;
  padding: 26px 24px;
  background: var(--interview);
  border-color: transparent;
}

.card--wide h2 {
  color: var(--accent);
}

.card--wide p {
  color: rgba(255, 255, 255, 0.72);
}

a {
  color: var(--ome);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--ome-dim);
}

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

.footer {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--interview);
}

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

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

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

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

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

  .hero__stage {
    padding: 28px 22px 24px;
  }
}

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