@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-VariableItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --page-bg: #f7fbfe;
  --title-start: #ffed29;
  --title-end: #ffffff;
  --copy-color: rgba(245, 249, 252, 0.92);
  --copy-muted: rgba(227, 236, 243, 0.78);
  --cta-bg: rgba(8, 3, 18, 0.88);
  --cta-text: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  background: var(--page-bg);
  font-family: "Satoshi", sans-serif;
  color: #f4f8fb;
}

body.modal-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0f161b;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 19, 27, 0.72) 0%, rgba(11, 19, 27, 0.46) 34%, rgba(11, 19, 27, 0.22) 62%, rgba(11, 19, 27, 0.16) 100%),
    linear-gradient(180deg, rgba(18, 28, 36, 0.2) 0%, rgba(18, 28, 36, 0.36) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 8vw 24px;
  text-align: left;
}

.offer-lab {
  background: #f7fbfe;
  padding: 96px 24px 120px;
}

.content-page {
  background: #f7fbfe;
  padding: 132px 24px 96px;
}

.content-page-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.content-page-header {
  display: grid;
  gap: 10px;
  max-width: 56rem;
}

.content-page-kicker,
.content-page-title,
.content-page-intro {
  margin: 0;
}

.content-page-kicker {
  color: #9fb2c0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.content-page-title {
  color: #6b8192;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.content-page-intro {
  color: #8195a5;
  font-size: 1.08rem;
  line-height: 1.6;
}

.content-page-body {
  display: grid;
  gap: 26px;
  max-width: 72ch;
}

.content-page-body section {
  display: grid;
  gap: 8px;
}

.content-page-body h2,
.content-page-body p {
  margin: 0;
}

.content-page-body h2 {
  color: #6b8192;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.content-page-body p {
  color: #8da1af;
  font-size: 1rem;
  line-height: 1.65;
}

.site-footer {
  background: #f7fbfe;
  padding: 0 24px 64px;
}

.age-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
}

.age-modal-underlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 3, 18, 0.68);
  backdrop-filter: blur(10px);
}

.age-modal-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 48rem);
}

.age-modal-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 26px;
  padding: 1.5px;
  clip-path: polygon(
    0% 22px,
    22px 0,
    100% 0,
    100% calc(100% - 22px),
    calc(100% - 22px) 100%,
    0 100%
  );
  background:
    linear-gradient(
      -45deg,
      #ffed29,
      #ffef3e,
      #fff153,
      #fff268,
      #fff47d,
      #fff692,
      #fff8a7,
      #fff9bc
    );
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(255, 237, 41, 0.1);
}

.age-modal-panel::before {
  content: "";
  position: absolute;
  inset: 1.5px;
  z-index: -1;
  clip-path: polygon(
    0% 20px,
    20px 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%
  );
  background:
    linear-gradient(180deg, rgba(13, 10, 22, 0.99) 0%, rgba(8, 3, 18, 0.97) 100%);
}

.age-modal-copy {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 36px 36px 0;
  text-align: center;
}

.age-modal-title,
.age-modal-description {
  margin: 0;
}

.age-modal-title {
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-inline-size: 10ch;
}

.age-modal-description {
  max-width: 54ch;
  color: rgba(245, 249, 252, 0.84);
  font-size: 1.05rem;
  line-height: 1.6;
}

.age-modal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0 36px 36px;
}

.action-cta {
  --border-width: 0.125em;
  --curve-size: 0.5em;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  min-width: 11rem;
  padding: 0.88rem 1.35rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  clip-path: polygon(
    0% var(--curve-size),
    var(--curve-size) 0,
    100% 0,
    100% calc(100% - var(--curve-size)),
    calc(100% - var(--curve-size)) 100%,
    0 100%
  );
  transition: color 250ms ease;
}

.action-cta::before,
.action-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

.action-cta::before {
  z-index: -2;
  background-size: 300% 300%;
  animation: hero-cta-border-shift 5s ease infinite;
}

.action-cta::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 10, 24, 0.96) 0%, rgba(8, 3, 18, 0.92) 100%);
  clip-path: polygon(
    var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms ease;
}

