:root {
  --bg: #0c0d12;
  --card: #151821;
  --line: rgba(255,255,255,.08);
  --text: #f2f3f7;
  --muted: #9aa1b5;
  --red: #e11d2e;
  --red2: #ff3b4b;
  --max: 820px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(225,29,46,.18), transparent 55%),
    radial-gradient(900px 400px at 90% 0%, rgba(80,90,160,.16), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; }
.wrap { width: min(100% - 28px, var(--max)); margin-inline: auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(12,13,18,.88);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--red2), #8b0000);
}
.header__actions {
  display: flex;
  gap: 8px;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-family: "Segoe UI", system-ui, sans-serif;
  border: 1px solid transparent;
}
.btn--red {
  background: linear-gradient(180deg, var(--red2), var(--red));
  color: #fff;
  box-shadow: 0 10px 24px rgba(225,29,46,.28);
}
.btn--ghost {
  border-color: var(--line);
  background: rgba(255,255,255,.03);
}

.hero {
  padding: 42px 0 18px;
}
.hero__card {
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(225,29,46,.14), rgba(21,24,33,.95) 45%);
}
.eyebrow {
  margin: 0 0 8px;
  color: #f5c451;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.15;
}
.hero p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 18px;
}
.hero__cta { margin-top: 8px; }

.content {
  padding: 10px 0 36px;
}
.content h2 {
  margin: 28px 0 10px;
  font-size: clamp(22px, 3.4vw, 30px);
  line-height: 1.25;
}
.content p {
  margin: 0 0 12px;
  color: #c8cddb;
  font-size: 17px;
}
.content ul {
  margin: 0 0 14px;
  padding-left: 1.2em;
  color: #c8cddb;
  font-size: 17px;
}
.content li { margin-bottom: 6px; }

.facts {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 8px;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
}
.facts td {
  border: 1px solid #343a4d;
  padding: 10px 12px;
  vertical-align: top;
}
.facts td:first-child {
  width: 40%;
  color: var(--muted);
  background: rgba(255,255,255,.02);
}

.cta-box {
  margin: 26px 0 8px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(225,29,46,.35);
  background: rgba(225,29,46,.08);
  text-align: center;
}
.cta-box p {
  margin: 0 0 12px;
  color: var(--text);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 40px;
  color: var(--muted);
  font-size: 14px;
  font-family: "Segoe UI", system-ui, sans-serif;
}
.footer a {
  color: #d7dbe8;
  text-decoration: none;
  margin-right: 14px;
}

@media (max-width: 640px) {
  .hero__card, .cta-box { padding: 20px 16px; }
  .hero p, .content p, .content li { font-size: 16px; }
}
