:root {
  --ink: #080808;
  --ink-soft: #111111;
  --ink-raised: #181818;
  --paper: #f4f0e8;
  --paper-bright: #fffdf8;
  --muted: #a7a29a;
  --line: rgba(255, 255, 255, 0.15);
  --line-dark: rgba(8, 8, 8, 0.16);
  --orange: #ff4d00;
  --orange-dark: #d83f00;
  --orange-soft: #ff6a2a;
  --success: #8be28b;
  --danger: #ff7d72;
  --shell: 1240px;
  --radius: 2px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  --display: "Arial Narrow", "Roboto Condensed", Impact, Haettenschweiler, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--paper-bright);
  background: var(--orange);
}

:focus-visible {
  outline: 3px solid var(--orange-soft);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper-bright);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.announcement {
  position: relative;
  z-index: 1001;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 20px;
  color: var(--ink);
  background: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.announcement a {
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.announcement__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 0 rgba(8, 8, 8, 0.45);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(8, 8, 8, 0); }
  100% { box-shadow: 0 0 0 0 rgba(8, 8, 8, 0); }
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 38px;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--paper-bright);
  text-decoration: none;
  line-height: 0.84;
}

.brand__main {
  font-family: var(--display);
  font-size: 23px;
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.brand__slash {
  display: inline-block;
  margin-inline: 2px;
  color: var(--orange);
  transform: skew(-16deg);
}

.brand__sub {
  margin-top: 7px;
  color: var(--orange);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.3em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 253, 248, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--paper-bright);
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--paper-bright);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  color: var(--paper-bright);
  background: var(--orange);
  box-shadow: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  border-color: var(--orange-soft);
  background: var(--orange-soft);
  transform: translateY(-2px);
}

.button--small {
  min-height: 38px;
  padding: 9px 15px;
  font-size: 10px;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.button--outline:hover,
.button--ghost:hover {
  border-color: var(--paper-bright);
  color: var(--ink);
  background: var(--paper-bright);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(8, 8, 8, 0.2);
  backdrop-filter: blur(10px);
}

.button--light {
  border-color: var(--paper-bright);
  color: var(--ink);
  background: var(--paper-bright);
}

.button--light:hover {
  border-color: var(--ink);
  color: var(--paper-bright);
  background: var(--ink);
}

.button--dark {
  border-color: var(--ink);
  color: var(--paper-bright);
  background: var(--ink);
}

.button--dark:hover {
  border-color: var(--paper-bright);
  color: var(--ink);
  background: var(--paper-bright);
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__media img,
.hero__scrim,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero__scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.98) 0%, rgba(6, 6, 6, 0.83) 42%, rgba(6, 6, 6, 0.23) 72%, rgba(6, 6, 6, 0.5) 100%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.35) 0%, rgba(6, 6, 6, 0.05) 50%, rgba(6, 6, 6, 0.9) 100%);
}

.hero__grid {
  z-index: 2;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 840px;
  align-items: center;
  gap: 76px;
  grid-template-columns: minmax(0, 1fr) 380px;
  padding-top: 148px;
  padding-bottom: 70px;
}

.hero__content {
  max-width: 810px;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span + span::before {
  margin-right: 18px;
  color: rgba(255, 255, 255, 0.38);
  content: "/";
}

.eyebrow--dark {
  color: var(--orange-dark);
}

.hero h1,
.section-heading h2,
.planner__intro h2,
.partner-copy h2,
.standards__statement h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(70px, 8vw, 124px);
}

.hero h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.hero__lede {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.8);
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__proof {
  display: grid;
  max-width: 760px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero__proof > div {
  min-height: 92px;
  padding: 18px 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.34);
  backdrop-filter: blur(6px);
}

.hero__proof strong,
.hero__proof span {
  display: block;
}