.action-cta:hover,
.action-cta:focus-visible {
  color: #181819;
}

.action-cta:hover::after,
.action-cta:focus-visible::after {
  clip-path: polygon(
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width))
  );
  transition-duration: 200ms;
}

.action-cta:focus-visible {
  outline: none;
}

.action-cta-primary::before {
  background:
    linear-gradient(
      -45deg,
      #ffed29,
      #ffef3e,
      #fff153,
      #fff268,
      #fff47d,
      #fff692,
      #fff8a7,
      #fff9bc
    );
}

.action-cta-danger::before {
  background:
    linear-gradient(
      -45deg,
      #ff4b4b,
      #ff5f5f,
      #ff7373,
      #ff8787,
      #ff6b6b,
      #ff5454,
      #ff4040,
      #ff6a6a
    );
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background:
    linear-gradient(180deg, rgba(13, 10, 22, 0.98) 0%, rgba(8, 3, 18, 0.94) 100%);
  border-bottom: 1px solid rgba(255, 248, 167, 0.14);
  transition: transform 260ms ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 0 24px;
}

.site-header-brand {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  min-height: 82px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-decoration: none;
  text-transform: none;
}

.site-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

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

.site-header-nav a {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  min-height: 82px;
  padding: 0 14px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.site-header-nav a:hover,
.site-header-nav a:focus-visible,
.site-header-nav a[aria-current="page"] {
  color: #ffffff;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #ffed29;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.48em;
}

.site-header-cta {
  --border-width: 0.125em;
  --curve-size: 0.45em;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  min-width: 11rem;
  padding: 0.78rem 1.2rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  clip-path: polygon(
    0% var(--curve-size),
    var(--curve-size) 0,
    100% 0,
    100% calc(100% - var(--curve-size)),
    calc(100% - var(--curve-size)) 100%,
    0 100%
  );
  transition: color 250ms ease;
}

.site-header-cta::before,
.site-header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

.site-header-cta::before {
  z-index: -2;
  background:
    linear-gradient(
      -45deg,
      #ffed29,
      #ffef3e,
      #fff153,
      #fff268,
      #fff47d,
      #fff692,
      #fff8a7,
      #fff9bc
    );
  background-size: 300% 300%;
  animation: hero-cta-border-shift 5s ease infinite;
}

.site-header-cta::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 10, 24, 0.96) 0%, rgba(8, 3, 18, 0.92) 100%);
  clip-path: polygon(
    var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms ease;
}

.site-header-cta:hover,
.site-header-cta:focus-visible {
  color: #181819;
}

.site-header-cta:hover::after,
.site-header-cta:focus-visible::after {
  clip-path: polygon(
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width))
  );
  transition-duration: 200ms;
}

.site-header-cta:focus-visible {
  outline: none;
}

.site-footer-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(214, 225, 232, 0.9);
}

.site-footer-lead,
.site-footer-copy p {
  margin: 0;
}

.site-footer-lead {
  color: #6d8294;
  font-size: 1rem;
  line-height: 1.5;
}

.site-footer-copy {
  display: grid;
  gap: 12px;
  max-width: 76ch;
}

