@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #fcfcfc;
  --white: #ffffff;
  --ink: #242526;
  --ink-soft: #3a3b3c;
  --muted: #6d7175;
  --line: #dedfdf;
  --line-strong: #c8caca;
  --coral: #ff5b3d;
  --coral-dark: #dd3d22;
  --green: #14865b;
  --green-bright: #20bd7a;
  --yellow: #f2c94c;
  --dark: #171818;
  --dark-2: #222323;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--paper);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.is-global-theme {
  background: #151515;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  transition: background-color 420ms ease, color 260ms ease;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.is-global-theme {
  background: #151515;
  color: #f7f7f7;
}

html.is-global-theme body {
  background: #151515;
  color: #f7f7f7;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
a {
  font: inherit;
}

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

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

button {
  color: inherit;
}

svg {
  display: block;
}

.section-shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 0;
  background: transparent;
  color: var(--ink);
  backdrop-filter: none;
  transition: backdrop-filter 220ms ease, color 220ms ease, background-color 320ms ease;
}

.site-header {
  --header-height: 72px;
}

.site-header.is-scrolled {
  --header-height: 64px;
}

.site-header.is-scrolled,
.site-header.is-open {
  backdrop-filter: blur(18px);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.site-header::before {
  background: rgba(252, 252, 252, 0.98);
  opacity: 0;
  transition: opacity 320ms ease, background-color 320ms ease;
}

.site-header::after {
  top: auto;
  height: 1px;
  background: rgba(36, 37, 38, 0.1);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), background-color 320ms ease;
}

.site-header.is-scrolled::before,
.site-header.is-open::before {
  opacity: 1;
}

body.is-global-theme .site-header::before {
  background: rgba(21, 21, 21, 0.98);
  opacity: 1;
}

body.is-global-theme .site-header {
  background-color: #151515;
  color: #ffffff;
}

.site-header.is-scrolled::after,
.site-header.is-open::after {
  transform: scaleX(1);
}

body.is-global-theme .site-header::after {
  background: rgba(255, 255, 255, 0.12);
  transform: scaleX(1);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1150px, calc(100% - 32px));
  height: var(--header-height);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  transform-origin: center top;
  transition: height 240ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height;
}

.brand {
  display: flex;
  align-items: center;
  width: fit-content;
  color: #3a3b3c;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  transition: color 260ms ease, text-shadow 260ms ease;
}

body.is-global-theme .brand {
  color: #ffffff;
}

.button-ghost {
  color: #444748;
  font-size: 14px;
  font-weight: 500;
  transition: color 260ms ease, text-shadow 260ms ease;
}

.button-ghost:hover {
  color: #645bff;
  background: transparent;
  box-shadow: none;
}

.button-ghost-label {
  display: inline-block;
}

.button-ghost:hover .button-ghost-label {
  animation: loginHoverGlow 220ms ease-out;
}

body.is-global-theme .button-ghost {
  color: rgba(255, 255, 255, 0.92);
}

body.is-global-theme .button-ghost:hover {
  color: #645bff;
}

@keyframes loginHoverGlow {
  0% {
    text-shadow: 0 0 0 rgba(100, 91, 255, 0);
  }

  100% {
    text-shadow: 0 0 12px rgba(100, 91, 255, 0.18);
  }
}

.desktop-actions {
  display: flex;
  justify-content: flex-end;
  gap: 7.5px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: none;
}

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(255, 91, 61, 0.32);
  outline-offset: 3px;
}

.button svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.button-primary {
  background: var(--coral);
  color: var(--white);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-header-action {
  --primary-color: #645bff;
  --secondary-color: #fff;
  --hover-color: #3a3b3c;
  --button-text-color: #645bff;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  width: fit-content;
  height: 45px;
  padding: 0 1.8em;
  border: 2px solid #645bff;
  border-radius: 999px;
  background: #645bff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease;
}

.button-header-action-label {
  font-size: 13px;
  color: #fff;
  opacity: 1;
  transition: color 260ms ease, opacity 260ms ease;
}

.button-header-action-arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-header-action-arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  height: var(--arrow-stroke);
  background: transparent;
  position: relative;
  transition: background-color 260ms ease;
}

.button-header-action-arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: -3px;
  right: 3px;
  display: inline-block;
  padding: 3px;
  border: solid #fff;
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  transform: rotate(-45deg);
  transition: right 260ms ease, border-color 260ms ease, opacity 260ms ease;
}

.button-header-action:hover {
  background: #3a3b3c;
  border-color: #3a3b3c;
}

