:root {
  --green-1: #1cdf73;
  --green-2: #15c9a7;
  --green-3: #00aebb;
  --ink: #1d2e4f;
  --muted: #1d2e4f;
  --line: #d9e4df;
  --paper: #ffffff;
  --soft: #f5faf7;
  --brand-bg: #0d1022;
  --brand-bg-image: url("assets/mywaycard-brand-background.png");
  --surface: rgba(255, 255, 255, 0.96);
  --surface-soft: rgba(245, 250, 247, 0.94);
  --section-white: rgba(255, 255, 255, 0.97);
  --section-tint: rgba(239, 245, 251, 0.96);
  --mint: #e8fbf3;
  --amber: #f6b73c;
  --shadow: 0 22px 70px rgba(23, 33, 29, 0.11);
  --radius: 8px;
  --container: 1360px;
  --topbar-height: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-height) + 98px);
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    var(--brand-bg-image) center / cover fixed no-repeat,
    var(--brand-bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(21, 201, 167, 0.58);
  outline-offset: 4px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.launch-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  min-height: var(--topbar-height);
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 16px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--green-1) 0%, var(--green-2) 56%, var(--green-3) 100%);
  border-bottom: 1px solid rgba(29, 46, 79, 0.12);
  box-shadow: 0 8px 24px rgba(21, 201, 167, 0.18);
  font-size: 0.82rem;
  line-height: 1.1;
  letter-spacing: 0;
  overflow: hidden;
}

.launch-topbar-state {
  display: inline-grid;
  min-width: 34ch;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.launch-topbar span {
  color: rgba(29, 46, 79, 0.76);
  font-weight: 700;
}

.launch-topbar-weekly,
.launch-topbar-join {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.launch-topbar-weekly {
  opacity: 1;
  transform: translateY(0);
}

.launch-topbar-join {
  opacity: 0;
  transform: translateY(9px);
  pointer-events: none;
}

.launch-topbar-state.is-join .launch-topbar-weekly {
  opacity: 0;
  transform: translateY(-9px);
  pointer-events: none;
}

.launch-topbar-state.is-join .launch-topbar-join {
  opacity: 1;
  transform: translateY(0);
}

.launch-topbar strong {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.launch-topbar [hidden] {
  display: none !important;
}

.launch-topbar strong span {
  color: var(--ink);
  font-weight: 950;
}

.launch-provider-count {
  display: inline-block;
  min-width: 5ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.launch-provider-count.is-updating {
  animation: topbar-count-pop 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes topbar-count-pop {
  0% {
    transform: translateY(0) scale(1);
    text-shadow: none;
  }

  45% {
    transform: translateY(-1px) scale(1.08);
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.62);
  }

  100% {
    transform: translateY(0) scale(1);
    text-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch-topbar-weekly,
  .launch-topbar-join,
  .launch-provider-count.is-updating {
    transition: none;
    animation: none;
  }
}

.site-header {
  position: fixed;
  inset: var(--topbar-height) 0 auto;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px max(16px, calc((100vw - var(--container)) / 2));
  color: #ffffff;
  background: rgba(9, 12, 31, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(34px, 4vw, 48px);
  max-width: min(34vw, 300px);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.35vw, 18px);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.82rem, 0.95vw, 0.94rem);
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.nav-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 8px 2px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.primary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 15px 25px;
  color: #ffffff;
  background: linear-gradient(135deg, #1cdf73 0%, #15c9a7 55%, #00aebb 100%);
  box-shadow: 0 12px 30px rgba(21, 201, 167, 0.28);
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(21, 201, 167, 0.36);
  filter: brightness(1.04);
}

.primary-cta:active {
  transform: translateY(0);
  box-shadow: 0 8px 22px rgba(21, 201, 167, 0.24);
}

.header-cta {
  min-height: 42px;
  padding: 12px 20px;
  font-size: 0.92rem;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.07);
}

.language-toggle button {
  display: inline-flex;
  min-width: 36px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.language-toggle button.is-active {
  color: var(--ink);
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
}

.secondary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 33, 29, 0.18);
  border-radius: 999px;
  padding: 14px 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 750;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.secondary-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 201, 167, 0.6);
  background: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(920px, 96svh);
  align-items: center;
  overflow: hidden;
  padding: calc(116px + var(--topbar-height)) 0 82px;
  background:
    linear-gradient(90deg, rgba(7, 9, 25, 0.97) 0%, rgba(13, 25, 62, 0.9) 46%, rgba(13, 25, 62, 0.42) 100%),
    var(--brand-bg-image) center / cover no-repeat,
    var(--brand-bg);
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(9, 12, 31, 0.28), rgba(9, 12, 31, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 280px);
  justify-content: space-between;
  gap: clamp(44px, 5vw, 82px);
  align-items: center;
}

.hero-text {
  display: grid;
  align-content: center;
}

.hero-text > * {
  max-width: 980px;
}

.hero-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(4, 8, 24, 0.42);
}

.hero-video::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #08745d;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #74f6b4;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 7vw, 5.75rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  color: #ffffff;
}

.no-break {
  white-space: nowrap;
}

.gradient-text {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
  background-clip: text;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-copy {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.48;
}

.hero-copy span {
  display: block;
  margin-top: 0.9em;
}

.hero-points {
  display: grid;
  gap: 22px;
  align-self: center;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
  font-size: 1.02rem;
  font-weight: 700;
}

.hero-points li {
  position: relative;
  padding-left: 42px;
}

.hero-points li::before {
  position: absolute;
  left: 2px;
  top: 0.1em;
  color: var(--green-1);
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
  content: "✓";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.stats-section,
.category-section,
.redemption-section,
.process-section,
.conditions-section,
.ad-comparison-section,
.packages-section,
.faq-section,
.registration-section,
.split-band,
.band {
  scroll-margin-top: calc(86px + var(--topbar-height));
  padding: clamp(68px, 9vw, 118px) 0;
}

.stats-section,
.category-section,
.redemption-section,
.process-section,
.conditions-section,
.ad-comparison-section,
.faq-section {
  background: var(--surface);
  backdrop-filter: blur(10px);
}

.conditions-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #1d2e4f;
}

.conditions-section::before,
.conditions-section::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.conditions-section::before {
  z-index: -2;
  background: url("assets/conditions-dashboard-bg.png") center / cover no-repeat;
  filter: blur(4px) brightness(0.82) saturate(1.05);
  transform: scale(1.04);
}

.conditions-section::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 18, 36, 0.48), rgba(3, 18, 36, 0.3) 48%, rgba(3, 18, 36, 0.52)),
    linear-gradient(180deg, rgba(3, 18, 36, 0.22), rgba(3, 18, 36, 0.48));
}

.band {
  background: var(--surface-soft);
  backdrop-filter: blur(10px);
}

.scroll-rise {
  opacity: 0;
  transform: translate3d(0, 46px, 0);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--scroll-rise-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-rise.is-scroll-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-heading {
  display: grid;
  gap: 18px;
  align-content: start;
}

.section-heading p {
  font-size: 1.05rem;
}

.section-heading.narrow {
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.stat-card,
.category-card,
.info-card,
.redeem-panel,
.partner-form,
.visual-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 16px 50px rgba(23, 33, 29, 0.06);
}

.stat-card {
  position: relative;
  display: grid;
  min-height: 166px;
  align-content: space-between;
  gap: 14px;
  padding: 22px;
  border-color: rgba(29, 46, 79, 0.12);
  color: #1d2e4f;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(13, 25, 62, 0.08);
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.stat-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(180deg, var(--green-1), var(--green-3));
  content: "";
  pointer-events: none;
}

.stat-card::after {
  content: none;
}

.stat-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stat-card.is-visible:nth-child(2) {
  transition-delay: 0.08s;
}

.stat-card.is-visible:nth-child(3) {
  transition-delay: 0.16s;
}

.stat-card.is-visible:nth-child(4) {
  transition-delay: 0.04s;
}

.stat-card.is-visible:nth-child(5) {
  transition-delay: 0.12s;
}

.stat-card.is-visible:nth-child(6) {
  transition-delay: 0.2s;
}

.stat-card.is-visible:hover {
  transition-delay: 0s;
}

.stat-card:hover {
  border-color: rgba(29, 46, 79, 0.2);
  box-shadow: 0 20px 54px rgba(13, 25, 62, 0.12);
  transform: translateY(-3px);
}

.stat-kicker {
  position: relative;
  z-index: 1;
  width: fit-content;
  border: 1px solid rgba(29, 46, 79, 0.12);
  border-radius: 999px;
  padding: 5px 9px;
  color: #1d2e4f;
  background: #f3f7fb;
  font-size: 0.72rem;
  font-weight: 880;
  line-height: 1;
  text-transform: uppercase;
}

.stat-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #1d2e4f;
  font-size: 3.45rem;
  line-height: 1;
}