.hero__proof strong {
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__proof span {
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.fight-card {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(8, 8, 8, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.fight-card__topline {
  margin-bottom: 18px;
  color: rgba(255, 253, 248, 0.54);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.fight-card img {
  width: 100%;
  height: auto;
}

.fight-card__details {
  display: grid;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.fight-card__details > div {
  padding: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fight-card dt {
  color: rgba(255, 253, 248, 0.48);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fight-card dd {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 850;
}

.countdown {
  display: flex;
  align-items: baseline;
  gap: 11px;
  padding: 20px 0 4px;
}

.countdown__value {
  color: var(--orange);
  font-family: var(--display);
  font-size: 58px;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.8;
}

.countdown__label {
  color: rgba(255, 253, 248, 0.68);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fine-print {
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.43);
  font-size: 9px;
  line-height: 1.55;
}

.signal-strip {
  overflow: hidden;
  border-top: 1px solid rgba(8, 8, 8, 0.5);
  border-bottom: 1px solid rgba(8, 8, 8, 0.5);
  color: var(--ink);
  background: var(--orange);
}

.signal-strip__track {
  display: flex;
  width: max-content;
  min-height: 62px;
  align-items: center;
  gap: 28px;
  padding-inline: 28px;
  animation: marquee 26s linear infinite;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.signal-strip__track i {
  width: 7px;
  height: 7px;
  background: var(--ink);
  transform: rotate(45deg);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding: 118px 0;
}

.section--light {
  color: var(--ink);
  background: var(--paper);
}

.section--dark {
  color: var(--paper);
  background: var(--ink-soft);
}

.section--orange {
  color: var(--ink);
  background: var(--orange);
}

.section--proof {
  overflow: hidden;
  background: var(--ink);
}

.section--faq {
  color: var(--ink);
  background: var(--paper-bright);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

.section-heading h2,
.planner__intro h2,
.partner-copy h2,
.standards__statement h2 {
  font-size: clamp(46px, 6vw, 84px);
}

.section-heading > p:last-child,
.section-heading--split > p,
.planner__intro > p:last-child,
.partner-copy > p,
.standards__statement > p:last-child {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(8, 8, 8, 0.65);
  font-size: 17px;
}

.section-heading--split {
  display: grid;
  max-width: none;
  align-items: end;
  gap: 54px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
}

.section-heading--split > p {
  margin: 0 0 5px;
}

.section-heading--on-dark > p,
.section-heading--on-dark.section-heading--split > p,
.section--dark .section-heading--split > p {
  color: rgba(255, 253, 248, 0.6);
}

.value-grid {
  display: grid;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.value-card {
  position: relative;
  min-height: 410px;
  padding: 36px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.26);
}

.value-card__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.value-card h3,
.funnel-feature h3,
.addons h3,
.timeline h3,
.standards__grid h3,
.planner__result h3 {
  margin: 42px 0 0;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.value-card > p {
  margin: 20px 0 0;
  color: rgba(8, 8, 8, 0.65);
}

.check-list,
.package ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.package li {
  position: relative;
  margin-top: 11px;
  padding-left: 20px;
  color: rgba(8, 8, 8, 0.69);
  font-size: 13px;
}

.check-list li::before,
.package li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.audience-bar {
  display: grid;
  margin-top: 32px;
  border: 1px solid var(--line-dark);
  grid-template-columns: repeat(4, 1fr) 1.7fr;
}

.audience-bar > div,
.audience-bar > p {
  min-height: 120px;
  margin: 0;
  padding: 23px;
  border-right: 1px solid var(--line-dark);
}

.audience-bar > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audience-bar strong {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.audience-bar span {
  margin-top: 9px;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.audience-bar > p {
  display: flex;
  align-items: center;
  border-right: 0;
  color: rgba(8, 8, 8, 0.56);
  font-size: 11px;
}

.packages-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.package {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: 30px;
  background: var(--ink-raised);
}

.package--featured {
  min-height: 700px;
  border-top: 4px solid var(--orange);
  grid-column: span 2;
}

.package__flag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--orange);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package__tier {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.package__price {
  margin-top: 30px;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.package__price span {
  margin-right: 3px;
  color: var(--orange);
  font-size: 0.45em;
  vertical-align: top;
}

.package__summary,
.package__availability {
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.52);
  font-size: 12px;
}

.package__promise {
  margin: 18px 0 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.package__terms {
  margin: -10px 0 24px;
  color: rgba(255, 253, 248, 0.42);
  font-size: 9px;
  line-height: 1.55;
}

.package--lifetime {
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 76, 0, 0.16), transparent 30%),
    var(--ink-raised);
}

.package ul {
  margin-bottom: 28px;
}

.package li {
  color: rgba(255, 253, 248, 0.68);
}

.package .button,
.package .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--orange);
  color: var(--paper-bright);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link::after {
  margin-left: 10px;
  content: "+";
}

.text-link:hover {
  color: var(--orange);
}

.text-link--dark {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.funnel-feature {
  display: grid;
  align-items: center;
  gap: 32px;
  margin-top: 28px;
  padding: 36px;
  color: var(--ink);
  background: var(--orange);
  grid-template-columns: 125px minmax(0, 1fr) auto auto;
}

.funnel-feature__label {
  padding-right: 24px;
  border-right: 1px solid rgba(8, 8, 8, 0.35);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.funnel-feature .eyebrow {
  margin-bottom: 12px;
  color: var(--ink);
}

.funnel-feature h3 {
  margin: 0;
  font-size: 38px;
}

.funnel-feature p:last-child {
  max-width: 650px;
  margin: 10px 0 0;
  font-size: 13px;
}

.funnel-feature__price {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.addons {
  display: grid;
  gap: 36px;
  margin-top: 30px;
  padding: 36px;
  border: 1px solid var(--line);
  grid-template-columns: 260px 1fr;
}

.addons__intro h3 {
  margin: 0;
  font-size: 38px;
}

.addons__grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.addons__grid > div {
  min-height: 110px;
  padding: 18px;
  background: var(--ink-raised);
}

.addons__grid strong,
.addons__grid span {
  display: block;
}

.addons__grid strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.addons__grid span {
  margin-top: 9px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 10px;
  line-height: 1.45;
}

.planner {
  display: grid;
  align-items: start;
  gap: 52px;
  grid-template-columns: 0.95fr 1.05fr;
}

.planner__intro {
  position: sticky;
  top: 130px;
}

.planner__form,
.planner__result {
  grid-column: 2;
}

.planner__form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(8, 8, 8, 0.35);
  background: rgba(255, 255, 255, 0.14);
}

.planner__form label,
.inquiry-form label {
  display: grid;
  gap: 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid rgba(8, 8, 8, 0.28);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper-bright);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

input,
select {
  min-height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.planner__result {
  padding: 32px;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
}

.planner__result-label {
  margin: 0;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.planner__result h3 {
  margin-top: 18px;
  font-size: 42px;
}

.planner__result > p:not(.planner__result-label) {
  max-width: 620px;
  color: rgba(8, 8, 8, 0.66);
}

.timeline {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.timeline__item {
  display: grid;
  gap: 36px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 190px minmax(0, 1fr);
}

.timeline__date {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0;
  font-size: 29px;
}

.timeline p {
  max-width: 760px;
  margin: 9px 0 0;
  color: rgba(8, 8, 8, 0.62);
}

.gallery {
  display: grid;
  width: min(1600px, 100%);
  margin: 0 auto;
  gap: 2px;
  grid-auto-rows: minmax(280px, 38vw);
  grid-template-columns: repeat(4, 1fr);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--ink-raised);
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 700ms cubic-bezier(.2,.75,.2,1), filter 500ms ease;
}

.gallery__item:nth-child(3) img,
.gallery__item:nth-child(5) img {
  object-position: center 18%;
}

.gallery__item:hover img {
  filter: saturate(1.1) contrast(1.08);
  transform: scale(1.035);
}

.gallery__item::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  content: "";
  pointer-events: none;
}

.gallery__item figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: var(--paper-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.standards {
  display: grid;
  align-items: start;
  gap: 68px;
  grid-template-columns: 0.85fr 1.15fr;
}

.standards__statement {
  position: sticky;
  top: 130px;
}

.standards__grid {
  display: grid;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  grid-template-columns: 1fr 1fr;
}

.standards__grid article {
  min-height: 255px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.standards__grid article > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--paper-bright);
  background: var(--orange-dark);
  font-size: 9px;
  font-weight: 900;
}

.standards__grid h3 {
  margin-top: 28px;
  font-size: 28px;
}

.standards__grid p {
  color: rgba(8, 8, 8, 0.6);
  font-size: 13px;
}

.partner-section {
  position: relative;
  overflow: hidden;
}

.partner-section::before {
  position: absolute;
  top: -280px;
  right: -260px;
  width: 720px;
  height: 720px;
  border: 130px solid rgba(255, 77, 0, 0.12);
  border-radius: 50%;
  content: "";
}

.partner-grid {
  position: relative;
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: 0.85fr 1.15fr;
}

.partner-copy {
  position: sticky;
  top: 130px;
}

.partner-copy > p {
  color: rgba(255, 253, 248, 0.62);
}

.partner-downloads {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.partner-downloads a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 253, 248, 0.78);
  font-size: 12px;
  text-decoration: none;
  transition: color 160ms ease, padding-left 160ms ease;
}

.partner-downloads a:hover {
  padding-left: 8px;
  color: var(--orange);
}

.partner-downloads strong {
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-copy__note {
  font-size: 10px !important;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.inquiry-form label {
  color: rgba(255, 253, 248, 0.74);
}

.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: rgba(255, 253, 248, 0.56) !important;
  font-size: 10px !important;
  font-weight: 550 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.consent input {
  width: 17px;
  min-height: 17px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.form-note {
  margin: 0;
  color: rgba(255, 253, 248, 0.42);
  font-size: 9px;
  line-height: 1.55;
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: 0.75fr 1.25fr;
}

.faq-grid .section-heading {
  position: sticky;
  top: 130px;
  margin: 0;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -0.025em;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 0;
  width: 32px;
  height: 32px;
  color: var(--paper-bright);
  background: var(--ink);
  content: "+";
  font-family: var(--body);
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary::after {
  background: var(--orange-dark);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -5px 50px 25px 0;
  color: rgba(8, 8, 8, 0.62);
}

.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--paper);
  background: #050505;
}

.site-footer__top {
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 1fr;
}

.brand--footer .brand__main {
  font-size: 35px;
}

.site-footer__top > div > p {
  max-width: 380px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.46);
  font-size: 12px;
}

.site-footer__links {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.site-footer__links a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 253, 248, 0.62);
  font-size: 11px;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--orange);
}

.site-footer__legal {
  display: grid;
  gap: 30px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr auto;
}

.site-footer__legal p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 253, 248, 0.34);
  font-size: 9px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.2,1);
}

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

.thank-you {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px;
  background:
    linear-gradient(90deg, rgba(8,8,8,.92), rgba(8,8,8,.72)),
    url("assets/hero-desktop.webp") center/cover;
}

.thank-you__card {
  width: min(680px, 100%);
  padding: 54px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(16px);
}

.thank-you__card h1 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(50px, 8vw, 90px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.thank-you__card p {
  max-width: 520px;
  margin: 24px auto 0;
  color: rgba(255, 253, 248, 0.62);
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 1120px) {
  .hero__inner {
    gap: 36px;
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package--featured {
    grid-column: span 2;
  }

  .funnel-feature {
    grid-template-columns: 100px 1fr auto;
  }

  .funnel-feature .button {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .addons {
    grid-template-columns: 1fr;
  }

  .addons__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - 114px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 30px 24px 60px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 8, 8, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 29px;
    letter-spacing: -0.02em;
  }

  .site-nav .button {
    margin-top: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .hero__inner {
    display: block;
    padding-top: 180px;
  }

  .fight-card {
    max-width: 440px;
    margin-top: 54px;
  }

  .value-grid,
  .audience-bar,
  .section-heading--split,
  .planner,
  .standards,
  .partner-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 0;
  }

  .audience-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .audience-bar > p {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-dark);
  }

  .planner__intro,
  .standards__statement,
  .partner-copy,
  .faq-grid .section-heading {
    position: static;
  }

  .planner__form,
  .planner__result {
    grid-column: 1;
  }

  .gallery {
    grid-auto-rows: 56vw;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 30px, var(--shell));
  }

  .announcement {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 9px;
  }

  .site-header {
    top: 44px;
    border-bottom-color: var(--line);
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(18px);
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-nav {
    height: calc(100dvh - 112px);
  }

  .hero {
    min-height: auto;
    --mobile-hero-visual-height: clamp(560px, 146vw, 700px);
  }

  .hero__media,
  .hero__scrim,
  .hero__grid {
    inset: 0 0 auto;
    height: var(--mobile-hero-visual-height);
  }

  .hero__media {
    overflow: hidden;
  }

  .hero__media img {
    object-position: center 18%;
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(6, 6, 6, 0.08) 0%, rgba(6, 6, 6, 0.16) 30%, rgba(6, 6, 6, 0.76) 72%, rgba(6, 6, 6, 1) 100%);
  }

  .hero__grid {
    background-size: 48px 48px;
  }

  .hero__inner {
    min-height: auto;
    padding-top: clamp(320px, 84vw, 460px);
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(56px, 19vw, 82px);
  }

  .hero__lede {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__proof {
    grid-template-columns: 1fr 1fr;
  }

  .fight-card {
    max-width: none;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .planner__intro h2,
  .partner-copy h2,
  .standards__statement h2 {
    font-size: clamp(45px, 14vw, 66px);
  }

  .section-heading--split {
    gap: 18px;
  }

  .value-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package--featured {
    grid-column: auto;
  }

  .package {
    min-height: 0;
  }

  .audience-bar {
    grid-template-columns: 1fr 1fr;
  }

  .audience-bar > div:nth-child(2),
  .audience-bar > div:nth-child(4) {
    border-right: 0;
  }

  .audience-bar > p {
    min-height: 90px;
  }

  .funnel-feature {
    display: block;
    padding: 26px;
  }

  .funnel-feature__label {
    margin-bottom: 28px;
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 8, 8, 0.32);
  }

  .funnel-feature__price {
    margin: 24px 0;
  }

  .addons {
    padding: 24px;
  }

  .addons__grid {
    grid-template-columns: 1fr 1fr;
  }

  .planner__form,
  .planner__result,
  .inquiry-form {
    padding: 24px;
  }

  .timeline__item {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .timeline__date {
    font-size: 22px;
  }

  .gallery {
    grid-auto-rows: 120vw;
    grid-template-columns: 1fr;
  }

  .gallery__item--wide {
    grid-column: auto;
  }

  .standards__grid {
    grid-template-columns: 1fr;
  }

  .standards__grid article {
    min-height: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    font-size: 21px;
  }

  .site-footer__top,
  .site-footer__legal {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .thank-you {
    padding: 20px;
  }

  .thank-you__card {
    padding: 36px 24px;
  }
}

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

  .addons__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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


/* Legal / privacy page */
.legal-page {
  min-height: 100vh;
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 77, 0, 0.18), transparent 28%),
    var(--ink);
}

.legal-header {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.94);
}

.legal-header__inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-main {
  padding: 84px 0 110px;
}

.legal-document {
  max-width: 920px;
}

.legal-document > h1 {
  max-width: 860px;
  margin: 26px 0 0;
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 108px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-transform: uppercase;
}

.legal-document__intro {
  max-width: 760px;
  margin: 34px 0 58px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 18px;
}

.legal-document section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-document section h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.legal-document section p {
  max-width: 790px;
  margin: 0 0 14px;
  color: rgba(255, 253, 248, 0.65);
}

.legal-document section p:last-child {
  margin-bottom: 0;
}

.legal-document section a,
.consent a {
  color: var(--orange-soft);
  text-underline-offset: 3px;
}

.legal-callout {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 28px;
  border-left: 6px solid var(--orange);
  color: var(--ink);
  background: var(--paper-bright);
  grid-template-columns: 160px 1fr;
}

.legal-callout strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.legal-callout p {
  margin: 0;
  color: rgba(8, 8, 8, 0.72);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.legal-footer__row {
  margin-top: 0;
}

@media (max-width: 720px) {
  .legal-header__inner {
    min-height: 78px;
  }

  .legal-header .brand__main {
    font-size: 24px;
  }

  .legal-header .brand__sub {
    font-size: 7px;
  }

  .legal-main {
    padding: 58px 0 82px;
  }

  .legal-document > h1 {
    font-size: clamp(52px, 17vw, 76px);
  }

  .legal-document__intro {
    font-size: 16px;
  }

  .legal-callout {
    grid-template-columns: 1fr;
  }
}


/* Fight highlight */
.section--highlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 77, 0, 0.24), transparent 30%),
    radial-gradient(circle at 95% 86%, rgba(255, 77, 0, 0.12), transparent 28%),
    linear-gradient(135deg, #070707 0%, #101010 58%, #180a04 100%);
  isolation: isolate;
}

.section--highlight::before {
  position: absolute;
  z-index: -1;
  top: -280px;
  left: -260px;
  width: 760px;
  height: 760px;
  border: 130px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
}

.section--highlight::after {
  position: absolute;
  z-index: -1;
  right: 5%;
  bottom: -1px;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 0, 0.72), transparent);
  content: "";
}

.highlight-grid {
  display: grid;
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
}

.highlight-copy {
  max-width: 720px;
}

.highlight-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 950;
  letter-spacing: -0.058em;
  line-height: 0.88;
  text-transform: uppercase;
}

.highlight-copy h2 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.highlight-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 253, 248, 0.65);
  font-size: 17px;
}

.highlight-points {
  display: grid;
  margin: 38px 0 32px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-points > div {
  min-height: 96px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.highlight-points strong,
.highlight-points span {
  display: block;
}

.highlight-points strong {
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.highlight-points span {
  margin-top: 9px;
  color: rgba(255, 253, 248, 0.46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.highlight-stage {
  position: relative;
  width: min(100%, 455px);
  justify-self: end;
}

.highlight-stage::before {
  position: absolute;
  z-index: -1;
  inset: 20px -20px -20px 20px;
  border: 1px solid rgba(255, 77, 0, 0.6);
  content: "";
}

.highlight-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #000;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.48);
}

.highlight-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.highlight-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: cover;
}

.highlight-play {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  border: 0;
  color: var(--paper-bright);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.15) 43%, rgba(0, 0, 0, 0.78) 100%);
  cursor: pointer;
  text-align: left;
  transition: opacity 180ms ease, background 180ms ease;
}

.highlight-play:hover {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.1) 43%, rgba(0, 0, 0, 0.68) 100%);
}

.highlight-play__icon {
  display: block;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.4));
  transition: transform 180ms ease;
}

