:root {
  color-scheme: dark;
  font-family: Arial, sans-serif;
  --bg: #0f172a;
  --panel: #111827;
  --panel-2: #1f2937;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --accent: #dc2626;
  --accent-2: #f59e0b;
  --border: #334155;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(220, 38, 38, 0.16), transparent 32%),
    linear-gradient(180deg, #020617 0%, #0f172a 100%);
}

a {
  color: #fda4af;
}

.page {
  width: min(980px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.hero,
.panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 28px;
  padding: 28px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 10px;
  color: #fca5a5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0 0 12px;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h2 {
  font-size: 1.45rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.6;
}

.hero-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
  padding: 10px 14px;
  border: 1px solid rgba(248, 250, 252, 0.12);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.58);
  box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.04);
}

.hero-badge-label {
  color: rgba(203, 213, 225, 0.42);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-badge-value {
  color: var(--text);
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 0.96;
}

.actions,
.grid {
  display: grid;
  gap: 16px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ef4444 100%);
  color: var(--text);
}

.button.secondary {
  border-color: var(--border);
  background: rgba(31, 41, 55, 0.72);
  color: var(--text);
}

.hero-copy,
.hero-aside,
.hero-side-notes {
  display: grid;
  gap: 18px;
  align-content: start;
}

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

.hero-aside {
  width: min(100%, 360px);
  justify-self: end;
}

.hero-media {
  padding: 22px 18px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid rgba(248, 250, 252, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at top center, rgba(220, 38, 38, 0.14), transparent 46%),
    rgba(15, 23, 42, 0.76);
  overflow: hidden;
}

.hero img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 700px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  object-fit: contain;
  object-position: top center;
}

.hero-note {
  padding: 18px 18px 20px;
  border: 1px solid rgba(248, 250, 252, 0.08);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.8);
}

.hero-note-label {
  margin: 0 0 8px;
  color: #fca5a5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-note p {
  margin: 0;
}

.panel {
  margin-top: 22px;
  padding: 22px;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.list {
  margin: 0;
  padding-left: 18px;
}

.footer {
  margin-top: 28px;
  font-size: 14px;
}

code {
  padding: 0.1em 0.35em;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.12);
}

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

  .hero-aside,
  .hero-media {
    width: min(100%, 560px);
    margin: 0 auto;
  }
}