.stat-number {
  display: inline-block;
  min-width: 3ch;
  color: #1d2e4f;
  transform: translateY(6px);
}

.stat-card.is-counting .stat-number {
  animation: statPulse 0.72s ease both;
}

.stat-label {
  position: relative;
  z-index: 1;
  color: #1d2e4f;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
}

.category-section {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 76px) 0;
}

.category-section .container {
  position: relative;
  z-index: 1;
}

.category-spotlight-section {
  isolation: isolate;
}

.category-section .section-heading {
  gap: 10px;
}

.category-backgrounds {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.category-backgrounds::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(239, 245, 251, 0.88), rgba(239, 245, 251, 0.72)),
    rgba(255, 255, 255, 0.58);
  content: "";
}

.category-backgrounds img {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  object-fit: cover;
  opacity: 0;
  filter: blur(18px) saturate(1.16);
  transform: scale(1.04);
  transition:
    opacity 0.75s ease,
    transform 1.2s ease;
}

.category-backgrounds img.is-active {
  opacity: 0.28;
  transform: scale(1);
}

.category-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  margin-top: 34px;
}

.category-visual {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(13, 25, 62, 0.18);
}

.category-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 34, 0.02) 35%, rgba(8, 12, 34, 0.78) 100%);
  content: "";
}

.category-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.62s ease,
    transform 1.05s ease;
}

.category-visual img.is-active {
  opacity: 1;
  transform: scale(1);
}

.category-visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 12px;
  color: #ffffff;
}

.category-visual-caption span {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(8, 12, 34, 0.36);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 900;
  transition:
    opacity 0.26s ease,
    transform 0.26s ease;
}

.category-visual-caption h3 {
  max-width: 14ch;
  color: #ffffff;
  font-size: 2.35rem;
  line-height: 1;
  text-shadow: 0 18px 42px rgba(8, 12, 34, 0.42);
  transition:
    opacity 0.26s ease,
    transform 0.26s ease,
    filter 0.26s ease;
}

.category-visual-caption.is-switching > span,
.category-visual-caption.is-switching > h3 {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(10px);
}

.category-visual-caption.is-switching .subcategory-chips {
  opacity: 0;
  transform: translateY(8px);
}

.category-control-panel {
  align-self: center;
}

.category-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.spotlight-category-list {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 22px;
}

.spotlight-category-list::before {
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(29, 46, 79, 0.22), transparent);
  content: "";
}

.category-button {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 46px;
  border: 0;
  border-radius: 0;
  padding: 8px 0;
  color: rgba(29, 46, 79, 0.62);
  background: transparent;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.category-button::before {
  position: absolute;
  left: -25px;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green-1), var(--green-3));
  content: "";
  transform: translateY(-50%);
  transition: height 0.2s ease;
}

.category-button::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(29, 46, 79, 0.12), rgba(29, 46, 79, 0));
  content: "";
}

.category-button:last-child::after {
  content: none;
}

.category-button.is-active {
  color: var(--ink);
  transform: translateX(5px);
}

.category-button.is-active {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.category-button.is-active::before {
  height: 30px;
}

.category-button span {
  color: rgba(29, 46, 79, 0.42);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  transition: color 0.2s ease;
}

.category-button.is-active span {
  color: var(--green-3);
  background: transparent;
}

.category-button strong {
  min-width: 0;
  font-size: 1.08rem;
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: 0;
}

.category-button.is-active strong {
  font-size: 1.18rem;
  font-weight: 900;
}

.category-arrows {
  display: grid;
  gap: 12px;
}

.category-arrow {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.96), rgba(0, 174, 187, 0.96)),
    var(--green-2);
  box-shadow:
    0 18px 42px rgba(13, 25, 62, 0.16),
    0 0 0 6px rgba(255, 255, 255, 0.45);
  line-height: 1;
  cursor: pointer;
  transition:
    filter 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.category-arrow::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 48%);
  content: "";
  opacity: 0.72;
}

.category-arrow span {
  position: relative;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.category-arrow[data-category-direction="previous"] span {
  transform: translateY(3px) rotate(45deg);
}

.category-arrow[data-category-direction="next"] span {
  transform: translateY(-3px) rotate(225deg);
}

.category-arrow:hover,
.category-arrow:focus-visible {
  filter: brightness(1.04);
  box-shadow:
    0 22px 54px rgba(13, 25, 62, 0.2),
    0 0 0 7px rgba(28, 223, 115, 0.12);
  transform: translateY(-2px) scale(1.03);
}

.category-arrow:active {
  transform: translateY(0) scale(0.98);
}

.subcategory-chips {
  display: flex;
  flex-wrap: wrap;
  max-width: 620px;
  gap: 7px;
  margin-top: 2px;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.subcategory-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px);
  animation: chipIn 0.48s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--chip-delay);
}

.subcategory-chips span:last-child {
  color: #ffffff;
  background: rgba(28, 223, 115, 0.24);
}

.category-mobile-strip {
  display: none;
}

.category-wanted {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  border-top: 1px solid rgba(29, 46, 79, 0.12);
  padding-top: 30px;
}

.category-wanted-head {
  display: grid;
  gap: 6px;
  max-width: 620px;
}

.category-wanted-head .eyebrow {
  margin: 0;
}

.category-wanted-head h3 {
  color: var(--ink);
  font-size: clamp(1.32rem, 2.2vw, 1.85rem);
}

.category-wanted-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.category-wanted-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-wanted-list li:not(.category-wanted-action),
.category-wanted-action button {
  display: inline-flex;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(29, 46, 79, 0.11);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 26px rgba(13, 25, 62, 0.06);
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.1;
  overflow-wrap: anywhere;
  white-space: normal;
}

.category-wanted-list li[hidden] {
  display: none;
}

.category-wanted-action {
  display: inline-flex;
}

.category-wanted-action button {
  gap: 7px;
  border-color: rgba(21, 201, 167, 0.28);
  color: #08745d;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.category-wanted-action button:hover,
.category-wanted-action button:focus-visible {
  border-color: rgba(21, 201, 167, 0.48);
  color: var(--green-3);
  background: #ffffff;
  outline: none;
  transform: translateX(2px);
}

.category-wanted-action button i {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  color: currentColor;
}

.category-wanted-action button i::before,
.category-wanted-action button i::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease;
}

.category-wanted-action button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.category-wanted-action button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

@keyframes chipIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statPulse {
  0% {
    filter: blur(5px);
    opacity: 0.2;
    transform: translateY(10px) scale(0.96);
  }

  58% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(-3px) scale(1.04);
  }

  100% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 86px);
}

.align-center {
  align-items: center;
}

.gift-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.gift-heading {
  grid-column: 1 / -1;
  max-width: 1120px;
}

.gift-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 330px;
}

.gift-copy p {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.58;
}

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

.info-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(28, 223, 115, 0.24), rgba(0, 174, 187, 0.2));
  font-weight: 900;
}

.hero-benefits {
  display: grid;
  gap: 28px;
  align-self: center;
}