.button-header-action:hover .button-header-action-arrow {
  background: #fff;
}

.button-header-action:hover .button-header-action-label {
  color: #fff;
}

.button-header-action:hover .button-header-action-arrow::before {
  right: 0;
  border-color: #fff;
}

.button-compact {
  min-height: 42px;
  padding-inline: 17px;
  text-transform: uppercase;
}

.button-large {
  min-height: 54px;
  padding-inline: 23px;
  font-size: 15px;
}

.button-light,
.button-secondary {
  border-color: rgba(36, 37, 38, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.hero-tour-button {
  min-height: fit-content;
  height: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
  gap: 5px;
}

.hero-tour-button:hover {
  background: transparent;
}

.hero-tour-button span {
  text-shadow: 0 2px 22px rgba(36, 37, 38, 0.18);
}

.hero-tour-button i {
  filter: drop-shadow(0 2px 22px rgba(36, 37, 38, 0.18));
}

.hero-tour-button svg {
  transition: transform 160ms ease;
}

.hero-tour-button:hover svg {
  transform: translateX(2px);
}

.hero-primary-button {
  min-height: 42px;
  height: 42px;
  transition: height 220ms ease, min-height 220ms ease, font-size 220ms ease, padding 220ms ease;
}

.button-white {
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  padding: calc(var(--header-height) + 28px) 0 16px;
  background: var(--paper);
}

.site-header.is-scrolled + main .hero {
  height: 100dvh;
  min-height: 100dvh;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  min-height: 100%;
  background-color: var(--paper);
  background-image: none !important;
}

.grid-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(to right, #e2e8f0 1px, transparent 1px),
    linear-gradient(to bottom, #e2e8f0 1px, transparent 1px);
  background-size: 20px 30px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.35) 66%,
    transparent 72%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.35) 66%,
    transparent 72%,
    transparent 100%
  );
}

.grid-hover-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(rgba(170, 170, 170, 0.14), rgba(170, 170, 170, 0.14));
  background-position: var(--grid-hover-x, -100px) var(--grid-hover-y, -100px);
  background-repeat: no-repeat;
  background-size: 20px 30px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.35) 66%,
    transparent 72%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.35) 66%,
    transparent 72%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(1150px, calc(100% - 32px));
  margin-inline: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #464849;
  line-height: 1;
}

.live-dot {
  position: relative;
  display: block;
  flex: 0 0 auto;
  line-height: 0;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: none;
  transform: translateY(-1px);
  animation: none;
}

.live-dot::before,
.live-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.25px solid rgba(255, 91, 61, 0.55);
  opacity: 0;
  pointer-events: none;
  animation: liveDotWave 1.7s ease-out infinite;
}

.live-dot::after {
  animation-delay: 0.85s;
}

@keyframes liveDotWave {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  12% {
    opacity: 0.7;
  }

  100% {
    transform: scale(1.83);
    opacity: 0;
  }
}

.hero-audio-bars {
  display: inline-flex;
  width: 1.16em;
  height: 0.6em;
  align-items: center;
  gap: 0.09em;
  margin: 0 0.08em 0 0.14em;
  vertical-align: -0.04em;
}

.hero-audio-bars span {
  display: block;
  width: 0.09em;
  height: 0.67em;
  border-radius: 999px;
  background: #645bff;
  transform-origin: center;
  animation: heroAudioBar 1100ms ease-in-out infinite;
}

.hero-audio-bars span:nth-child(2) {
  animation-delay: -120ms;
}

.hero-audio-bars span:nth-child(3) {
  animation-delay: -240ms;
}

.hero-audio-bars span:nth-child(4) {
  animation-delay: -360ms;
}

.hero-audio-bars span:nth-child(5) {
  animation-delay: -480ms;
}

.hero-audio-bars span:nth-child(6) {
  animation-delay: -600ms;
}

.hero-audio-bars span:nth-child(7) {
  animation-delay: -720ms;
}

