:root {
  --bg0: #07070a;
  --bg1: #0b0b0d;
  --ink: #f3f0e7;
  --muted: rgba(243, 240, 231, 0.78);
  --muted2: rgba(243, 240, 231, 0.62);
  --line: rgba(243, 240, 231, 0.14);

  --red0: #7a0a0a;
  --red1: #b50c0c;
  --red2: #ff2a2a;
  --shadow: rgba(0, 0, 0, 0.6);

  --radius: 18px;
  --radius2: 12px;

  --max: 1120px;
  --pad: clamp(16px, 4vw, 28px);

  --title: clamp(2.1rem, 4.6vw, 3.6rem);
  --h2: clamp(1.4rem, 2.4vw, 2rem);
  --h3: 1.15rem;
  --lead: clamp(1.05rem, 1.4vw, 1.15rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(900px 480px at 30% -10%, rgba(181, 12, 12, 0.35), transparent 65%),
    radial-gradient(900px 540px at 85% 0%, rgba(255, 42, 42, 0.16), transparent 60%),
    radial-gradient(900px 540px at 80% 85%, rgba(181, 12, 12, 0.2), transparent 65%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 45%, var(--bg0));
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

/* Subtle “grunge” noise overlay (CSS-only). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Faint distressed stripes */
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  opacity: 0.18;
  background: repeating-linear-gradient(
    8deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.02) 2px,
    rgba(0, 0, 0, 0.02) 6px,
    rgba(0, 0, 0, 0.02) 12px
  );
  transform: rotate(-1deg);
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
  text-decoration-color: rgba(255, 42, 42, 0.6);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: rgba(255, 42, 42, 0.9);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.95em;
  color: rgba(243, 240, 231, 0.86);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 10px;
  transform: translateY(-130%);
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 42, 42, 0.2);
  border: 1px solid rgba(255, 42, 42, 0.38);
  text-decoration: none;
  z-index: 50;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid rgba(255, 42, 42, 0.8);
  outline-offset: 2px;
}

.container {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.92), rgba(11, 11, 13, 0.55));
  border-bottom: 1px solid rgba(255, 42, 42, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--red2), var(--red1) 50%, rgba(0, 0, 0, 0.6));
  box-shadow: 0 0 0 1px rgba(255, 42, 42, 0.4), 0 8px 24px rgba(255, 42, 42, 0.12);
}

.brand-name {
  font-family: Oswald, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav a:hover {
  opacity: 1;
  border-color: rgba(255, 42, 42, 0.28);
  background: rgba(255, 42, 42, 0.09);
}

.hero {
  padding: clamp(26px, 6vw, 56px) 0 clamp(22px, 5vw, 46px);
}

.hero-grid {
  display: grid;
  gap: 22px;
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

.hero-media {
  display: block;
}

.hero-photo {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 42, 42, 0.22);
  background: radial-gradient(700px 340px at 30% 0%, rgba(255, 42, 42, 0.18), transparent 60%),
    rgba(0, 0, 0, 0.28);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  position: relative;
  max-width: 520px;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 42, 42, 0.14), transparent 55%),
    radial-gradient(520px 260px at 30% 10%, rgba(255, 42, 42, 0.18), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.02);
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
  color: rgba(255, 42, 42, 0.9);
  font-family: Oswald, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.title {
  margin: 0 0 10px;
  font-size: var(--title);
  line-height: 1.03;
  font-family: Oswald, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 16px 40px var(--shadow);
}

.title-strong {
  color: rgba(255, 42, 42, 0.95);
}

.lead {
  margin: 10px 0 16px;
  font-size: var(--lead);
  color: var(--muted);
  max-width: 62ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 8px;
}