.launch-countdown {
  display: grid;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.launch-countdown > span {
  color: #74f6b4;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-countdown-values {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.launch-countdown-values div {
  display: grid;
  gap: 4px;
  min-width: 72px;
}

.launch-countdown-values strong {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 850;
  line-height: 1;
}

.launch-countdown-values span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-list {
  --process-scale: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 34px;
  left: 42px;
  right: 42px;
  height: 2px;
  background: rgba(29, 46, 79, 0.16);
  content: "";
}

.process-list::after {
  position: absolute;
  top: 34px;
  left: 42px;
  z-index: 0;
  width: calc(100% - 84px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-1), var(--green-3));
  content: "";
  transform: scaleX(var(--process-scale));
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.process-list li {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 92px;
  opacity: 0.42;
  transform: translateY(18px);
  transition:
    opacity 0.34s ease,
    transform 0.34s ease;
}

.process-list span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 8px solid #ffffff;
  border-radius: 50%;
  color: rgba(29, 46, 79, 0.58);
  background: #ffffff;
  box-shadow:
    inset 0 0 0 2px rgba(29, 46, 79, 0.16),
    0 10px 24px rgba(13, 25, 62, 0.1);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  transform: scale(0.84);
  transition:
    color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.process-list li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-list li.is-visible span {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
  box-shadow: 0 16px 38px rgba(13, 25, 62, 0.16);
  transform: scale(1);
}

.process-list h3 {
  max-width: 18ch;
  color: var(--ink);
  font-size: 1.2rem;
}

.process-list p {
  max-width: 24ch;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.redemption-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  margin-top: 40px;
}

.redemption-visual {
  position: sticky;
  top: 104px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(29, 46, 79, 0.09);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 26px 72px rgba(13, 25, 62, 0.13);
}

.redemption-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.redemption-visual figcaption {
  display: grid;
  gap: 12px;
  padding: 20px 22px 22px;
}

.redemption-visual figcaption span {
  color: #08745d;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.redemption-visual figcaption strong {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.2;
}

.redemption-visual figcaption p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.48;
}

.redemption-detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.redemption-detail-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.38;
}

.redemption-detail-list li::before {
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
  content: "";
}

.redemption-options {
  display: grid;
  gap: 14px;
}

.redemption-option {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(29, 46, 79, 0.09);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(13, 25, 62, 0.07);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.redemption-option:hover,
.redemption-option:focus-visible,
.redemption-option.is-active {
  border-color: rgba(21, 201, 167, 0.42);
  background: #ffffff;
  box-shadow:
    0 18px 48px rgba(13, 25, 62, 0.1),
    0 0 0 4px rgba(21, 201, 167, 0.08);
}

.redemption-option:hover,
.redemption-option:focus-visible {
  transform: translateY(-1px);
}

.redemption-option.is-active {
  transform: none;
}

.redemption-option > img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
  background: #eef5fb;
}

.redemption-option > div {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.redemption-option-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.redemption-option-head span {
  color: #08745d;
  font-size: 0.76rem;
  font-weight: 900;
}

.redemption-option h3 {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.18;
}

.redemption-option p {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.45;
}

.redemption-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.redemption-tags span {
  max-width: 100%;
  border: 1px solid rgba(21, 201, 167, 0.2);
  border-radius: 999px;
  padding: 6px 9px;
  color: #08745d;
  background: rgba(232, 251, 243, 0.72);
  font-size: 0.72rem;
  font-weight: 820;
  line-height: 1;
  overflow-wrap: anywhere;
}

@media (min-width: 1041px) {
  .redemption-option {
    position: relative;
    padding-right: 48px;
  }

  .redemption-option::before {
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--green-1), var(--green-3));
    content: "";
    opacity: 0;
    transform: scaleY(0.45);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .redemption-option::after {
    position: absolute;
    right: 16px;
    top: 16px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(29, 46, 79, 0.1);
    border-radius: 50%;
    color: rgba(29, 46, 79, 0.48);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 18px rgba(13, 25, 62, 0.06);
    font-size: 1rem;
    font-weight: 850;
    line-height: 1;
    content: "→";
    transition:
      border-color 0.2s ease,
      color 0.2s ease,
      background 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.2s ease;
  }

  .redemption-option:hover::after,
  .redemption-option:focus-visible::after {
    border-color: rgba(21, 201, 167, 0.34);
    color: #08745d;
    background: rgba(232, 251, 243, 0.94);
    box-shadow: 0 10px 24px rgba(21, 201, 167, 0.14);
    transform: translateX(3px);
  }

  .redemption-option.is-active::before {
    opacity: 1;
    transform: scaleY(1);
  }

  .redemption-option.is-active::after {
    border-color: rgba(21, 201, 167, 0.34);
    color: #ffffff;
    background: linear-gradient(135deg, var(--green-1), var(--green-3));
    box-shadow: 0 10px 24px rgba(21, 201, 167, 0.2);
    content: "✓";
    transform: none;
  }
}

.visual-panel {
  overflow: hidden;
}

.video-panel {
  position: relative;
  align-self: stretch;
  width: 100%;
  min-height: 330px;
  border: 1px solid rgba(29, 46, 79, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.1), rgba(0, 174, 187, 0.08)),
    #071020;
  box-shadow:
    0 30px 86px rgba(13, 25, 62, 0.18),
    0 0 0 8px rgba(255, 255, 255, 0.46);
}

.video-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.video-panel::after {
  position: absolute;
  left: 22px;
  top: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 7px 11px;
  color: #ffffff;
  background: rgba(8, 12, 34, 0.38);
  backdrop-filter: blur(12px);
  content: "Video";
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.video-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.visual-panel img {
  width: 100%;
  height: min(470px, 52vw);
  object-fit: cover;
  object-position: 62% 50%;
}

.bonus-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(21, 201, 167, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.14), rgba(0, 174, 187, 0.08)),
    #ffffff;
  box-shadow: 0 16px 42px rgba(13, 25, 62, 0.08);
}

.gift-bonus {
  grid-column: 1 / -1;
  width: min(100%, 760px);
  justify-self: center;
  margin-top: 0;
}

.bonus-number {
  position: relative;
  display: inline-grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
  box-shadow: 0 14px 34px rgba(21, 201, 167, 0.32);
  font-size: 2.15rem;
  font-weight: 950;
  line-height: 1;
  animation: bonusPop 2.7s ease-in-out infinite;
}

.bonus-number::after {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(21, 201, 167, 0.26);
  border-radius: 24px;
  content: "";
  animation: bonusRing 2.7s ease-in-out infinite;
}

.bonus-text {
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.34;
}

@keyframes bonusPop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  38% {
    transform: translateY(-4px) scale(1.06);
  }

  52% {
    transform: translateY(0) scale(0.98);
  }
}

@keyframes bonusRing {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.88);
  }

  42% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.mini-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.mini-grid p {
  margin-top: 8px;
  font-size: 0.94rem;
}

.gift-feature-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1120px);
  justify-self: center;
  margin: 18px auto 0;
}

.gift-feature-grid div {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  padding: 24px;
  border-color: rgba(29, 46, 79, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98)),
    #ffffff;
  box-shadow: 0 16px 42px rgba(13, 25, 62, 0.08);
}

.gift-feature-grid div::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green-1), var(--green-3));
  content: "";
}

.gift-feature-grid h3 {
  color: var(--ink);
  font-size: 1.05rem;
}

.gift-feature-grid p {
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 74px rgba(13, 25, 62, 0.16);
  backdrop-filter: blur(14px);
}

.conditions-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(30px, 5vw, 58px);
}

.conditions-layout .section-heading {
  max-width: 900px;
}

.conditions-layout .eyebrow,
.conditions-layout .section-heading h2 {
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(13, 25, 62, 0.3);
}

.conditions-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 3vw, 34px);
  width: min(100%, var(--container));
  margin-inline: auto;
  align-items: start;
}

.commission-highlight {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  padding: 18px;
  border: 1px solid rgba(21, 201, 167, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.11), rgba(0, 174, 187, 0.07)),
    #ffffff;
  box-shadow: 0 14px 38px rgba(13, 25, 62, 0.07);
}

.commission-highlight span,
.example-head span,
.example-flow span,
.commission-result span {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commission-highlight strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.15;
}

.commission-highlight p {
  color: var(--ink);
  font-weight: 400;
}

.reveal-table tbody tr {
  opacity: 0;
  transform: translateY(14px);
}

.reveal-table.is-visible tbody tr {
  animation: tableRowIn 0.78s ease forwards;
}

.reveal-table.is-visible tbody tr:nth-child(1) {
  animation-delay: 0.08s;
}