@keyframes heroAudioBar {
  0%,
  100% {
    transform: scaleY(0.28);
    opacity: 0.42;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  color: #202122;
  font-family: "Inter", sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 0.98;
}

.hero-copy {
  max-width: 570px;
  margin: 28px 0 0;
  color: #4c4e4f;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 14px;
  row-gap: 14px;
  margin-top: 32px;
}

.hero-no-card {
  position: relative;
  display: inline-block;
  margin: 12.5px 0 0;
  margin-left: 8px;
  color: #808080;
  font-family: "Segoe Print", "Bradley Hand", "Marker Felt", "Noteworthy", cursive;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.hero-no-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0, rgba(252, 252, 252, 0.88) 48%, transparent 56%);
  transform: translateX(-140%);
  animation: noCardShine 4.5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes noCardShine {
  0% {
    transform: translateX(-140%);
  }

  60%,
  100% {
    transform: translateX(140%);
  }
}

.hero-scroll {
  position: relative;
  z-index: 3;
  justify-self: center;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444748;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-scroll svg {
  width: 15px;
  height: 15px;
}

.platform-strip {
  display: flex;
  width: calc(100% - 32px);
  max-width: 1150px;
  min-height: 104px;
  margin-inline: auto;
  align-items: center;
  gap: 40px;
  padding: 22px 0;
  overflow: hidden;
  border-bottom: 0;
  background: transparent;
}

.platform-strip h2 {
  flex: 0 0 auto;
  margin: 0;
  color: #202122;
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 0.98;
}

.platform-list {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 52px;
}

.platform-list img {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}

.platform-list img:nth-child(1) {
  height: 42px;
}

.platform-list img:nth-child(2) {
  height: 42px;
}

.platform-list img:nth-child(3) {
  height: 42px;
}

.global-coverage {
  width: calc(100% - 32px);
  margin: 52px auto 0;
}

.global-coverage-map {
  position: relative;
  min-height: 550px;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid #292929;
  border-radius: 30px;
  background: #151515;
  color: #f7f7f7;
}

.coverage-dots {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.52;
  background-image: radial-gradient(circle, #707070 1.2px, transparent 1.5px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 76% 77% at 50% 48%, #000 24%, rgba(0, 0, 0, 0.72) 58%, transparent 100%);
  mask-image: radial-gradient(ellipse 76% 77% at 50% 48%, #000 24%, rgba(0, 0, 0, 0.72) 58%, transparent 100%);
}

.global-coverage-content {
  display: flex;
  position: relative;
  z-index: 1;
  min-height: 550px;
  padding: 76px 40px 42px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.coverage-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 24px;
  padding: 10px 16px 10px 14px;
  border: 1px solid #3d3d3d;
  border-radius: 999px;
  background: #101010;
  color: #b8b8b8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
}

.coverage-label-icon {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: currentColor;
}

.coverage-label-icon svg {
  width: 100%;
  height: 100%;
}

.global-coverage-content h2 {
  margin: 0;
  color: #fafafa;
  font-size: clamp(42px, 5.1vw, 64px);
  font-weight: 600;
  letter-spacing: -0.064em;
  line-height: 1.02;
}

.coverage-description {
  max-width: 570px;
  margin: 24px 0 0;
  color: #a2a2a2;
  font-size: 16px;
  line-height: 1.5;
}

.currency-list {
  display: flex;
  max-width: 780px;
  margin: 54px auto 0;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.currency-chip {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  gap: 9px;
  padding: 0 16px 0 8px;
  border: 1px solid #353535;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.94);
  color: #ededed;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.currency-chip span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  background: #2f2f2f;
  color: #f6f6f6;
  font-size: 13px;
  font-weight: 700;
}

.currency-chip-more {
  padding: 0 21px;
  border-color: #f4f4f4;
  background: #f4f4f4;
  color: #161616;
}

.coverage-stats {
  display: flex;
  margin-top: 15px;
  justify-content: center;
  gap: 42px;
  color: #9d9d9d;
  font-size: 12px;
}

.coverage-stats strong {
  color: #f1f1f1;
  font-size: 14px;
}

.manifesto {
  padding-top: 150px;
  padding-bottom: 156px;
}

.manifesto h2,
.features-heading h2,
.benefits-heading h2,
.pricing-copy h2,
.how-heading h2,
.final-content h2 {
  margin: 0;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.07;
}

.manifesto h2 span {
  color: #989b9d;
}

.manifesto-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 72px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.manifesto-detail > p {
  max-width: 600px;
  margin: 0;
  color: #55595b;
  font-size: 18px;
  line-height: 1.65;
}

.manifesto-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
}

.manifesto-stat strong {
  color: var(--coral);
  font-size: 38px;
  font-weight: 600;
}

.manifesto-stat span {
  max-width: 300px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.features {
  padding: 128px 0 160px;
  background: transparent;
  color: var(--ink);
}

.section-kicker-light {
  color: #9fa4a4;
}

body:not(.is-global-theme) .features .section-kicker-light {
  color: #7b8184;
}

.features-heading {
  margin-bottom: 112px;
}

.features-heading h2 {
  max-width: 890px;
}

.feature-experience {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(550px, 1.22fr);
  gap: 86px;
  align-items: start;
}

.feature-steps {
  min-width: 0;
}

.feature-step {
  display: grid;
  min-height: 74vh;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-content: center;
  opacity: 0.34;
  transition: opacity 250ms ease;
}

body:not(.is-global-theme) .feature-step {
  opacity: 0.55;
}

.feature-step.is-active {
  opacity: 1;
}

.feature-number {
  padding-top: 5px;
  color: #8c9292;
  font-size: 11px;
  font-weight: 600;
}

body:not(.is-global-theme) .feature-number {
  color: #8a8f91;
}

.feature-label {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-step h3 {
  max-width: 480px;
  margin: 0;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;
}

body:not(.is-global-theme) .feature-step h3 {
  color: var(--ink);
}

.feature-step p:last-child {
  max-width: 470px;
  margin: 20px 0 0;
  color: #a9adad;
  font-size: 16px;
  line-height: 1.65;
}

body:not(.is-global-theme) .feature-step p:last-child {
  color: #5f6568;
}

.feature-stage {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid #3c3f3f;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

body:not(.is-global-theme) .feature-stage {
  border-color: #d4d7d7;
  box-shadow: 0 24px 70px rgba(36, 37, 38, 0.1);
}

.stage-topbar {
  display: flex;
  height: 55px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #d9dada;
  background: var(--white);
}

.stage-brand {
  color: var(--ink-soft);
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.stage-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #626667;
  font-size: 11px;
  font-weight: 600;
}

.stage-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
}

.feature-panel {
  position: absolute;
  top: 55px;
  right: 0;
  bottom: 34px;
  left: 0;
  display: grid;
  visibility: hidden;
  align-content: center;
  padding: 42px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 320ms ease, transform 320ms ease, visibility 320ms;
}

.feature-panel.is-active {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.checkout-panel {
  grid-template-columns: minmax(280px, 1.25fr) minmax(180px, 0.75fr);
  gap: 28px;
  align-items: center;
  background: #eef1ed;
}

.checkout-preview {
  padding: 28px;
  border: 1px solid #d8dada;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(36, 37, 38, 0.1);
}

.checkout-creator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.creator-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.checkout-creator span,
.checkout-preview label,
.now-playing span {
  display: block;
  color: #747879;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.checkout-creator strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}

.checkout-preview label {
  margin-top: 16px;
}

.preview-input,
.preview-textarea {
  display: flex;
  min-height: 50px;
  align-items: center;
  margin-top: 7px;
  padding: 0 14px;
  border: 1px solid #d6d8d8;
  border-radius: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.preview-input {
  justify-content: space-between;
}

.preview-input small {
  color: #737778;
  font-size: 10px;
}

.preview-textarea {
  min-height: 74px;
  align-items: flex-start;
  padding-top: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.preview-button {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  padding-inline: 16px;
  border-radius: 5px;
  background: var(--coral);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.preview-button svg,
.checkout-notes svg {
  width: 16px;
  height: 16px;
}

.checkout-notes {
  display: grid;
  gap: 12px;
}

.checkout-notes span {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-bottom: 1px solid #cfd2d0;
  color: #4f5353;
  font-size: 12px;
  font-weight: 600;
}

.moderation-panel {
  align-content: center;
  padding-inline: 52px;
  background: var(--paper);
}

.panel-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.panel-heading span {
  display: block;
  color: #777b7c;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.panel-heading strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.panel-chip {
  padding: 7px 9px;
  border-radius: 4px;
  background: #def4e9;
  color: var(--green) !important;
}

.message-review {
  margin-top: 11px;
  padding: 20px;
  border: 1px solid #d8dada;
  border-radius: 7px;
  background: var(--white);
}

.message-review.approved {
  border-left: 3px solid var(--green-bright);
}

.review-person,
.review-meta,
.review-actions {
  display: flex;
  align-items: center;
}

.review-person {
  gap: 10px;
}

.review-person > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #eeeeed;
  color: #575b5c;
  font-size: 9px;
  font-weight: 700;
}

.review-person strong {
  font-size: 12px;
}

.message-review p {
  margin: 15px 0;
  color: #454849;
  font-size: 14px;
}

.review-meta {
  justify-content: space-between;
  color: #777b7c;
  font-size: 10px;
  font-weight: 600;
}

.review-meta span:last-child {
  color: var(--green);
}

.review-actions {
  justify-content: flex-end;
  gap: 8px;
}

.review-actions button {
  display: inline-flex;
  min-width: 38px;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid #d3d5d5;
  border-radius: 5px;
  background: var(--white);
  font-size: 11px;
  font-weight: 600;
}

.review-actions button:last-child {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.review-actions svg {
  width: 14px;
  height: 14px;
}

.player-panel {
  background: #ece8df;
}

.now-playing {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  width: min(510px, 100%);
  margin-inline: auto;
}

.sound-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 7px;
  background: var(--coral);
  color: var(--white);
}

.sound-icon svg {
  width: 24px;
  height: 24px;
}

.now-playing strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
}

.now-playing small {
  display: block;
  margin-top: 5px;
  color: #777a7b;
  font-size: 10px;
}

.waveform {
  display: flex;
  width: min(510px, 100%);
  height: 115px;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin: 24px auto 10px;
}

.waveform span {
  width: 5px;
  height: 28px;
  border-radius: 3px;
  background: var(--ink);
  animation: stage-wave 1.5s ease-in-out infinite alternate;
}

.waveform span:nth-child(3n) {
  height: 72px;
  animation-delay: 220ms;
}

.waveform span:nth-child(4n) {
  height: 48px;
  animation-delay: 380ms;
}

.waveform span:nth-child(5n) {
  height: 88px;
  animation-delay: 90ms;
}

.waveform span:nth-child(7n) {
  height: 60px;
  animation-delay: 460ms;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.player-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #cfd0ce;
  border-radius: 50%;
  background: transparent;
}

.player-controls .play-control {
  width: 54px;
  height: 54px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.player-controls svg {
  width: 18px;
  height: 18px;
}

.queue-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  width: min(510px, 100%);
  margin: 34px auto 0;
  padding-top: 16px;
  border-top: 1px solid #cacac7;
  color: #6c6f70;
  font-size: 10px;
}

.queue-row strong {
  color: var(--ink);
}

.earnings-panel {
  background: var(--paper);
}

.earnings-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.earnings-summary span {
  display: block;
  color: #777b7c;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.earnings-summary strong {
  display: block;
  margin-top: 3px;
  font-size: 35px;
  font-weight: 600;
}

.earnings-summary small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
}

.earnings-summary small svg {
  width: 13px;
  height: 13px;
}

.earnings-range {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 6px;
  padding-inline: 10px;
  border: 1px solid #d3d5d4;
  border-radius: 4px;
  background: var(--white);
  font-size: 10px;
  font-weight: 600;
}

.earnings-range svg {
  width: 12px;
  height: 12px;
}

.earnings-chart {
  position: relative;
  height: 210px;
  margin-top: 42px;
}

.chart-guides {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-guides i {
  width: 100%;
  height: 1px;
  background: #d9dcda;
}

.earnings-chart svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-area {
  fill: rgba(32, 189, 122, 0.1);
}

.chart-line {
  fill: none;
  stroke: var(--green-bright);
  stroke-linecap: round;
  stroke-width: 4;
}

.chart-point {
  position: absolute;
  z-index: 2;
  top: -12px;
  right: -4px;
  padding: 5px 7px;
  border-radius: 3px;
  background: var(--green);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
}

.earnings-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding-top: 15px;
  border-top: 1px solid #d4d7d5;
  color: #666a6b;
  font-size: 10px;
}

.earnings-meta span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: auto;
}

.earnings-meta i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
}

.stage-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  height: 34px;
  align-items: center;
  padding: 0 18px;
  background: var(--white);
}

.stage-progress span {
  height: 2px;
  background: #d8dada;
  transition: background-color 220ms ease;
}

.stage-progress span.is-active {
  background: var(--coral);
}

.benefits {
  padding-top: 150px;
  padding-bottom: 160px;
}

.benefits-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.benefit-grid article {
  min-height: 330px;
  padding: 34px 24px 38px;
  border-right: 1px solid var(--line-strong);
}

.benefit-grid article:first-child {
  padding-left: 0;
}

.benefit-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
}

.benefit-icon.coral {
  background: var(--coral);
}

.benefit-icon.green {
  background: var(--green);
}

.benefit-icon.yellow {
  background: var(--yellow);
  color: var(--ink);
}

.benefit-icon.ink {
  background: var(--ink);
}

.benefit-icon svg {
  width: 21px;
  height: 21px;
}

.benefit-grid h3 {
  max-width: 230px;
  margin: 78px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.benefit-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.pricing {
  padding: 136px 0;
  background: #eeeee9;
}

.pricing-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(590px, 1.25fr);
  gap: 100px;
  align-items: start;
}

.pricing-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.pricing-copy h2 {
  max-width: 510px;
}

.pricing-copy > p:not(.section-kicker) {
  max-width: 510px;
  margin: 28px 0 0;
  color: #5a5e5f;
  font-size: 17px;
  line-height: 1.65;
}

.pricing-promise {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid #cacbc7;
}

.pricing-promise > svg {
  width: 21px;
  height: 21px;
  color: var(--green);
}

.pricing-promise strong,
.pricing-promise span {
  display: block;
}

.pricing-promise strong {
  font-size: 13px;
}

.pricing-promise span {
  margin-top: 4px;
  color: #717475;
  font-size: 12px;
}

.calculator {
  padding: 8px 0 0;
}

.platform-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid #cfd0cc;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.48);
}

.platform-tabs button {
  display: flex;
  min-width: 0;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #666a6b;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-tabs button.is-active {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(36, 37, 38, 0.14);
}

.platform-tabs svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.sg-mark {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 9px;
}

.tip-control {
  margin-top: 40px;
}

.tip-control-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tip-control-label label {
  color: #686c6d;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.amount-input {
  display: flex;
  height: 48px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #c7c9c6;
  border-radius: 5px;
  background: var(--white);
}

.amount-input > span {
  color: #777a7b;
  font-size: 14px;
}

.amount-input input {
  width: 96px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  appearance: textfield;
}

.amount-input input::-webkit-outer-spin-button,
.amount-input input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.amount-input small {
  margin-left: 8px;
  color: #858889;
  font-size: 9px;
  font-weight: 600;
}

.tip-range {
  width: 100%;
  height: 6px;
  margin: 35px 0 0;
  border-radius: 0;
  background: linear-gradient(
    to right,
    var(--coral) 0%,
    var(--coral) var(--range-progress, 3%),
    #caccc8 var(--range-progress, 3%),
    #caccc8 100%
  );
  cursor: pointer;
  appearance: none;
}

.tip-range::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 2px 8px rgba(36, 37, 38, 0.28);
  appearance: none;
}

.tip-range::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 2px 8px rgba(36, 37, 38, 0.28);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #7f8384;
  font-size: 10px;
}

.calculator-result {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  margin-top: 40px;
  border-top: 1px solid #bfc1bd;
  border-bottom: 1px solid #bfc1bd;
}

.receive-block,
.fee-block {
  padding: 35px 0;
}

.receive-block {
  border-right: 1px solid #bfc1bd;
}

.receive-block > span,
.fee-block span {
  display: block;
  color: #6e7273;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.receive-block > strong {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
}

.receive-block > small {
  display: block;
  margin-top: 7px;
  color: #737778;
  font-size: 11px;
}

.fee-block {
  display: grid;
  gap: 22px;
  align-content: center;
  padding-left: 34px;
}

.fee-block strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
}

