:root {
  color-scheme: light;
  --magenta: #ff29ab;
  --cyan: #00d9ff;
  --yellow: #f7ff24;
  --green: #78ff36;
  --violet: #7d3dff;
  --blue: #005cff;
  --orange: #ff5429;
  --ink: #0f0f0f;
  --paper: #fffdf0;
  --surface: #ffffff;
  --muted: #5f5a62;
  --line: rgba(15, 15, 15, 0.14);
  --shadow: 0 18px 50px rgba(15, 15, 15, 0.14);
  --max: 1160px;
  --radius: 22px;
  --wordmark-ratio: 1000 / 423;
  font-family: "Arial Rounded MT Bold", "Nunito Sans", ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 9%, rgba(0, 217, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(120, 255, 54, 0.18), transparent 22rem),
    var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body.launch-page {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 41, 171, 0.18), transparent 22rem),
    radial-gradient(circle at 80% 10%, rgba(0, 217, 255, 0.18), transparent 24rem),
    var(--paper);
}

body.legal-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 41, 171, 0.16), transparent 18rem),
    radial-gradient(circle at 86% 11%, rgba(0, 217, 255, 0.18), transparent 22rem),
    linear-gradient(180deg, #fffdf0 0%, #fff8d7 100%);
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

p {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 2px solid rgba(15, 15, 15, 0.08);
  background: rgba(255, 253, 240, 0.704);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img:not(.brand-mark) {
  width: 118px;
  height: auto;
  min-width: 118px;
  aspect-ratio: var(--wordmark-ratio);
  flex: 0 0 118px;
  object-fit: contain;
}

.brand img.brand-mark {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  max-width: 42px;
  max-height: 42px;
  aspect-ratio: 1;
  flex: 0 0 42px;
  object-fit: contain;
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 5px 5px 0 var(--cyan), 9px 9px 0 rgba(255, 41, 171, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 13px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  border-color: var(--ink);
  background: var(--yellow);
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 19px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 5px 5px 0 var(--cyan);
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
}

.button:hover,
.button:focus-visible {
  transform: translate(-1px, -1px);
  box-shadow: 7px 7px 0 var(--cyan);
  outline: none;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(255, 41, 171, 0.72);
}

.button.sunny {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--magenta);
}

.button.small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.88rem;
}

.arrow {
  font-size: 1.08em;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 84svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  background-color: var(--magenta);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.86) 0%, rgba(15, 15, 15, 0.58) 40%, rgba(15, 15, 15, 0.05) 76%),
    linear-gradient(0deg, rgba(15, 15, 15, 0.48), rgba(15, 15, 15, 0.05) 38%);
}

.launch-hero::after {
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.88) 0%, rgba(15, 15, 15, 0.66) 48%, rgba(15, 15, 15, 0.1) 100%),
    linear-gradient(0deg, rgba(15, 15, 15, 0.56), rgba(15, 15, 15, 0.04) 44%);
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 94px) 0 clamp(42px, 6vw, 72px);
  color: #fff;
}

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

.hero-wordmark {
  width: min(52vw, 290px);
  height: auto;
  aspect-ratio: var(--wordmark-ratio);
  object-fit: contain;
  min-width: 170px;
  margin-bottom: 18px;
}

.eyebrow,
.sticker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 7px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(0, 217, 255, 0.44), 8px 8px 0 rgba(255, 41, 171, 0.28);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.sticker.cyan {
  background: var(--cyan);
}

.sticker.green {
  background: var(--green);
}

.sticker.magenta {
  background: var(--magenta);
  color: #fff;
}

.sticker.white {
  background: #fff;
}

.tilt-left {
  transform: rotate(-2deg);
}

.tilt-right {
  transform: rotate(3deg);
}

h1 {
  margin-top: 14px;
  max-width: 760px;
  font-size: clamp(4.7rem, 16vw, 10.8rem);
  line-height: 0.78;
  font-weight: 1000;
  letter-spacing: 0;
  text-shadow: 4px 5px 0 rgba(0, 0, 0, 0.42);
}

.launch-hero h1 {
  max-width: 880px;
  font-size: clamp(3.6rem, 10vw, 8.4rem);
  line-height: 0.86;
}

.hero-lede {
  margin-top: 22px;
  max-width: 620px;
  font-size: clamp(1.25rem, 2.7vw, 2.2rem);
  line-height: 1.08;
  font-weight: 950;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.28);
}