.highlight-play:hover .highlight-play__icon {
  transform: scale(1.07);
}

.highlight-play__icon svg {
  width: 100%;
  height: 100%;
}

.highlight-play__icon circle {
  fill: var(--orange);
  stroke: var(--paper-bright);
  stroke-width: 1.5;
}

.highlight-play__icon path {
  fill: var(--paper-bright);
}

.highlight-play__copy {
  align-self: center;
  padding-top: 3px;
}

.highlight-play__copy strong,
.highlight-play__copy small {
  display: block;
}

.highlight-play__copy strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.highlight-play__copy small {
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.highlight-frame.is-playing .highlight-play {
  opacity: 0;
  pointer-events: none;
}

.highlight-frame__label {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  padding: 9px 11px;
  color: var(--ink);
  background: var(--orange);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.highlight-caption {
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.36);
  font-size: 9px;
  line-height: 1.6;
}

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

  .highlight-stage {
    width: min(100%, 430px);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .highlight-copy h2 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .highlight-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .highlight-points {
    grid-template-columns: 1fr;
  }

  .highlight-points > div {
    min-height: 0;
  }

  .highlight-stage {
    width: min(100% - 18px, 410px);
  }

  .highlight-stage::before {
    inset: 14px -14px -14px 14px;
  }

  .highlight-play {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .highlight-play__icon {
    width: 68px;
    height: 68px;
  }
}

/* Athlete-first page revision */
.hero {
  min-height: 920px;
}

.hero__inner {
  min-height: 920px;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(58px, 6.4vw, 98px);
}

.hero__content {
  max-width: 860px;
}

.hero__lede {
  max-width: 760px;
}

.section--story {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 77, 0, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 77, 0, 0.045) 1px, transparent 1px),
    var(--paper-bright);
  background-size: 72px 72px;
}