.comparison-saving {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 15px 17px;
  border-radius: 5px;
  background: #dcece3;
  color: #2e5e48;
  font-size: 11px;
}

.comparison-saving strong {
  color: var(--green);
  font-size: 12px;
}

.comparison-saving.is-hidden {
  visibility: hidden;
}

.pricing-note {
  margin: 16px 0 0;
  color: #858889;
  font-size: 10px;
  line-height: 1.55;
}

.how-it-works {
  padding-top: 150px;
  padding-bottom: 160px;
}

.how-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}

.how-heading h2 {
  max-width: 800px;
}

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

.how-list li {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid var(--line-strong);
}

.how-list li > span {
  color: #909394;
  font-size: 11px;
  font-weight: 600;
}

.how-list h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
}

.how-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.how-list li > svg {
  width: 28px;
  height: 28px;
  color: var(--coral);
  stroke-width: 1.6;
}

.final-cta {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: transparent;
  color: inherit;
}

.signal-wall {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: space-between;
  padding-block: 90px;
  opacity: 0.24;
  pointer-events: none;
  transform: rotate(-5deg) scale(1.08);
}

.signal-track {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: marquee 30s linear infinite;
  color: var(--coral);
  font-size: 60px;
  font-weight: 700;
  white-space: nowrap;
}