.hero-note {
  margin-top: 16px;
  max-width: 610px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.section {
  padding: clamp(58px, 8vw, 98px) 0;
}

.section.tight {
  padding: clamp(42px, 6vw, 70px) 0;
}

.band {
  background: var(--ink);
  color: #fff;
}

.band-yellow {
  background: var(--yellow);
}

.band-cyan {
  background: var(--cyan);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head.single {
  grid-template-columns: 1fr;
  max-width: 780px;
}

.section-head h2 {
  margin-top: 14px;
  font-size: clamp(2.4rem, 6vw, 5.7rem);
  line-height: 0.9;
  font-weight: 1000;
  letter-spacing: 0;
}

.section-head p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.band .section-head p,
.band .mini-copy,
.band .card p {
  color: rgba(255, 255, 255, 0.76);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.tile,
.card,
.offer-card {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.tile {
  min-height: 240px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.tile:nth-child(2) {
  background: rgba(0, 217, 255, 0.18);
}

.tile:nth-child(3) {
  background: rgba(120, 255, 54, 0.22);
}

.tile:nth-child(4) {
  background: rgba(255, 41, 171, 0.12);
}

.tile:nth-child(5) {
  background: rgba(247, 255, 36, 0.58);
}

.tile h3,
.card h3,
.offer-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0;
}

.tile p,
.card p,
.offer-card p,
.mini-copy {
  color: var(--muted);
  font-size: 0.98rem;
}

.icon-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--magenta), var(--violet), var(--cyan));
  color: #fff;
  box-shadow: 5px 5px 0 rgba(15, 15, 15, 0.16);
  font-size: 1.5rem;
  font-weight: 1000;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-item {
  padding: 18px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-item strong {
  display: block;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 1000;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.media-panel {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: var(--ink);
  box-shadow: 10px 10px 0 rgba(0, 217, 255, 0.38), 18px 18px 0 rgba(255, 41, 171, 0.18);
}

.media-panel img {
  width: 100%;
  height: auto;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.feature-row h3 {
  font-size: 1.32rem;
  line-height: 1.05;
  font-weight: 1000;
}

.feature-row p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
}

.dot {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--magenta);
  font-weight: 1000;
}

.comparison {
  display: grid;
  gap: 12px;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.comparison-row > div {
  padding: 17px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  font-weight: 850;
}

.comparison-row.header > div {
  background: var(--ink);
  color: #fff;
  font-weight: 1000;
}

.comparison-row .once-cell {
  background: var(--green);
}

.comparison-row .label-cell {
  background: var(--yellow);
  font-weight: 1000;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  padding: 22px;
}

.card h3 {
  margin-top: 16px;
}

.card p {
  margin-top: 10px;
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  gap: 22px;
  align-items: stretch;
}

.price-box {
  padding: clamp(24px, 4vw, 42px);
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: #fff;
  box-shadow: 10px 10px 0 var(--cyan);
}

.price-box h2 {
  margin-top: 12px;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 0.88;
  font-weight: 1000;
  letter-spacing: 0;
}

.price-box p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.included-list {
  display: grid;
  gap: 10px;
  align-content: center;
}

.included-list div {
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 950;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.offer-card {
  min-height: 230px;
  padding: 20px;
}

.offer-card:nth-child(odd) {
  background: rgba(247, 255, 36, 0.66);
}

.offer-card:nth-child(even) {
  background: rgba(0, 217, 255, 0.18);
}

.offer-card h3 {
  margin-top: 18px;
}

.offer-card p {
  margin-top: 10px;
}

.launch-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  border: 2px solid var(--ink);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 41, 171, 0.16), rgba(0, 217, 255, 0.18)),
    #fff;
  box-shadow: 10px 10px 0 var(--yellow);
}

.launch-box h2 {
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 0.92;
  font-weight: 1000;
  letter-spacing: 0;
}

.launch-box p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.mail-card {
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
}

.mail-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.mail-card .button {
  width: 100%;
  margin-top: 16px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.audience {
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: #fff;
}

.audience h3 {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 0.95;
  font-weight: 1000;
}

.audience ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.audience li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  font-weight: 850;
}

.audience li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 3px 3px 0 var(--cyan);
}

.audience.not li::before {
  background: var(--magenta);
  box-shadow: 3px 3px 0 var(--yellow);
}

.cta-band {
  text-align: center;
}

.cta-band h2 {
  margin: 14px auto 0;
  max-width: 780px;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 0.88;
  font-weight: 1000;
  letter-spacing: 0;
}

.cta-band p {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-band .hero-actions {
  justify-content: center;
}

.page-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(34px, 5vw, 58px);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.4fr);
  gap: 28px;
  align-items: end;
}