.section--story::before {
  position: absolute;
  top: -280px;
  right: -260px;
  width: 680px;
  height: 680px;
  border: 115px solid rgba(255, 77, 0, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.story-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(54px, 7vw, 104px);
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
}

.story-visual {
  position: relative;
  min-height: 820px;
}

.story-visual__primary {
  position: absolute;
  inset: 0 82px 0 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #fff;
  box-shadow: 0 36px 90px rgba(8, 8, 8, 0.15);
}

.story-visual__primary::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 -140px 150px rgba(8, 8, 8, 0.08);
  content: "";
  pointer-events: none;
}

.story-visual__primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.story-visual__action {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: 48%;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 10px solid var(--paper-bright);
  background: var(--ink);
  box-shadow: 0 28px 60px rgba(8, 8, 8, 0.28);
}

.story-visual__action img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.story-visual__stamp {
  position: absolute;
  top: 38px;
  left: -22px;
  display: flex;
  width: 152px;
  min-height: 152px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 18px 42px rgba(8, 8, 8, 0.18);
  text-align: center;
  transform: rotate(-3deg);
}

.story-visual__stamp strong {
  font-family: var(--display);
  font-size: 70px;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.75;
}

.story-visual__stamp span {
  margin-top: 12px;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.story-copy {
  position: relative;
  max-width: 720px;
}

.story-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.story-copy__body {
  margin-top: 32px;
}

.story-copy__body p {
  margin: 18px 0 0;
  color: rgba(8, 8, 8, 0.68);
  font-size: 16px;
  line-height: 1.7;
}

.story-copy__body p:first-child {
  margin-top: 0;
  color: rgba(8, 8, 8, 0.84);
  font-size: 19px;
  font-weight: 650;
}

.journey-milestones {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.journey-milestones > div {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(244, 240, 232, 0.72);
}

.journey-milestones span,
.journey-milestones strong,
.journey-milestones p {
  display: block;
}

.journey-milestones span {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.journey-milestones strong {
  margin-top: 16px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.journey-milestones p {
  margin: 10px 0 0;
  color: rgba(8, 8, 8, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

.section--lifetime {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  padding: 0;
  background: #050505;
  isolation: isolate;
}

.lifetime-media,
.lifetime-scrim {
  position: absolute;
  inset: 0;
}

.lifetime-media {
  z-index: -3;
  width: 58%;
}

.lifetime-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.92) contrast(1.04);
}

.lifetime-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.16) 30%, rgba(5, 5, 5, 0.82) 56%, #050505 72%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.38) 70%, #050505 100%);
}

.section--lifetime::after {
  position: absolute;
  z-index: -1;
  right: -260px;
  bottom: -360px;
  width: 780px;
  height: 780px;
  border: 130px solid rgba(255, 77, 0, 0.07);
  border-radius: 50%;
  content: "";
}

.lifetime-grid {
  display: grid;
  min-height: 940px;
  align-items: center;
  gap: 50px;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  padding-top: 84px;
  padding-bottom: 84px;
}

.lifetime-offer {
  position: relative;
  padding: clamp(34px, 4.6vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid var(--orange);
  background: rgba(11, 11, 11, 0.88);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
}

.lifetime-offer__flag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--orange);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lifetime-offer h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.6vw, 102px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.86;
  text-transform: uppercase;
}

.lifetime-offer h2 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.lifetime-offer__price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 34px;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 86px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.lifetime-offer__price > span {
  align-self: flex-start;
  margin-top: 4px;
  color: var(--orange);
  font-size: 0.48em;
}

.lifetime-offer__price small {
  padding-bottom: 7px;
  color: rgba(255, 253, 248, 0.54);
  font-family: var(--body);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lifetime-offer__promise {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.79);
  font-size: 17px;
  line-height: 1.65;
}

.lifetime-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lifetime-list li {
  position: relative;
  min-height: 94px;
  padding: 22px 22px 22px 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(255, 253, 248, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.lifetime-list li:nth-child(even) {
  border-right: 0;
}

.lifetime-list li::before {
  position: absolute;
  top: 29px;
  left: 22px;
  width: 9px;
  height: 3px;
  background: var(--orange);
  content: "";
}

.lifetime-offer__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.lifetime-offer__terms {
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.37);
  font-size: 9px;
  line-height: 1.6;
}

.value-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid--four .value-card {
  min-height: 470px;
  padding: 30px;
}

.value-grid--four .value-card h3 {
  font-size: 30px;
}

.packages-grid--standard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.packages-grid--standard .package {
  min-height: 560px;
}

.custom-partnership {
  display: grid;
  align-items: center;
  gap: 42px;
  margin-top: 28px;
  padding: 38px;
  color: var(--ink);
  background: var(--orange);
  grid-template-columns: minmax(0, 1fr) auto;
}

.custom-partnership .eyebrow {
  margin-bottom: 12px;
  color: var(--ink);
}

.custom-partnership h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: uppercase;
}

.custom-partnership p:last-child {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: 13px;
}

.timeline--athlete .timeline__date {
  font-size: clamp(22px, 2.6vw, 34px);
}

.section--orange .section-heading > p:last-child,
.section--orange .section-heading--split > p {
  color: rgba(8, 8, 8, 0.82);
}

.timeline--athlete {
  border-top-color: rgba(8, 8, 8, 0.26);
}

.timeline--athlete .timeline__item {
  border-bottom-color: rgba(8, 8, 8, 0.26);
}

.timeline--athlete .timeline__date {
  color: rgba(8, 8, 8, 0.88);
}

.timeline--athlete h3 {
  color: rgba(8, 8, 8, 0.98);
}

.timeline--athlete p {
  color: rgba(8, 8, 8, 0.8);
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: clamp(58px, 7.2vw, 84px);
  }

  .story-grid {
    gap: 56px;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  }

  .story-visual {
    min-height: 720px;
  }

  .value-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid--four .value-card {
    min-height: 380px;
  }
}