.reveal-table.is-visible tbody tr:nth-child(2) {
  animation-delay: 0.22s;
}

.reveal-table.is-visible tbody tr:nth-child(3) {
  animation-delay: 0.36s;
}

.reveal-table.is-visible tbody tr:nth-child(4) {
  animation-delay: 0.5s;
}

.reveal-table.is-visible tbody tr:nth-child(5) {
  animation-delay: 0.64s;
}

.reveal-table.is-visible tbody tr:nth-child(6) {
  animation-delay: 0.78s;
}

.reveal-table.is-visible tbody tr:nth-child(7) {
  animation-delay: 0.92s;
}

@keyframes tableRowIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

th {
  width: 46%;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

td {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.table-note {
  padding: 17px 20px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.13), rgba(0, 174, 187, 0.08)),
    var(--mint);
  font-weight: 800;
  text-align: center;
}

.commission-example {
  position: relative;
  display: block;
  min-height: 100%;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(29, 46, 79, 0.12);
  border-radius: 24px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 74px rgba(13, 25, 62, 0.1);
}

.commission-example > * {
  position: relative;
  z-index: 1;
}

.commission-example-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}

.commission-example-nav button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(21, 201, 167, 0.26);
  border-radius: 999px;
  color: #08745d;
  background:
    linear-gradient(135deg, rgba(232, 251, 243, 0.95), rgba(239, 245, 251, 0.82)),
    #ffffff;
  box-shadow: 0 10px 24px rgba(13, 25, 62, 0.08);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.commission-example-nav button:hover,
.commission-example-nav button:focus-visible {
  border-color: rgba(21, 201, 167, 0.5);
  box-shadow: 0 14px 32px rgba(21, 201, 167, 0.16);
  transform: translateY(-1px);
}

.commission-examples-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 4px 16px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.commission-example-card {
  display: grid;
  flex: 0 0 min(94%, 700px);
  gap: clamp(18px, 2.2vw, 26px);
  align-content: start;
  border: 1px solid rgba(29, 46, 79, 0.1);
  border-radius: 22px;
  padding: clamp(16px, 2vw, 22px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 252, 0.82)),
    #ffffff;
  box-shadow: 0 16px 42px rgba(13, 25, 62, 0.08);
  scroll-snap-align: start;
}

.example-head {
  display: grid;
  gap: 8px;
  justify-items: start;
  border: 1px solid rgba(29, 46, 79, 0.09);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(13, 25, 62, 0.05);
  text-align: left;
  backdrop-filter: blur(6px);
}

.example-head strong {
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 1.88rem);
  line-height: 1.12;
}

.example-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}

.example-flow div {
  display: grid;
  gap: 14px;
  min-height: 136px;
  align-content: space-between;
  justify-items: start;
  border: 1px solid rgba(29, 46, 79, 0.1);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 38px rgba(13, 25, 62, 0.07);
  backdrop-filter: blur(5px);
  text-align: left;
}

.example-flow strong {
  color: var(--ink);
  font-size: clamp(1.72rem, 3vw, 2.18rem);
  line-height: 1;
}

.example-flow .is-muted {
  background: rgba(246, 248, 251, 0.64);
}

.example-flow .is-muted strong {
  color: var(--green-3);
}

.commission-result {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 22px;
  margin-top: 0;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(29, 46, 79, 0.92), rgba(39, 77, 130, 0.86));
  backdrop-filter: blur(8px);
}

.commission-result::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(28, 223, 115, 0.2), transparent 28%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
  pointer-events: none;
}

.commission-result span,
.commission-result p {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.commission-result span {
  grid-column: 1 / -1;
}

.commission-result strong {
  position: relative;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 1;
}

.commission-result em {
  position: relative;
  width: fit-content;
  margin-top: 0;
  border: 1px solid rgba(28, 223, 115, 0.58);
  border-radius: 999px;
  padding: 10px 15px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.34), rgba(0, 174, 187, 0.26)),
    rgba(28, 223, 115, 0.2);
  box-shadow:
    0 0 0 0 rgba(28, 223, 115, 0.28),
    0 14px 34px rgba(28, 223, 115, 0.16);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  animation: effectivePulse 3s ease-in-out infinite;
}

.commission-result p {
  grid-column: 1 / -1;
  position: relative;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 16px;
  font-weight: 400;
  line-height: 1.55;
}

@keyframes effectivePulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 0 0 0 rgba(28, 223, 115, 0.2),
      0 14px 34px rgba(28, 223, 115, 0.16);
  }

  50% {
    transform: translateY(-2px);
    box-shadow:
      0 0 0 7px rgba(28, 223, 115, 0.08),
      0 18px 42px rgba(28, 223, 115, 0.24);
  }
}

.ad-comparison {
  display: grid;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-top: 6px;
}

.ad-comparison-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 58px);
  align-items: start;
}

.ad-comparison-content {
  display: grid;
  gap: clamp(24px, 3.2vw, 38px);
  min-width: 0;
}

.ad-comparison-head {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.ad-comparison-head h2 {
  color: var(--ink);
}

.ad-comparison-head p:not(.eyebrow) {
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  font-weight: 400;
  line-height: 1.5;
}

.ad-comparison-matrix {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(29, 46, 79, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 56px rgba(13, 25, 62, 0.08);
}

.ad-matrix-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.58fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
  padding: clamp(20px, 2.5vw, 30px);
}

.ad-matrix-row + .ad-matrix-row {
  border-top: 1px solid rgba(29, 46, 79, 0.09);
}

.ad-matrix-head {
  align-items: center;
  padding-block: 18px;
  background:
    linear-gradient(135deg, rgba(21, 201, 167, 0.12), rgba(0, 174, 187, 0.08)),
    #1d2e4f;
}

.ad-matrix-logo-head {
  display: inline-flex;
  align-items: center;
}

.ad-matrix-logo-head img {
  width: auto;
  height: 30px;
  max-width: 190px;
  object-fit: contain;
}

.ad-matrix-row span {
  color: rgba(29, 46, 79, 0.68);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.16;
  text-transform: uppercase;
}

.ad-matrix-row strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.18;
}

.ad-matrix-head span,
.ad-matrix-head strong {
  color: rgba(255, 255, 255, 0.92);
}

.ad-matrix-row p {
  position: relative;
  margin: 0;
  color: rgba(29, 46, 79, 0.74);
  font-weight: 520;
  line-height: 1.5;
}

.ad-matrix-row p:last-child {
  color: var(--ink);
  font-weight: 740;
}

.ad-matrix-row p:last-child::before {
  position: absolute;
  left: -17px;
  top: 0.3em;
  width: 5px;
  height: calc(100% - 0.6em);
  min-height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green-1), var(--green-3));
  content: "";
}

.ad-comparison-board {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.08fr);
  gap: 0;
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(29, 46, 79, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(13, 25, 62, 0.08);
}

.ad-compare-column {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
  min-height: 100%;
  padding: clamp(22px, 3vw, 32px);
}

.ad-compare-column.is-traditional {
  color: rgba(29, 46, 79, 0.76);
  background:
    linear-gradient(180deg, rgba(29, 46, 79, 0.045), rgba(29, 46, 79, 0.02)),
    rgba(255, 255, 255, 0.6);
}

.ad-compare-column.is-myway {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.2), rgba(0, 174, 187, 0.13)),
    rgba(255, 255, 255, 0.86);
  box-shadow: inset 1px 0 0 rgba(29, 46, 79, 0.1);
}