.button {
  appearance: none;
  border: 1px solid rgba(255, 42, 42, 0.36);
  background: linear-gradient(180deg, rgba(255, 42, 42, 0.23), rgba(181, 12, 12, 0.18));
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.button:hover {
  border-color: rgba(255, 42, 42, 0.6);
  background: linear-gradient(180deg, rgba(255, 42, 42, 0.32), rgba(181, 12, 12, 0.2));
}

.button:focus-visible {
  outline: 2px solid rgba(255, 42, 42, 0.85);
  outline-offset: 2px;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(243, 240, 231, 0.22);
  box-shadow: none;
}

.button-ghost:hover {
  border-color: rgba(243, 240, 231, 0.36);
  background: rgba(255, 255, 255, 0.06);
}

.micro {
  margin: 8px 0 0;
  color: var(--muted2);
  font-size: 0.92rem;
}

/* (Hero “at a glance” card removed to match the graphic content exactly.) */

.facts {
  padding: clamp(18px, 5vw, 44px) 0 clamp(18px, 5vw, 52px);
}

.section-title {
  margin: 0 0 14px;
  font-size: var(--h2);
  font-family: Oswald, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.grid-2 {
  display: grid;
  gap: 16px;
}

.panel {
  border-radius: var(--radius);
  border: 1px solid rgba(243, 240, 231, 0.16);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.45);
  padding: 18px;
}

.panel-title {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: Oswald, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.panel-subtitle {
  margin: 0 0 12px;
  color: var(--muted);
}

.bullet-list,
.check-list {
  margin: 0;
  padding-left: 1.1rem;
}

.bullet-list li {
  margin: 10px 0;
  color: rgba(243, 240, 231, 0.92);
}

.bullet-list strong {
  color: rgba(255, 42, 42, 0.92);
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 42, 42, 0.14);
  background: rgba(255, 42, 42, 0.06);
  margin: 10px 0;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 42, 42, 0.5);
  background: linear-gradient(180deg, rgba(255, 42, 42, 0.32), rgba(181, 12, 12, 0.18));
  position: relative;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

.check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 10px;
  border-right: 2px solid rgba(243, 240, 231, 0.95);
  border-bottom: 2px solid rgba(243, 240, 231, 0.95);
  transform: rotate(35deg);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 42, 42, 0.5), transparent);
  margin: clamp(18px, 4vw, 28px) 0;
}

.closing {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 42, 42, 0.22);
  background: radial-gradient(900px 380px at 10% 20%, rgba(255, 42, 42, 0.18), transparent 60%),
    rgba(0, 0, 0, 0.25);
  padding: 18px;
}

.closing-title {
  margin: 0;
  font-family: Oswald, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.05;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.closing-mid {
  color: rgba(255, 42, 42, 0.95);
}

.closing-subtitle {
  margin: 8px 0 0;
  font-weight: 700;
  color: rgba(255, 42, 42, 0.9);
}

.closing-note {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 80ch;
}

.closing-cta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share {
  padding: clamp(18px, 5vw, 44px) 0 clamp(30px, 6vw, 54px);
}

.share-inner {
  display: grid;
  gap: 12px;
}

.share-text {
  margin: 0;
  color: var(--muted);
}

.share-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.share-input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(243, 240, 231, 0.18);
  background: rgba(0, 0, 0, 0.38);
  color: rgba(243, 240, 231, 0.92);
  font-weight: 600;
}

.share-input:focus {
  outline: 2px solid rgba(255, 42, 42, 0.7);
  outline-offset: 2px;
}

.footer {
  border-top: 1px solid rgba(243, 240, 231, 0.12);
  background: rgba(0, 0, 0, 0.25);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  color: var(--muted2);
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.footer-left,
.footer-right,
.footer-disclaimer {
  margin: 0;
}

.footer-disclaimer {
  flex: 1 1 560px;
  min-width: min(560px, 100%);
  line-height: 1.35;
}

.footer-left {
  flex: 0 0 auto;
}

.footer-right {
  flex: 0 0 auto;
}

.footer a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 42, 42, 0.35);
}

.footer a:hover {
  border-bottom-color: rgba(255, 42, 42, 0.7);
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
    align-items: start;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .panel,
  .closing {
    padding: 20px;
  }

  .hero-media {
    display: flex;
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