@media (max-width: 980px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav > a:not(.button) {
    font-size: 10px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    width: min(100%, 640px);
    min-height: 760px;
    justify-self: center;
  }

  .story-copy {
    max-width: none;
  }

  .lifetime-grid {
    grid-template-columns: minmax(0, 0.55fr) minmax(480px, 1.45fr);
  }
}

@media (max-width: 900px) {
  .hero,
  .hero__inner {
    min-height: 900px;
  }

  .section--lifetime {
    min-height: 0;
    padding: clamp(420px, 82vw, 680px) 0 86px;
  }

  .lifetime-media {
    width: 100%;
    height: clamp(500px, 98vw, 760px);
  }

  .lifetime-media img {
    object-position: center 20%;
  }

  .lifetime-scrim {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.18) 35%, rgba(5, 5, 5, 0.88) 70%, #050505 100%);
  }

  .lifetime-grid {
    display: block;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .lifetime-spacer {
    display: none;
  }

  .lifetime-offer {
    width: 100%;
    background: rgba(11, 11, 11, 0.94);
  }

  .custom-partnership {
    grid-template-columns: 1fr;
  }

  .custom-partnership .button {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(49px, 14.3vw, 68px);
  }

  .hero__content .eyebrow {
    gap: 6px 11px;
  }

  .hero__content .eyebrow span + span::before {
    margin-right: 11px;
  }

  .section--story {
    background-size: 48px 48px;
  }

  .story-grid {
    gap: 48px;
  }

  .story-visual {
    min-height: 610px;
  }

  .story-visual__primary {
    inset: 0 36px 0 0;
  }

  .story-visual__action {
    right: -2px;
    bottom: 38px;
    width: 48%;
    border-width: 7px;
  }

  .story-visual__stamp {
    top: 24px;
    left: -8px;
    width: 112px;
    min-height: 112px;
    padding: 12px;
  }

  .story-visual__stamp strong {
    font-size: 52px;
  }

  .story-visual__stamp span {
    font-size: 7px;
  }

  .story-copy h2 {
    font-size: clamp(46px, 14.2vw, 66px);
  }

  .story-copy__body p {
    font-size: 15px;
  }

  .story-copy__body p:first-child {
    font-size: 17px;
  }

  .journey-milestones {
    grid-template-columns: 1fr;
  }

  .journey-milestones > div {
    min-height: 0;
  }

  .section--lifetime {
    padding-top: clamp(380px, 112vw, 560px);
  }

  .lifetime-media {
    height: clamp(460px, 132vw, 650px);
  }

  .lifetime-media img {
    object-position: center 16%;
  }

  .lifetime-offer {
    padding: 32px 24px;
  }

  .lifetime-offer__flag {
    position: static;
    width: fit-content;
    margin: -32px 0 28px -24px;
  }

  .lifetime-offer h2 {
    font-size: clamp(52px, 15.4vw, 74px);
  }

  .lifetime-offer__price {
    flex-wrap: wrap;
    font-size: clamp(56px, 17vw, 78px);
  }

  .lifetime-offer__price small {
    width: 100%;
    padding: 0;
  }

  .lifetime-offer__promise {
    font-size: 16px;
  }

  .lifetime-list {
    grid-template-columns: 1fr;
  }

  .lifetime-list li,
  .lifetime-list li:nth-child(even) {
    min-height: 0;
    border-right: 0;
  }

  .lifetime-offer__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lifetime-offer__actions .button,
  .lifetime-offer__actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .value-grid--four,
  .packages-grid--standard {
    grid-template-columns: 1fr;
  }

  .value-grid--four .value-card,
  .packages-grid--standard .package {
    min-height: 0;
  }

  .custom-partnership {
    padding: 28px 24px;
  }

  .custom-partnership .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .story-visual {
    min-height: 540px;
  }

  .story-visual__stamp {
    width: 98px;
    min-height: 98px;
  }

  .story-visual__stamp strong {
    font-size: 46px;
  }

  .section--lifetime {
    padding-top: 355px;
  }
}