.ad-compare-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(29, 46, 79, 0.76);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(29, 46, 79, 0.08);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.ad-compare-column.is-myway .ad-compare-kicker {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.ad-compare-column h3 {
  color: var(--ink);
  font-size: clamp(1.26rem, 2.1vw, 1.78rem);
  line-height: 1.08;
}

.ad-compare-column.is-traditional h3 {
  color: rgba(29, 46, 79, 0.8);
}

.ad-compare-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ad-compare-column li {
  position: relative;
  min-height: 24px;
  padding-left: 32px;
  color: var(--ink);
  font-size: 0.97rem;
  font-weight: 650;
  line-height: 1.45;
}

.ad-compare-column.is-traditional li {
  color: rgba(29, 46, 79, 0.68);
}

.ad-compare-column li::before {
  position: absolute;
  left: 7px;
  top: 10px;
  display: inline-flex;
  width: 8px;
  height: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(29, 46, 79, 0.08);
  color: rgba(29, 46, 79, 0.58);
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
  content: "";
}

.ad-compare-column.is-myway li::before {
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
  color: #ffffff;
  content: "✓";
}

.ad-comparison-result {
  display: grid;
  gap: 8px;
  max-width: 850px;
  padding: 0;
}

.ad-comparison-result span {
  color: rgba(29, 46, 79, 0.64);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.ad-comparison-result strong {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.18;
}

.ad-comparison-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(29, 46, 79, 0.08);
  box-shadow: 0 26px 70px rgba(13, 23, 49, 0.16);
}

.ad-comparison-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(28, 223, 115, 0.18), transparent 32%);
  content: "";
}

.ad-comparison-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ad-comparison-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  padding: 9px 13px;
  color: #ffffff;
  background: rgba(29, 46, 79, 0.76);
  box-shadow: 0 16px 34px rgba(13, 25, 62, 0.22);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.12;
}

.ad-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 38px;
  align-items: center;
}

.brand-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(29, 46, 79, 0.1);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(13, 25, 62, 0.06);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.brand-pill i {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.google-ads-mark i {
  border-radius: 5px;
  background:
    linear-gradient(135deg, #4285f4 0 42%, transparent 42%),
    linear-gradient(45deg, #34a853 0 46%, transparent 46%),
    radial-gradient(circle at 70% 72%, #fbbc04 0 27%, transparent 28%);
}

.meta-mark i::before,
.meta-mark i::after {
  position: absolute;
  top: 5px;
  width: 12px;
  height: 8px;
  border: 3px solid #0866ff;
  border-radius: 999px;
  content: "";
}

.meta-mark i::before {
  left: -1px;
  transform: rotate(-28deg);
}

.meta-mark i::after {
  right: -1px;
  transform: rotate(28deg);
}

.myway-mark {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
}

.myway-mark i {
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    #ffffff;
}

.myway-mark i::before {
  position: absolute;
  left: 3px;
  right: 3px;
  top: 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.myway-logo-pill {
  display: inline-flex;
  width: min(100%, 270px);
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(29, 46, 79, 0.1);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(13, 25, 62, 0.08);
}

.myway-logo-pill img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.comparison-result-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d2e4f, #274d82);
  box-shadow: 0 12px 28px rgba(13, 25, 62, 0.16);
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1;
}

.package-overview {
  grid-column: 1 / -1;
  display: grid;
  gap: 34px;
}

.package-heading {
  display: grid;
  gap: 16px;
  max-width: 860px;
}

.package-heading p {
  color: var(--ink);
  font-weight: 400;
}

.package-highlight {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(100%, 760px);
  justify-items: start;
  margin-top: 0;
  padding: 6px 0 22px;
  color: var(--ink);
  text-align: left;
}

.package-highlight::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, var(--green-1), var(--green-3), transparent);
  background-size: 220% 100%;
  content: "";
  animation: packageLineFlow 3.6s linear infinite;
}

.package-highlight::after {
  display: none;
}

.package-highlight strong {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.4vw, 36px);
  color: var(--ink);
  line-height: 1;
}

.package-highlight-count {
  display: grid;
  gap: 3px;
  min-width: max-content;
  padding-right: clamp(18px, 3.4vw, 36px);
  border-right: 1px solid rgba(29, 46, 79, 0.18);
  color: var(--ink);
  line-height: 1;
  text-align: center;
}

.package-highlight-count small {
  color: rgba(29, 46, 79, 0.72);
  font-size: clamp(0.9rem, 1.5vw, 1.08rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-highlight em,
.package-highlight b {
  font-style: normal;
  font-weight: 950;
}

.package-highlight em {
  display: block;
  min-width: max-content;
  background: linear-gradient(135deg, var(--green-1), var(--green-3), #2b4a91);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(3.7rem, 8vw, 6.4rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 12px 30px rgba(28, 223, 115, 0.14);
  animation:
    packageNumberPop 3.4s ease-in-out infinite,
    packageGradientFlow 6.4s ease-in-out infinite;
}

.package-highlight-copy {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: clamp(1.12rem, 2.4vw, 1.85rem);
  line-height: 1.1;
  font-weight: 900;
  text-align: left;
}

.package-highlight-copy small {
  color: rgba(29, 46, 79, 0.68);
  font-size: clamp(0.88rem, 1.4vw, 1.02rem);
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.package-highlight b {
  display: block;
  color: var(--green-3);
  max-width: 360px;
}

@keyframes packageNumberPop {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.045);
  }
}

@keyframes packageGradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

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

@keyframes packageLineFlow {
  0% {
    background-position: 0% 50%;
  }

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

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

.package-card {
  position: relative;
  display: grid;
  gap: 22px;
  align-content: start;
  min-height: 0;
  padding: 26px;
  border: 1px solid rgba(29, 46, 79, 0.12);
  border-radius: 20px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 20px 58px rgba(13, 25, 62, 0.09);
}

.package-card-featured {
  color: #ffffff;
  background:
    linear-gradient(155deg, rgba(9, 12, 31, 0.98), rgba(32, 57, 126, 0.95)),
    var(--brand-bg);
  box-shadow: 0 30px 86px rgba(13, 25, 62, 0.22);
}

.package-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 9px 18px;
  color: #ffffff;
  background: var(--amber);
  box-shadow: 0 12px 28px rgba(246, 183, 60, 0.34);
  font-weight: 900;
}

.package-card h3 {
  margin: 0;
  color: inherit;
  font-size: 2rem;
  line-height: 1;
}

.package-price {
  display: grid;
  gap: 6px;
}

.package-price span {
  color: currentColor;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-price strong {
  color: inherit;
  font-size: clamp(2.25rem, 4vw, 3.05rem);
  line-height: 1;
}

.package-price .old-price {
  width: fit-content;
  color: rgba(29, 46, 79, 0.52);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

.package-price .launch-price {
  width: fit-content;
  color: var(--green-3);
  font-size: clamp(2.55rem, 5vw, 3.65rem);
}

.package-price small {
  color: currentColor;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.78;
}

.package-toggle {
  display: grid;
  gap: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.package-toggle > summary {
  width: fit-content;
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.package-toggle > summary::-webkit-details-marker {
  display: none;
}

.package-toggle > summary:hover,
.package-toggle > summary:focus-visible {
  color: #08745d;
  outline: none;
  transform: translateX(2px);
}

.package-toggle > summary i {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 0;
  background: transparent;
}

.package-toggle > summary i::before,
.package-toggle > summary i::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease;
}

.package-toggle > summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.package-toggle[open] > summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

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

.package-card li {
  position: relative;
  padding-left: 24px;
  color: currentColor;
  font-weight: 400;
  line-height: 1.34;
}

.package-card li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
  content: "";
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.check-grid span,
.category-list span {
  position: relative;
  min-height: 52px;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-weight: 500;
}

.check-grid span::before,
.category-list span::before {
  position: absolute;
  left: 16px;
  top: 17px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-2);
  content: "";
}

.section-note {
  max-width: 880px;
  margin-top: 22px;
  color: var(--ink);
  font-weight: 400;
}

.launch-partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.launch-partner-section .check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.launch-image-panel {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 28px 86px rgba(13, 25, 62, 0.16),
    0 0 0 8px rgba(255, 255, 255, 0.42);
}

.launch-image-panel::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.launch-image-panel img {
  width: 100%;
  height: min(560px, 52vw);
  object-fit: cover;
  object-position: 50% 42%;
}

.split-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 248, 0.94));
  backdrop-filter: blur(10px);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.category-list span {
  min-height: 0;
  padding: 10px 14px 10px 36px;
}

.category-list span::before {
  left: 14px;
  top: 15px;
  width: 10px;
  height: 10px;
  background: var(--amber);
}

.redeem-panel {
  padding: clamp(24px, 4vw, 36px);
}

.redeem-panel ol {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 820;
}

details p {
  padding: 0 20px 20px;
}

.registration-section {
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.08), transparent 34%),
    var(--surface);
  backdrop-filter: blur(10px);
}

.registration-layout {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
}

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

.registration-choice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  margin-top: 2px;
  color: var(--ink);
  font-weight: 500;
}