.page-kicker {
  width: min(52vw, 250px);
  height: auto;
  aspect-ratio: var(--wordmark-ratio);
  object-fit: contain;
  min-width: 150px;
  margin-bottom: 18px;
}

.page-title {
  margin-top: 14px;
  max-width: 820px;
  font-size: clamp(3.2rem, 9vw, 7.8rem);
  line-height: 0.88;
  font-weight: 1000;
  letter-spacing: 0;
}

.page-lede {
  margin-top: 18px;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 850;
}

.legal-shell {
  padding: 0 0 clamp(58px, 8vw, 98px);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: 22px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 94px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 6px 6px 0 rgba(0, 217, 255, 0.34);
}

.legal-toc h2 {
  font-size: 1rem;
  line-height: 1;
  font-weight: 1000;
}

.legal-toc nav {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.legal-toc a {
  display: block;
  padding: 9px 10px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.1;
}

.legal-toc a:hover,
.legal-toc a:focus-visible,
.legal-toc a[aria-current="page"] {
  border-color: var(--ink);
  background: var(--yellow);
  color: var(--ink);
  outline: none;
}

.legal-stack {
  display: grid;
  gap: 16px;
}

.legal-card {
  padding: clamp(18px, 3vw, 28px);
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0;
}

.legal-card h3 {
  margin-top: 20px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.08;
  font-weight: 1000;
}

.legal-card p,
.legal-card li {
  color: #272329;
  font-size: 1rem;
  font-weight: 760;
}

.legal-card p {
  margin-top: 12px;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.legal-card li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
}

.legal-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.48em;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 3px 3px 0 var(--cyan);
}

.legal-card a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--magenta);
  text-underline-offset: 3px;
}

.legal-updated {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 900;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 22px;
  align-items: stretch;
}

.support-panel .legal-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-list {
  display: grid;
  gap: 12px;
}

.support-list div {
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 950;
}

.site-footer {
  padding: 32px 0 42px;
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner img {
  width: 136px;
  height: auto;
  aspect-ratio: var(--wordmark-ratio);
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 900;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 850;
}

@media (max-width: 980px) {
  .product-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .split,
  .pricing-panel,
  .launch-box,
  .page-hero .container,
  .legal-layout,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .proof-strip,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .comparison-row.header {
    display: none;
  }

  .comparison-row > div::before {
    display: block;
    margin-bottom: 4px;
    font-size: 0.72rem;
    font-weight: 1000;
    text-transform: uppercase;
    color: var(--muted);
  }

  .comparison-row .label-cell::before {
    content: "Category";
  }

  .comparison-row .once-cell::before {
    content: "Once";
  }

  .comparison-row .other-cell::before {
    content: "Other services";
  }
}

@media (max-width: 720px) {
  .nav {
    width: min(100% - 28px, var(--max));
    min-height: auto;
    padding: 14px 0 12px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
  }

  .brand {
    align-self: flex-start;
  }

  .brand img:not(.brand-mark) {
    width: 96px;
    min-width: 96px;
    flex-basis: 96px;
  }

  .brand img.brand-mark {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    max-width: 36px;
    max-height: 36px;
    flex-basis: 36px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px clamp(6px, 1.8vw, 9px);
    font-size: clamp(0.68rem, 3vw, 0.78rem);
    white-space: nowrap;
  }

  .hero {
    min-height: 82svh;
  }

  .hero::before {
    background-position: 42% center;
  }

  .hero::after,
  .launch-hero::after {
    background:
      linear-gradient(0deg, rgba(15, 15, 15, 0.88) 0%, rgba(15, 15, 15, 0.5) 54%, rgba(15, 15, 15, 0.18) 100%);
  }

  .hero-inner {
    padding-bottom: 34px;
  }

  .hero:not(.launch-hero) h1 {
    font-family: "Arial Rounded MT Bold", "Arial Black", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 1000;
    -webkit-text-stroke: 2.4px #fff;
    paint-order: stroke fill;
    text-shadow: 5px 6px 0 rgba(0, 0, 0, 0.58);
  }

  .hero-actions,
  .cta-band .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .product-grid,
  .offer-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .tile {
    min-height: 190px;
  }

  .media-panel {
    border-radius: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