section[id] {
  scroll-margin-top: 124px;
}

/* Keep the fixed navigation flush to the viewport after the announcement scrolls away. */
.site-header {
  transition: top 200ms ease, background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled {
  top: 0;
}

section[id] {
  scroll-margin-top: 92px;
}

@media (max-width: 900px) {
  .site-header.is-scrolled .site-nav {
    height: calc(100dvh - 76px);
  }
}

@media (max-width: 720px) {
  section[id] {
    scroll-margin-top: 82px;
  }

  .site-header.is-scrolled .site-nav {
    height: calc(100dvh - 68px);
  }
}


/* v7 fight-kit placement feature */
.fight-kit-feature {
  display: grid;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  margin: 20px 0 56px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 77, 0, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.fight-kit-feature__copy h3 {
  max-width: 520px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.8vw, 70px);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.92;
  text-transform: uppercase;
}

.fight-kit-feature__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 16px;
  line-height: 1.7;
}

.fight-kit-feature .check-list {
  margin-top: 26px;
}

.fight-kit-feature .check-list li {
  color: rgba(255, 253, 248, 0.88);
}

.fight-kit-feature__media {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--paper-bright);
  background: #060606;
  text-decoration: none;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
}

.fight-kit-feature__media img {
  width: 100%;
  height: auto;
  transition: transform 420ms ease, filter 420ms ease;
}

