:root {
  --black: #050505;
  --black-2: #101010;
  --white: #ffffff;
  --paper: #f6f6f4;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(5, 5, 5, 0.12);
  --muted: #b8b8b8;
  --text: #1b1b1b;
  --red: #d90000;
  --red-2: #ff1717;
  --max: 1180px;
  --pad: clamp(18px, 4vw, 48px);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

::selection {
  color: var(--white);
  background: var(--red);
}

.shell {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 10vw, 140px);
}

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

.section-heading h2,
.split-copy h2,
.quote-copy h2,
.final-cta h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 4.2vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.quote-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: currentColor;
  opacity: 0.72;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1;
  overflow: hidden;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), color 240ms var(--ease), background 240ms var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-115%) skewX(-18deg);
  background: rgba(255, 255, 255, 0.24);
  transition: transform 520ms var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(115%) skewX(-18deg);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 42px rgba(217, 0, 0, 0.28);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.btn-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
