:root {
  --v-red: #ed1b2f;
  --black: #330000;
  --paper: #f6f2e8;
  --paper-2: #fffdf6;
  --muted: #d8d1c3;
  --max: 1160px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper);
  background: var(--black);
}

body::selection {
  color: var(--paper);
  background: var(--v-red);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: .75rem 1rem;
  color: var(--black);
  background: var(--paper);
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  background: color-mix(in srgb, var(--black) 88%, transparent);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: var(--paper);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.nav a,
.button,
.text-link {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}

.nav a {
  padding: .72rem .95rem;
  border-radius: 999px;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--paper);
  background: rgba(255,255,255,.08);
}

.nav .nav-cta {
  color: var(--black);
  background: var(--paper);
}

.hero {
  min-height: calc(100svh - 84px);
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-inner {
  width: min(var(--max), 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--paper);
  font-size: clamp(.86rem, 1.6vw, 1rem);
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.slogan {
  display: block;
  width: min(100%, 1180px);
  margin: -1rem auto .5rem;
  overflow: visible;
}

.slogan text {
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  font-size: 152px;
  font-weight: 950;
  letter-spacing: .02em;
  dominant-baseline: middle;
}

.slogan-stroke {
  fill: var(--paper);
  stroke: var(--paper);
  stroke-width: 45px;
  stroke-linejoin: round;
  stroke-linecap: round;
  paint-order: stroke;
}

.slogan-fill {
  fill: var(--v-red);
}

.lead {
  max-width: 820px;
  margin: 0 auto;
  color: var(--paper-2);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.45;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: .95rem 1.25rem;
  border-radius: 999px;
  border: 2px solid var(--paper);
}

.button-primary {
  color: var(--paper);
  background: var(--v-red);
  border-color: var(--v-red);
}

.button-primary:hover,
.button-primary:focus-visible {
  filter: brightness(1.08);
}

.button-secondary {
  color: var(--paper);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--black);
  background: var(--paper);
}

.statement,
.content-section,
.split,
.footer {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

.statement {
  margin-top: 1rem;
  padding: clamp(2rem, 6vw, 4.5rem);
  border-radius: var(--radius);
  color: var(--black);
  background: var(--paper);
}

.statement p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.content-section {
  padding: clamp(4rem, 9vw, 7rem) 0 2rem;
}

.section-heading {
  max-width: 800px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(2.4rem, 7vw, 5.3rem);
  line-height: .96;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.card {
  min-height: 260px;
  padding: 1.6rem;
  border: 1px solid rgba(246, 242, 232, .18);
  border-radius: var(--radius);
  background: rgba(246, 242, 232, .055);
}

.card h2 {
  margin-bottom: .9rem;
  color: var(--paper);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.card p,
.split-copy p,
.footer p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid rgba(246, 242, 232, .18);
}

.split-copy {
  padding-top: .45rem;
}

.text-link {
  display: inline-flex;
  margin-top: .6rem;
  color: var(--paper);
  border-bottom: 3px solid var(--v-red);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--v-red);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(246, 242, 232, .18);
}

.footer p {
  margin: 0;
}

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

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .brand span {
    max-width: 12ch;
    line-height: 1.05;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .slogan text {
    font-size: 126px;
  }

  .slogan-stroke {
    stroke-width: 48px;
  }

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

  .card {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: .9rem 1rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero,
  .statement,
  .content-section,
  .split,
  .footer {
    width: min(100% - 2rem, var(--max));
  }

  .hero {
    padding-inline: 1rem;
  }

  .slogan {
    margin-top: -2rem;
    margin-bottom: -1rem;
  }

  .slogan text {
    font-size: 102px;
  }

  .slogan-stroke {
    stroke-width: 40px;
  }

  .button {
    width: 100%;
  }
}