.site-footer-copy p {
  color: #8da1af;
  font-size: 0.96rem;
  line-height: 1.55;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #93a7b5;
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer-links a {
  color: #6d8294;
  text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: #181819;
}

.offer-lab-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.offer-lab-header {
  display: grid;
  gap: 8px;
}

.offer-lab-kicker {
  margin: 0;
  color: #9fb2c0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer-lab-title {
  margin: 0;
  color: #6b8192;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.offer-card {
  width: min(100%, 420px);
  display: grid;
  gap: 0;
  position: relative;
  isolation: isolate;
  padding: 1.5px;
  clip-path: polygon(
    0% 18px,
    18px 0,
    100% 0,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    0 100%
  );
  background:
    linear-gradient(
      -45deg,
      #ffed29,
      #ffef3e,
      #fff153,
      #fff268,
      #fff47d,
      #fff692,
      #fff8a7,
      #fff9bc
    );
  box-shadow:
    0 18px 40px rgba(78, 67, 8, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 1.5px;
  z-index: -1;
  clip-path: polygon(
    0% 16px,
    16px 0,
    100% 0,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    0 100%
  );
  background:
    linear-gradient(180deg, rgba(13, 10, 22, 0.98) 0%, rgba(8, 3, 18, 0.96) 100%);
}

.offer-card-media {
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  background: #16111d;
  border-bottom: 1px solid rgba(214, 225, 232, 0.92);
}

.offer-card-video,
.offer-card-media-overlay {
  position: absolute;
  inset: 0;
}

.offer-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card-media-overlay {
  background:
    linear-gradient(180deg, rgba(18, 14, 27, 0.1) 0%, rgba(18, 14, 27, 0.18) 56%, rgba(18, 14, 27, 0.58) 100%),
    linear-gradient(0deg, rgba(10, 6, 22, 0.3) 0%, rgba(10, 6, 22, 0) 42%);
}

.offer-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 1px;
  isolation: isolate;
  clip-path: polygon(
    0% 10px,
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%
  );
  background: linear-gradient(135deg, rgba(255, 237, 41, 0.9) 0%, rgba(255, 249, 188, 0.92) 100%);
  color: #fff8a7;
}

.offer-card-badge::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  clip-path: polygon(
    0% 9px,
    9px 0,
    100% 0,
    100% calc(100% - 9px),
    calc(100% - 9px) 100%,
    0 100%
  );
  background: rgba(33, 24, 51, 0.84);
  backdrop-filter: blur(12px);
}

.offer-card-badge span {
  display: inline-flex;
  align-items: center;
  min-height: 33px;
  padding: 0 12px;
  color: #fff8a7;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-card-logo {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 1;
  width: min(32%, 140px);
  transform: translateX(-50%);
  border-radius: 14px;
  box-shadow:
    0 10px 24px rgba(10, 6, 22, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.offer-card-body {
  display: grid;
  gap: 10px;
  padding: 22px 22px 16px;
}

.offer-card-title,
.offer-card-copy {
  margin: 0;
}

.offer-card-title {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-inline-size: none;
  white-space: nowrap;
}

.offer-card-copy {
  color: rgba(255, 248, 167, 0.88);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
}

.offer-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 4px;
  margin-inline: -22px;
  padding: 14px 22px;
  background: rgba(255, 249, 188, 0.06);
}

.offer-card-meta-item {
  display: grid;
  gap: 4px;
  position: relative;
  justify-items: center;
  text-align: center;
}

.offer-card-meta-item + .offer-card-meta-item::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: -8px;
  width: 1px;
  background: rgba(255, 248, 167, 0.16);
}

.offer-card-meta-label,
.offer-card-meta-value {
  margin: 0;
}

.offer-card-meta-label {
  color: rgba(255, 248, 167, 0.6);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
}

.offer-card-meta-value {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
}

.offer-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 22px;
}

.offer-card-footer-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: rgba(255, 248, 167, 0.92);
}

.offer-card-cta {
  --border-width: 0.125em;
  --curve-size: 0.45em;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 9rem;
  padding: 0.62rem 1rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  clip-path: polygon(
    0% var(--curve-size),
    var(--curve-size) 0,
    100% 0,
    100% calc(100% - var(--curve-size)),
    calc(100% - var(--curve-size)) 100%,
    0 100%
  );
  transition: color 250ms ease;
}

.offer-card-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  text-align: left;
}

.offer-card-cta-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-left: auto;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0.75px;
  paint-order: stroke fill;
  transition: transform 250ms ease;
}

.offer-card-cta:hover .offer-card-cta-icon,
.offer-card-cta:focus-visible .offer-card-cta-icon {
  transform: rotate(-15deg);
}

.offer-card-cta::before,
.offer-card-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

.offer-card-cta::before {
  z-index: -2;
  background:
    linear-gradient(
      -45deg,
      #ffed29,
      #ffef3e,
      #fff153,
      #fff268,
      #fff47d,
      #fff692,
      #fff8a7,
      #fff9bc
    );
  background-size: 300% 300%;
  animation: hero-cta-border-shift 5s ease infinite;
}