.signal-track.reverse {
  animation-direction: reverse;
  color: var(--green-bright);
}

.final-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.final-content h2 {
  max-width: 900px;
  font-size: 82px;
  line-height: 0.98;
}

.final-content .button {
  margin-top: 40px;
}

.final-content > p:last-child {
  margin: 18px 0 0;
  color: #9ca0a0;
  font-size: 11px;
}

.site-footer {
  background: transparent;
  color: var(--white);
}

body.is-global-theme .site-footer {
  background: #151515;
}

.footer-top {
  padding-top: 72px;
  padding-bottom: 44px;
}

.footer-brand .brand {
  color: var(--white);
  font-size: 18px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: #8f9494;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  border-top: 1px solid #2a2c2c;
  color: #7f8484;
  font-size: 11px;
}

.footer-brand-name {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
}

@keyframes stage-wave {
  to {
    transform: scaleY(0.45);
    opacity: 0.45;
  }
}

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

@media (max-width: 1100px) {
  .hero {
    height: 100dvh;
    min-height: 100dvh;
  }

  .hero h1 {
    font-size: 54px;
  }

  .feature-experience {
    grid-template-columns: minmax(280px, 0.75fr) minmax(480px, 1.25fr);
    gap: 50px;
  }

  .feature-panel {
    padding: 30px;
  }

  .checkout-panel {
    grid-template-columns: 1fr;
  }

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

  .checkout-notes span {
    border-right: 1px solid #cfd2d0;
    border-bottom: 0;
  }

  .pricing-shell {
    gap: 60px;
  }

  .benefit-grid h3 {
    margin-top: 54px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    --header-height: 64px;
  }

  .section-shell {
    width: min(100% - 36px, 680px);
  }

  .nav-shell {
    width: calc(100% - 32px);
  }

  .desktop-actions {
    gap: 8px;
  }

  .button-ghost {
    padding-inline: 14px;
    min-height: 40px;
    font-size: 13px;
  }

  .button-header-action {
    height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero {
    height: 100dvh;
    min-height: 100dvh;
    padding: calc(var(--header-height) + 18px) 0 14px;
    background: var(--paper);
  }

  .hero-content {
    width: calc(100% - 32px);
    align-self: center;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-copy {
    max-width: 530px;
    font-size: 17px;
  }

  .hero-scroll {
    display: flex;
    margin-top: 18px;
  }

  .platform-strip {
    display: grid;
    gap: 28px;
    min-height: 0;
    padding: 24px 18px 27px;
    justify-items: center;
  }

  .platform-strip h2 {
    width: 100%;
    text-align: center;
  }

  .platform-list {
    width: 100%;
    min-width: 0;
    justify-content: space-around;
    padding-bottom: 0;
    overflow: visible;
  }

  .platform-list img {
    height: 34px;
  }

  .global-coverage {
    margin-top: 42px;
  }

  .global-coverage-map {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .manifesto,
  .benefits,
  .how-it-works {
    padding-top: 100px;
    padding-bottom: 105px;
  }

  .manifesto h2,
  .features-heading h2,
  .benefits-heading h2,
  .pricing-copy h2,
  .how-heading h2 {
    font-size: 43px;
  }

  .manifesto-detail {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 52px;
  }

  .features {
    padding-top: 96px;
    padding-bottom: 110px;
  }

  .features-heading {
    margin-bottom: 62px;
  }

  .feature-experience {
    display: block;
  }

  .feature-steps {
    display: grid;
    gap: 24px;
  }

  .feature-step {
    min-height: auto;
    padding: 28px 0;
    opacity: 1;
  }

  .feature-step h3 {
    font-size: 27px;
  }

  .feature-step p:last-child {
    font-size: 14px;
  }

  .feature-stage {
    position: relative;
    top: auto;
    min-height: 590px;
    margin-top: 46px;
  }

  .feature-panel {
    overflow: hidden;
    padding: 28px;
  }

  .benefits-heading,
  .how-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 64px;
  }

  .benefit-grid article {
    min-height: 280px;
    border-bottom: 1px solid var(--line-strong);
  }

  .benefit-grid article:first-child,
  .benefit-grid article:nth-child(3) {
    padding-left: 0;
  }

  .benefit-grid article:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .benefit-grid article:nth-child(3),
  .benefit-grid article:nth-child(4) {
    border-bottom: 0;
  }

  .benefit-grid h3 {
    margin-top: 46px;
  }

  .pricing {
    padding: 100px 0;
  }

  .pricing-shell {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .pricing-copy {
    position: static;
  }

  .how-list {
    margin-top: 60px;
  }

  .final-cta,
  .final-content {
    min-height: 650px;
  }

  .final-content h2 {
    font-size: 62px;
  }

}

@media (max-width: 750px) {
  .hero h1 {
    font-size: 54px;
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: 100dvh;
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1;
  }

  .hero-copy {
    margin-top: 21px;
    font-size: 15px;
  }

  .hero-primary-button {
    min-height: 54px;
    height: 54px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 14px;
    margin-top: 25px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-no-card {
    display: block;
    width: 100%;
    margin-top: 18px;
    margin-left: 0;
    justify-self: center;
    text-align: center;
  }

  .manifesto,
  .benefits,
  .how-it-works {
    padding-top: 84px;
    padding-bottom: 90px;
  }

  .manifesto h2,
  .features-heading h2,
  .benefits-heading h2,
  .pricing-copy h2,
  .how-heading h2 {
    font-size: 35px;
  }

  .manifesto-detail {
    margin-top: 42px;
  }

  .manifesto-detail > p {
    font-size: 15px;
  }

  .global-coverage {
    width: calc(100% - 36px);
    margin-top: 32px;
  }

  .global-coverage-map {
    min-height: 520px;
    border-radius: 22px;
  }

  .global-coverage-content {
    min-height: 520px;
    padding: 55px 20px 30px;
  }

  .coverage-label { margin-bottom: 20px; }

  .global-coverage-content h2 { font-size: 39px; }

  .coverage-description { font-size: 14px; }

  .currency-list {
    max-width: 390px;
    margin-top: 38px;
    gap: 9px;
  }

  .currency-chip {
    min-height: 43px;
    gap: 7px;
    padding: 0 12px 0 6px;
    font-size: 11px;
  }

  .currency-chip span {
    width: 29px;
    height: 29px;
    font-size: 11px;
  }

  .currency-chip-more { padding: 0 15px; }

  .coverage-stats {
    gap: 14px;
    font-size: 10px;
  }

  .coverage-stats strong { font-size: 11px; }

  .manifesto-stat {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .manifesto-stat strong {
    font-size: 32px;
  }

  .features {
    padding-top: 82px;
    padding-bottom: 90px;
  }

  .feature-step {
    grid-template-columns: 32px 1fr;
    gap: 8px;
  }

  .feature-step h3 {
    font-size: 24px;
  }

  .feature-stage {
    min-height: 520px;
  }

  .feature-panel {
    padding: 20px 16px;
  }

  .checkout-panel {
    grid-template-columns: 1fr;
  }

  .checkout-preview {
    padding: 20px;
  }

  .checkout-notes {
    display: none;
  }

  .moderation-panel {
    padding-inline: 16px;
  }

  .panel-chip {
    display: none !important;
  }

  .message-review {
    padding: 16px;
  }

  .now-playing {
    grid-template-columns: 46px 1fr;
  }

  .sound-icon {
    width: 46px;
    height: 46px;
  }

  .now-playing strong {
    font-size: 14px;
  }

  .waveform {
    height: 90px;
    gap: 3px;
  }

  .waveform span {
    width: 3px;
  }

  .earnings-summary strong {
    font-size: 28px;
  }

  .earnings-chart {
    height: 180px;
    margin-top: 32px;
  }

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

  .benefit-grid article,
  .benefit-grid article:first-child,
  .benefit-grid article:nth-child(2),
  .benefit-grid article:nth-child(3),
  .benefit-grid article:last-child {
    min-height: 240px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .benefit-grid h3 {
    max-width: none;
    margin-top: 38px;
  }

  .pricing {
    padding: 84px 0;
  }

  .platform-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .tip-control-label {
    align-items: flex-end;
  }

  .amount-input {
    height: 44px;
  }

  .amount-input input {
    width: 78px;
    font-size: 18px;
  }

  .calculator-result {
    grid-template-columns: 1fr;
  }

  .receive-block {
    border-right: 0;
    border-bottom: 1px solid #bfc1bd;
  }

  .receive-block > strong {
    font-size: 46px;
  }

  .fee-block {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
  }

  .comparison-saving {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .how-list li {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 23px 0;
  }

  .how-list li > svg {
    display: none;
  }

  .how-list h3 {
    font-size: 18px;
  }

  .how-list p {
    font-size: 12px;
  }

  .final-cta,
  .final-content {
    min-height: 600px;
  }

  .signal-track {
    font-size: 42px;
  }

  .final-content h2 {
    font-size: 46px;
  }

  .final-content .button {
    width: 100%;
  }

  .footer-bottom {
    min-height: 96px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .footer-top {
    padding-top: 60px;
    padding-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .platform-list img {
    height: 30px;
  }
}

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

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