.fight-kit-feature__media:hover img {
  filter: brightness(1.06);
  transform: scale(1.018);
}

.fight-kit-feature__media span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--orange);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .fight-kit-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .fight-kit-feature {
    margin-top: 10px;
    padding: 18px;
  }

  .fight-kit-feature__media span {
    right: 12px;
    bottom: 12px;
    font-size: 9px;
  }
}

/* v9 campaign runway */
#campaign {
  position: relative;
  overflow: hidden;
  color: var(--paper-bright);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 77, 0, 0.2), transparent 32%),
    linear-gradient(180deg, #0d0d0d 0%, #171310 100%);
}

#campaign .section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(44px, 6vw, 76px);
}

#campaign .eyebrow--dark {
  color: var(--orange-soft);
}

#campaign .section-heading h2 {
  max-width: 790px;
  color: var(--paper-bright);
  font-size: clamp(48px, 5.5vw, 76px);
}

#campaign .section-heading--split > p {
  max-width: 460px;
  padding-left: 26px;
  border-left: 2px solid var(--orange);
  color: rgba(255, 253, 248, 0.74);
  line-height: 1.7;
}

#campaign .timeline--athlete {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  counter-reset: campaign-stage;
  gap: 1px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

#campaign .timeline--athlete .timeline__item {
  display: flex;
  min-height: 330px;
  padding: clamp(24px, 2.3vw, 34px);
  flex-direction: column;
  gap: 0;
  border: 0;
  background: #121212;
  counter-increment: campaign-stage;
  grid-template-columns: none;
}