.registration-choice a {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--green-3);
  background: rgba(232, 251, 243, 0.72);
  font-weight: 950;
  box-shadow: 0 0 0 0 rgba(21, 201, 167, 0.26);
  animation: directSignupPulse 2.4s ease-in-out infinite;
}

.registration-choice a::after {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: -3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-1), var(--green-3));
  content: "";
}

@keyframes directSignupPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(21, 201, 167, 0.22);
    transform: translateY(0);
  }

  48% {
    box-shadow: 0 0 0 7px rgba(21, 201, 167, 0.08);
    transform: translateY(-1px);
  }
}

.handdrawn-arrow {
  display: inline-flex;
  width: 74px;
  height: 30px;
  margin-left: 4px;
  color: #e53935;
  transform: rotate(-2deg);
  animation: arrow-nudge 1800ms cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.handdrawn-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.handdrawn-arrow-line,
.handdrawn-arrow-head {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.4;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.72));
}

.handdrawn-arrow-head {
  stroke-width: 4.1;
}

@keyframes arrow-nudge {
  0%,
  46%,
  100% {
    transform: translateX(0) rotate(-2deg);
  }

  58% {
    transform: translateX(-7px) rotate(-4deg);
  }

  70% {
    transform: translateX(0) rotate(-2deg);
  }

  80% {
    transform: translateX(-4px) rotate(-3deg);
  }
}

main > section:nth-of-type(n + 2):not(.final-cta) {
  border-top: 1px solid rgba(29, 46, 79, 0.08);
  background: var(--section-white);
  backdrop-filter: blur(10px);
}

main > section:nth-of-type(odd):not(.hero):not(.final-cta) {
  background:
    linear-gradient(180deg, rgba(239, 245, 251, 0.98), rgba(232, 240, 248, 0.96)),
    var(--section-tint);
}

main > section.packages-section {
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(238, 245, 251, 0.96)),
    var(--section-white);
}

.partner-form {
  width: min(100%, 1040px);
  margin-inline: auto;
  padding: clamp(20px, 3vw, 34px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd8d2;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(21, 201, 167, 0.14);
  outline: none;
}

fieldset {
  margin: 0;
  border: 1px solid #cbd8d2;
  border-radius: var(--radius);
  padding: 14px;
}

legend {
  padding: 0 6px;
}

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

.radio-grid label,
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}

.radio-grid input,
.checkbox-row input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 0.15em;
  accent-color: var(--green-2);
}

.full-span,
fieldset {
  grid-column: 1 / -1;
}

.checkbox-row {
  margin-top: 18px;
  color: var(--ink);
  line-height: 1.45;
}

.form-required-note {
  margin-top: 12px;
  color: rgba(29, 46, 79, 0.64);
  font-size: 0.82rem;
  line-height: 1.3;
}

.submit-btn {
  width: auto;
  min-width: 190px;
  max-width: 100%;
  margin-top: 22px;
  padding-inline: 26px;
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  filter: grayscale(0.2);
}

.success-message {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(21, 201, 167, 0.4);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--mint);
  font-weight: 500;
}

.success-message.is-error {
  border-color: rgba(196, 57, 57, 0.32);
  background: rgba(255, 238, 238, 0.96);
}

.final-cta {
  padding: clamp(74px, 10vw, 128px) 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 9, 25, 0.9), rgba(25, 55, 133, 0.76)),
    var(--brand-bg-image) center / cover no-repeat,
    var(--brand-bg);
}

.final-cta-inner {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 760px;
  text-align: left;
}