.offer-card-cta::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 10, 24, 0.96) 0%, rgba(8, 3, 18, 0.92) 100%);
  clip-path: polygon(
    var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms ease;
}

.offer-card-cta:hover,
.offer-card-cta:focus-visible {
  color: #181819;
}

.offer-card-cta:hover::after,
.offer-card-cta:focus-visible::after {
  clip-path: polygon(
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width))
  );
  transition-duration: 200ms;
}

.offer-card-cta:focus-visible {
  outline: none;
}

.hero-title {
  margin: 0;
  max-inline-size: 9ch;
  font-size: clamp(4.3rem, 11vw, 10.8rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: -0.075em;
  color: var(--title-end);
  text-wrap: balance;
}

.hero-title-letter,
.hero-title-space {
  display: inline-block;
  opacity: 0;
  filter: blur(22px);
  animation: title-letter-reveal 900ms linear forwards;
  animation-delay: calc(var(--char-index) * 48ms);
  will-change: opacity, filter, color;
}

.hero-title-space {
  min-width: 0.24em;
}

.hero-subtitle {
  margin: 0;
  max-inline-size: 24rem;
  color: var(--copy-color);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5;
}

.hero-cta {
  --border-width: 0.125em;
  --curve-size: 0.5em;
  margin-top: 0.5rem;
  color: var(--cta-text);
  cursor: pointer;
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  min-width: 13rem;
  padding: 0.9rem 1.6rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  clip-path: polygon(
    0% var(--curve-size),
    var(--curve-size) 0,
    100% 0,
    100% calc(100% - var(--curve-size)),
    calc(100% - var(--curve-size)) 100%,
    0 100%
  );
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(255, 237, 41, 0.12);
  transition: color 250ms ease;
}

.hero-cta::before,
.hero-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-cta::before {
  z-index: -2;
  background:
    linear-gradient(
      -45deg,
      #ffed29,
      #ffef3e,
      #fff153,
      #fff268,
      #fff47d,
      #fff692,
      #fff8a7,
      #fff9bc
    );
  background-size: 300% 300%;
  animation: hero-cta-border-shift 5s ease infinite;
}

.hero-cta::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 10, 24, 0.96) 0%, rgba(8, 3, 18, 0.92) 100%);
  clip-path: polygon(
    var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  color: #181819;
}

.hero-cta:hover::after,
.hero-cta:focus-visible::after {
  clip-path: polygon(
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width))
  );
  transition-duration: 200ms;
}

.hero-cta:focus-visible {
  outline: none;
}

@keyframes title-letter-reveal {
  0% {
    color: var(--title-start);
    opacity: 0;
    filter: blur(22px);
  }

  50% {
    color: var(--title-start);
    opacity: 0.5;
    filter: blur(8px);
  }

  100% {
    color: var(--title-end);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes hero-cta-border-shift {
  0% {
    background-position: 31% 0%;
  }

  50% {
    background-position: 70% 100%;
  }

  100% {
    background-position: 31% 0%;
  }
}

@media (max-width: 720px) {
  .hero-copy {
    padding: 18vh 20px 20vh;
  }

  .hero-title {
    max-inline-size: 7ch;
  }

  .hero-subtitle {
    max-inline-size: 18rem;
  }

  .offer-lab {
    padding: 72px 20px 96px;
  }

  .site-footer {
    padding: 0 20px 52px;
  }

  .age-modal {
    padding: 20px;
  }

  .content-page {
    padding: 112px 20px 72px;
  }

  .age-modal-copy {
    padding: 28px 24px 0;
  }

  .age-modal-actions {
    padding: 0 24px 24px;
  }

  .site-header-shell {
    min-height: 72px;
    padding: 0 20px;
    gap: 16px;
  }

  .site-header-brand {
    min-height: 72px;
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .site-header-actions {
    gap: 12px;
  }

  .site-header-nav a {
    min-height: 72px;
    padding: 0 10px;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .site-header-cta {
    min-width: auto;
    padding: 0.72rem 1rem;
    font-size: 0.74rem;
  }
}