#campaign .timeline--athlete .timeline__item:nth-child(2) {
  background: #181615;
}

#campaign .timeline--athlete .timeline__item:nth-child(3) {
  background: #1c1713;
}

#campaign .timeline--athlete .timeline__item::before {
  color: var(--orange);
  content: "0" counter(campaign-stage);
  font-family: var(--display);
  font-size: clamp(50px, 4.8vw, 72px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

#campaign .timeline--athlete .timeline__date {
  margin-top: clamp(30px, 3vw, 44px);
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(18px, 1.55vw, 24px);
  letter-spacing: -0.025em;
}

#campaign .timeline--athlete .timeline__item > div:last-child {
  margin-top: 17px;
}

#campaign .timeline--athlete h3 {
  color: var(--paper-bright);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 0.96;
}

#campaign .timeline--athlete p {
  margin-top: 14px;
  color: rgba(255, 253, 248, 0.66);
  font-size: 14px;
  line-height: 1.58;
}

#campaign .timeline--athlete .timeline__item:nth-child(4) {
  color: var(--ink);
  background: var(--orange);
}

#campaign .timeline--athlete .timeline__item:nth-child(4)::before,
#campaign .timeline--athlete .timeline__item:nth-child(4) .timeline__date,
#campaign .timeline--athlete .timeline__item:nth-child(4) h3 {
  color: var(--ink);
}

#campaign .timeline--athlete .timeline__item:nth-child(4) p {
  color: rgba(8, 8, 8, 0.76);
}

#campaign .timeline--athlete .timeline__item:nth-child(5) {
  color: var(--ink);
  background: var(--paper-bright);
}

#campaign .timeline--athlete .timeline__item:nth-child(5) .timeline__date,
#campaign .timeline--athlete .timeline__item:nth-child(5) h3 {
  color: var(--ink);
}

#campaign .timeline--athlete .timeline__item:nth-child(5) p {
  color: rgba(8, 8, 8, 0.68);
}

@media (max-width: 1180px) {
  #campaign .timeline--athlete {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #campaign .timeline--athlete .timeline__item {
    min-height: 300px;
  }

  #campaign .timeline--athlete .timeline__item:nth-child(5) {
    min-height: 260px;
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  #campaign .section-heading--split > p {
    padding-top: 22px;
    padding-left: 0;
    border-top: 2px solid var(--orange);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  #campaign .timeline--athlete {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  #campaign .timeline--athlete .timeline__item,
  #campaign .timeline--athlete .timeline__item:nth-child(5) {
    min-height: 260px;
    padding: 25px;
    grid-column: auto;
  }

  #campaign .timeline--athlete .timeline__item::before {
    font-size: 52px;
  }
}

/* ==========================================================================
   Sponsorship restructure — premium / community split + assurance block
   Added 2026-08-07. Uses the existing hairline packages-grid system:
   the 1px gap is the --line background showing through, so do NOT set gap here.
   ========================================================================== */

.packages-grid--premium,
.packages-grid--community {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.packages-grid--premium .package {
  min-height: 600px;
}

.packages-grid--community .package {
  min-height: 520px;
}

.package--premium {
  border-top: 4px solid var(--orange);
}

.package-premium__line {
  margin: 18px 0 26px;
  color: rgba(255, 253, 248, 0.6);
  font-size: 15px;
  line-height: 1.55;
}

.package--premium ul {
  margin-bottom: 0;
}

.package-premium__foot {
  display: flex;
  min-height: 52px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  gap: 16px 20px;
}

.package-premium__foot .button {
  margin-top: 0;
}

.package-premium__price {
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.package-premium__price span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 253, 248, 0.45);
  font-family: var(--body);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.community-note {
  max-width: 62ch;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.assurance-grid {
  display: grid;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.assurance-card {
  padding: 30px;
  background: var(--ink-raised);
}

.assurance-card h3 {
  margin: 0 0 14px;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.assurance-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 15px;
  line-height: 1.62;
}

.assurance-note {
  max-width: 74ch;
  margin: 32px 0 0;
  color: rgba(255, 253, 248, 0.42);
  font-size: 11px;
  line-height: 1.6;
}

.lifetime-terms {
  max-width: 74ch;
  margin: 40px 0 0;
  color: rgba(255, 253, 248, 0.42);
  font-size: 10px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .packages-grid--premium,
  .packages-grid--community,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid--premium .package,
  .packages-grid--community .package {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .package-premium__foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .package-premium__foot .button {
    width: 100%;
  }
}