.final-cta h2,
.final-cta p,
.final-cta small,
.final-cta .eyebrow {
  color: #ffffff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

.site-footer {
  padding: 26px 0;
  background:
    linear-gradient(135deg, rgba(7, 9, 25, 0.94), rgba(13, 25, 62, 0.86)),
    var(--brand-bg-image) center / cover no-repeat,
    var(--brand-bg);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.94rem;
}

@media (max-width: 1040px) {
  html {
    scroll-padding-top: calc(var(--topbar-height) + 128px);
  }

  body {
    background-attachment: scroll;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 14px;
    align-items: center;
  }

  .brand-logo {
    max-width: min(48vw, 300px);
  }

  .hero-top {
    gap: clamp(34px, 5vw, 54px);
  }

  .hero h1 {
    font-size: clamp(3rem, 6.2vw, 4.8rem);
  }

  .hero-copy {
    font-size: clamp(1rem, 1.8vw, 1.22rem);
  }

  .launch-countdown-values {
    gap: 14px;
  }

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

  .stat-card {
    padding: 18px;
  }

  .stat-card strong {
    font-size: clamp(2.1rem, 3.8vw, 2.65rem);
  }

  .benefit-grid,
  .process-list,
  .check-grid,
  .gift-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .redemption-layout {
    grid-template-columns: 1fr;
  }

  .redemption-visual {
    position: relative;
    top: auto;
  }

  .process-list::before {
    display: none;
  }

  .process-list::after {
    display: none;
  }

  .process-list li {
    padding-top: 82px;
  }

  .category-showcase {
    grid-template-columns: minmax(0, 1fr);
  }

  .category-control-panel {
    width: 100%;
  }

  .category-picker {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .spotlight-category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
  }

  .category-visual {
    min-height: 420px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .package-card {
    min-height: 0;
    padding: 22px;
  }

  .package-card li {
    font-size: 0.94rem;
  }

  .package-price strong {
    font-size: clamp(2rem, 3.6vw, 2.65rem);
  }

  .package-price .launch-price {
    font-size: clamp(2.25rem, 4.2vw, 3.1rem);
  }

  .conditions-panel {
    grid-template-columns: 1fr;
    width: min(100%, 860px);
  }

  .commission-examples-track {
    flex-direction: column;
    max-height: 720px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 6px;
    scroll-snap-type: y proximity;
  }

  .commission-example-card {
    flex-basis: auto;
  }

  .commission-example-nav {
    display: none;
  }

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

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

  .ad-compare-column.is-myway {
    box-shadow: inset 0 1px 0 rgba(29, 46, 79, 0.1);
  }

  .ad-comparison-visual {
    max-width: 760px;
    width: 100%;
  }

  .ad-comparison-visual img {
    aspect-ratio: 16 / 9;
  }

  .gift-layout {
    grid-template-columns: 1fr;
  }

  .gift-copy {
    min-height: 0;
  }

  .video-panel {
    min-height: 420px;
  }

  .launch-partner-layout {
    grid-template-columns: 1fr;
  }

  .launch-image-panel img {
    height: 460px;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 2px 4px;
    margin-inline: -2px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav-links a {
    flex: 0 0 auto;
    min-height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 11px;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.11);
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: calc(var(--topbar-height) + 132px);
  }

  .hero {
    min-height: auto;
    padding: calc(128px + var(--topbar-height)) 0 56px;
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8.2vw, 4rem);
  }

  .hero-benefits {
    max-width: 620px;
  }

  .hero-points {
    gap: 12px 18px;
  }

  .redemption-option {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: calc(var(--topbar-height) + 132px);
  }

  .launch-topbar {
    min-height: var(--topbar-height);
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .launch-topbar-state {
    min-width: 30ch;
    gap: 8px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 10px;
    padding: 9px 12px;
  }

  .brand-logo {
    max-width: 48vw;
  }

  .nav-links {
    gap: 7px;
    padding-bottom: 3px;
    font-size: 0.76rem;
  }

  .nav-links a {
    min-height: 30px;
    padding: 7px 10px;
  }

  .header-cta {
    min-height: 36px;
    max-width: 42vw;
    padding: 9px 11px;
    font-size: 0.75rem;
    line-height: 1.08;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: calc(138px + var(--topbar-height)) 0 42px;
    background:
      linear-gradient(180deg, rgba(7, 9, 25, 0.96) 0%, rgba(13, 25, 62, 0.88) 68%, rgba(13, 25, 62, 0.68) 100%),
      var(--brand-bg-image) center / cover no-repeat,
      var(--brand-bg);
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-text > * {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.2vw, 3rem);
    line-height: 1.02;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-copy span {
    margin-top: 0.75em;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-points {
    gap: 8px;
    font-size: 0.86rem;
  }

  .hero-points li {
    min-height: 54px;
    padding: 12px 12px 12px 36px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
  }

  .hero-points li::before {
    left: 12px;
    top: 15px;
    font-size: 0.92rem;
  }

  .hero-video {
    border-radius: 16px;
  }

  .hero-actions,
  .hero-actions .primary-cta,
  .hero-actions .secondary-cta {
    width: 100%;
  }

  .stats-grid,
  .process-list,
  .check-grid,
  .launch-partner-section .check-grid,
  .example-flow,
  .mini-grid,
  .gift-feature-grid,
  .form-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

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

  .stats-section,
  .category-section,
  .redemption-section,
  .process-section,
  .conditions-section,
  .ad-comparison-section,
  .packages-section,
  .faq-section,
  .registration-section,
  .split-band,
  .band {
    padding: 44px 0;
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading p {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .eyebrow {
    margin-bottom: 6px;
    font-size: 0.7rem;
  }

  .hero-benefits {
    gap: 22px;
  }

  .launch-countdown-values {
    gap: 16px;
  }

  .launch-countdown-values strong {
    font-size: 1.7rem;
  }

  .process-list {
    gap: 18px;
    margin-top: 30px;
  }

  .process-list::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 34px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-list::after {
    display: block;
    top: 0;
    bottom: auto;
    left: 34px;
    width: 2px;
    max-width: none;
    height: 100%;
    max-height: 100%;
    transform: scaleY(var(--process-scale));
    transform-origin: center top;
    transition: transform 0.28s ease;
  }

  .process-list li {
    min-height: 78px;
    padding: 0 0 0 82px;
  }

  .process-list span {
    width: 58px;
    height: 58px;
    border-width: 6px;
  }

  .process-list h3,
  .process-list p {
    max-width: 100%;
  }

  .stat-card {
    min-height: 132px;
    gap: 10px;
    padding: 18px;
  }

  .stat-card strong {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .stat-label {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .stat-kicker {
    font-size: 0.64rem;
  }

  .category-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-visual {
    min-height: 330px;
    border-radius: 20px;
  }

  .category-visual-caption h3 {
    font-size: 1.85rem;
  }

  .spotlight-category-list {
    grid-template-columns: 1fr;
    max-height: 290px;
    overflow-y: auto;
    padding-right: 6px;
  }

  .category-picker {
    gap: 12px;
  }

  .category-button.is-active {
    transform: translateX(4px);
  }

  .category-arrows {
    align-self: start;
    position: sticky;
    top: 8px;
  }

  .category-arrow {
    width: 42px;
    height: 42px;
  }

  .category-arrow span {
    width: 10px;
    height: 10px;
    border-top-width: 2px;
    border-left-width: 2px;
  }

  .category-button strong {
    font-size: 1rem;
  }

  .category-button.is-active strong {
    font-size: 1.08rem;
  }

  .subcategory-chips {
    gap: 8px;
  }

  .subcategory-chips span {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 0.76rem;
  }

  .conditions-panel {
    gap: 18px;
  }

  .table-wrap {
    border-radius: 18px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  table {
    display: block;
    min-width: 0;
  }

  tbody {
    display: grid;
    gap: 8px;
  }

  tr {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(29, 46, 79, 0.1);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(13, 25, 62, 0.06);
  }

  th,
  td {
    display: block;
    padding: 0;
    border: 0;
    text-align: left;
  }

  th {
    width: auto;
    color: rgba(29, 46, 79, 0.72);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  td {
    font-size: 1rem;
    line-height: 1.28;
  }

  .table-note {
    margin-top: 10px;
    border-radius: 14px;
    padding: 14px;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .commission-highlight {
    padding: 15px;
  }

  .commission-example {
    border-radius: 18px;
    gap: 18px;
    padding: 18px;
  }

  .commission-examples-track {
    max-height: 640px;
  }

  .example-head {
    padding: 16px;
  }

  .example-flow div {
    min-height: 0;
    gap: 10px;
    padding: 18px;
  }

  .commission-result {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .commission-result em {
    white-space: normal;
    line-height: 1.2;
  }

  .ad-comparison {
    padding-top: 0;
  }

  .ad-comparison-content {
    gap: 18px;
  }

  .ad-comparison-visual {
    border-radius: 22px;
  }

  .ad-comparison-visual img {
    aspect-ratio: 4 / 3;
  }

  .ad-comparison-board {
    border-radius: 18px;
  }

  .ad-comparison-matrix {
    border-radius: 18px;
  }

  .ad-matrix-head {
    display: none;
  }

  .ad-matrix-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .ad-matrix-row p {
    padding-left: 0;
  }

  .ad-matrix-row p::before {
    display: block;
    position: static;
    width: auto;
    height: auto;
    min-height: 0;
    margin-bottom: 5px;
    border-radius: 0;
    background: none;
    color: rgba(29, 46, 79, 0.58);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .ad-matrix-row p:first-of-type::before {
    content: "Google Ads / Meta Ads";
  }

  .ad-matrix-row p:last-child::before {
    display: block;
    position: static;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    min-height: 0;
    margin-bottom: 5px;
    border-radius: 0;
    background: none;
    color: rgba(29, 46, 79, 0.58);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
    content: "my-waycard.com";
  }

  .ad-compare-column {
    gap: 14px;
    padding: 20px;
  }

  .ad-compare-column h3 {
    font-size: 1.18rem;
  }

  .ad-compare-column li {
    font-size: 0.93rem;
  }

  .ad-comparison-result {
    padding: 0;
  }

  .section-heading.narrow {
    text-align: left;
  }

  .package-highlight strong {
    display: grid;
    justify-items: center;
    gap: 10px;
  }

  .package-highlight-count {
    padding-right: 0;
    border-right: 0;
  }

  .package-highlight em {
    font-size: clamp(3.7rem, 16vw, 5.4rem);
  }

  .package-highlight-copy {
    text-align: center;
  }

  .visual-panel img {
    height: 280px;
  }

  .video-panel {
    min-height: 240px;
  }

  .launch-image-panel {
    border-radius: 18px;
  }

  .launch-image-panel img {
    height: 360px;
  }

  .video-panel {
    border-radius: 18px;
    box-shadow:
      0 22px 58px rgba(13, 25, 62, 0.16),
      0 0 0 5px rgba(255, 255, 255, 0.5);
  }

  .video-panel::after {
    left: 14px;
    top: 14px;
  }

  .bonus-callout {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .bonus-number {
    width: 74px;
    height: 74px;
    font-size: 1.85rem;
  }

  .gift-feature-grid div {
    min-height: 0;
    padding: 20px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .package-card {
    gap: 16px;
    padding: 20px;
  }

  .package-badge {
    top: -14px;
    padding: 8px 14px;
    font-size: 0.86rem;
  }

  .launch-partner-section .check-grid {
    grid-template-columns: 1fr;
  }

  .partner-form {
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(13, 25, 62, 0.08);
  }

  .registration-choice {
    line-height: 1.45;
  }

  .handdrawn-arrow {
    width: 62px;
    height: 26px;
    margin-left: 0;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  label,
  fieldset {
    gap: 7px;
    font-size: 0.9rem;
  }

  fieldset {
    padding: 12px;
  }

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

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .container,
  .hero-content {
    width: min(100% - 24px, var(--container));
  }

  .brand-logo {
    height: 32px;
    max-width: 44vw;
  }

  .header-cta {
    max-width: 44vw;
    padding-inline: 9px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(1.88rem, 9vw, 2.12rem);
  }

  h2 {
    font-size: 1.78rem;
  }

  .primary-cta,
  .secondary-cta {
    padding-inline: 18px;
  }

  .hero {
    padding-top: calc(136px + var(--topbar-height));
  }

  .hero-points,
  .stats-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-points li {
    min-height: 0;
  }

  .hero-video {
    border-radius: 14px;
  }

  .redemption-layout {
    gap: 20px;
    margin-top: 28px;
  }

  .redemption-visual {
    border-radius: 16px;
  }

  .redemption-visual figcaption {
    padding: 16px;
  }

  .redemption-visual figcaption strong {
    font-size: 1.05rem;
  }

  .redemption-option {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    border-radius: 14px;
    padding: 10px;
  }

  .redemption-option > img {
    border-radius: 10px;
  }

  .redemption-option h3 {
    font-size: 1rem;
  }

  .redemption-option p {
    font-size: 0.9rem;
  }

  .stat-card {
    min-height: 118px;
    padding: 18px;
  }

  .stat-card strong {
    font-size: 2.45rem;
  }

  .launch-countdown-values {
    gap: 8px;
  }

  .launch-countdown-values div {
    min-width: 62px;
  }

  .launch-countdown-values strong {
    font-size: 1.42rem;
  }

  .launch-countdown-values span {
    font-size: 0.62rem;
  }

  .category-visual {
    min-height: 330px;
  }

  .category-visual-caption {
    padding: 18px;
  }

  .category-visual-caption h3 {
    font-size: 1.55rem;
  }

  .subcategory-chips span {
    font-size: 0.7rem;
  }

  .category-wanted {
    gap: 16px;
    margin-top: 30px;
    padding-top: 24px;
  }

  .category-wanted-list {
    gap: 7px;
  }

  .category-wanted-list li {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .category-wanted-action button {
    min-height: 32px;
    padding: 8px 11px;
    font-size: 0.8rem;
  }

  th,
  td {
    font-size: 0.9rem;
  }

  tr {
    padding: 13px 14px;
  }

  .example-head strong {
    font-size: 1.35rem;
  }

  .commission-result strong {
    font-size: 2rem;
  }

  .package-highlight {
    width: 100%;
  }

  .package-highlight em {
    font-size: clamp(3.1rem, 17vw, 4.5rem);
  }

  .package-highlight-copy {
    font-size: 1.1rem;
  }

  .package-card h3 {
    font-size: 1.72rem;
  }

  .package-card li {
    font-size: 0.92rem;
  }

  .ad-compare-column {
    padding: 18px;
  }

  .ad-comparison-visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    border-radius: 14px;
    font-size: 0.78rem;
  }

  .launch-image-panel img {
    height: 300px;
  }

  .partner-form {
    padding: 18px;
  }

  .checkbox-row {
    align-items: flex-start;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .language-toggle {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .header-cta {
    display: none;
  }

  .hero-points {
    display: none;
  }

  .hero-top,
  .hero-text {
    display: contents;
  }

  .hero h1 {
    order: 1;
  }

  .hero-copy {
    order: 2;
  }

  .hero-video {
    order: 3;
    margin-top: 22px;
    border-radius: 18px;
  }

  .hero-actions {
    order: 4;
    margin-top: 20px;
  }

  .hero-benefits {
    order: 5;
    justify-self: center;
    width: min(100%, 380px);
    text-align: center;
  }

  .launch-countdown {
    justify-items: center;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .launch-countdown-values {
    justify-content: center;
  }

  .launch-countdown-values div {
    justify-items: center;
  }

  .category-backgrounds,
  .category-showcase {
    display: none;
  }

  .commission-examples-track {
    display: block;
    max-height: none;
    overflow: visible;
    padding: 0;
  }

  .commission-example-card {
    display: grid;
  }

  .commission-example-card + .commission-example-card {
    display: none;
  }

  .category-mobile-strip {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    margin-inline: -16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 16px 14px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .category-mobile-strip::-webkit-scrollbar {
    display: none;
  }

  .category-mobile-card {
    position: relative;
    flex: 0 0 min(62vw, 430px);
    height: clamp(360px, 58vw, 520px);
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 22px 58px rgba(13, 25, 62, 0.16);
    scroll-snap-align: start;
  }

  .category-mobile-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 34, 0.02) 35%, rgba(8, 12, 34, 0.78) 100%);
    content: "";
    pointer-events: none;
  }

  .category-mobile-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .category-mobile-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: grid;
    gap: 11px;
    color: #ffffff;
  }

  .category-mobile-caption > span {
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(8, 12, 34, 0.36);
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 900;
  }

  .category-mobile-caption h3 {
    max-width: 100%;
    color: #ffffff;
    font-size: clamp(1.35rem, 4vw, 2rem);
    line-height: 1;
    text-shadow: 0 18px 42px rgba(8, 12, 34, 0.42);
  }

  .category-mobile-chips {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 6px;
  }

  .category-mobile-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 6px 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1;
  }

  .category-mobile-chips span:last-child {
    background: rgba(28, 223, 115, 0.24);
  }

  .category-showcase {
    margin-top: 24px;
  }

  .category-visual {
    display: block;
    min-height: clamp(360px, 58vw, 520px);
    overflow: hidden;
    overflow-x: hidden;
    border-radius: 20px;
    padding: 0;
    background: #ffffff;
    box-shadow: 0 22px 58px rgba(13, 25, 62, 0.16);
    overscroll-behavior-inline: none;
    touch-action: pan-y;
  }

  .category-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 0;
    object-fit: cover;
    transform: scale(1.04);
    box-shadow: none;
  }

  .category-visual img.is-active {
    opacity: 1;
    transform: scale(1);
  }

  .category-visual-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 11px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .category-visual-caption h3 {
    max-width: 100%;
    font-size: clamp(1.35rem, 4vw, 2rem);
  }

  .subcategory-chips {
    max-width: 100%;
    gap: 6px;
  }

  .subcategory-chips span {
    min-height: 26px;
    padding: 6px 8px;
    font-size: 0.72rem;
  }

  .redemption-visual {
    display: none;
  }

  .redemption-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ad-comparison-matrix {
    display: grid;
    gap: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .ad-matrix-head {
    display: none;
  }

  .ad-matrix-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    border: 1px solid rgba(29, 46, 79, 0.1);
    border-radius: 18px;
    padding: 16px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(13, 25, 62, 0.07);
  }

  .ad-matrix-row + .ad-matrix-row {
    border-top: 1px solid rgba(29, 46, 79, 0.1);
  }

  .ad-matrix-row span {
    grid-column: 1 / -1;
    color: var(--ink);
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .ad-matrix-row p {
    min-height: 100%;
    border: 1px solid rgba(29, 46, 79, 0.09);
    border-radius: 14px;
    padding: 14px;
    background: rgba(245, 250, 247, 0.76);
    color: rgba(29, 46, 79, 0.72);
    font-size: 0.94rem;
    font-weight: 560;
    line-height: 1.42;
  }

  .ad-matrix-row p::before,
  .ad-matrix-row p:first-of-type::before,
  .ad-matrix-row p:last-child::before {
    display: block;
    position: static;
    width: auto;
    height: auto;
    min-height: 0;
    margin-bottom: 7px;
    border-radius: 0;
    background: none;
    color: rgba(29, 46, 79, 0.58);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .ad-matrix-row p:first-of-type::before {
    content: "Google Ads / Meta";
  }

  .ad-matrix-row p:last-child {
    border-color: rgba(21, 201, 167, 0.22);
    background: linear-gradient(135deg, rgba(232, 251, 243, 0.95), rgba(239, 245, 251, 0.88));
    color: var(--ink);
    font-weight: 760;
  }

  .ad-matrix-row p:last-child::before {
    color: #08745d;
    content: "my-waycard.com";
  }

  .ad-comparison-result {
    border: 1px solid rgba(21, 201, 167, 0.2);
    border-radius: 18px;
    padding: 16px;
    background: rgba(232, 251, 243, 0.72);
  }

  .ad-comparison-result strong {
    font-size: 1.08rem;
    line-height: 1.28;
  }
}

@media (max-width: 760px) {
  .category-mobile-card {
    flex-basis: min(78vw, 330px);
    height: 350px;
  }

  .ad-matrix-row {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .ad-matrix-row p {
    padding: 13px;
  }
}

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

  .category-backgrounds img {
    transition: none !important;
  }

  .bonus-number,
  .bonus-number::after,
  .handdrawn-arrow {
    animation: none !important;
  }

}
