:root {
  color-scheme: light;
  --ink: #172033;
  --coal: #f3f6fb;
  --coal-2: #ffffff;
  --paper: #ffffff;
  --paper-2: #f6f9fc;
  --muted: #6d788c;
  --muted-dark: #475569;
  --line: rgba(23, 32, 51, 0.12);
  --line-dark: rgba(23, 32, 51, 0.16);
  --green: #2563eb;
  --brand-violet: #626cff;
  --rose-dark: #d7275d;
  --amber: #ffbc4f;
  --violet: #626cff;
  --shadow: 0 24px 80px rgba(36, 53, 84, 0.16);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--coal);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.page {
  position: relative;
  z-index: 1;
  overflow: clip;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  margin: 0 auto;
  padding: 10px max(16px, calc((100% - var(--max)) / 2 + 16px));
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  white-space: nowrap;
}

.brand__logo {
  display: block;
  width: 168px;
  height: auto;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(77, 240, 143, 0.95), rgba(51, 215, 255, 0.95)),
    var(--green);
  color: #07100c;
  font-size: 0.82rem;
  box-shadow: 0 10px 28px rgba(77, 240, 143, 0.22);
}

.brand__text {
  font-size: 1.02rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 14px;
  color: rgba(246, 244, 234, 0.78);
  font-size: 1rem;
  font-weight: 500;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--paper);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.link-action {
  color: rgba(246, 244, 234, 0.76);
  font-size: 0.92rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: #07100c;
  font-weight: 800;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.42), transparent 58%);
  transform: translateX(-115%);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(77, 240, 143, 0.24);
}

.button:hover::after {
  transform: translateX(115%);
}

.button--small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.button--hero {
  min-width: 212px;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
}

.button--ghost:hover {
  box-shadow: 0 16px 38px rgba(255, 255, 255, 0.12);
}

.button--dark {
  background: #11150f;
  color: var(--paper);
}

.button--dark:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.header.is-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.header.is-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 96px);
  padding: clamp(72px, 9vw, 118px) 0 34px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -86px 0 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 246, 251, 0.68) 58%, rgba(243, 246, 251, 0.18)),
    linear-gradient(125deg, rgba(37, 99, 235, 0.16), transparent 48%),
    linear-gradient(235deg, rgba(98, 108, 255, 0.13), transparent 52%);
  opacity: 0.95;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: -1;
  width: min(960px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.22), rgba(98, 108, 255, 0.2), transparent);
  transform: translateX(-50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(246, 244, 234, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
}

.section--light .section__kicker,
.faq-layout .section__kicker {
  border-color: rgba(9, 16, 13, 0.16);
  background: rgba(9, 16, 13, 0.06);
  color: #344036;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(77, 240, 143, 0.54);
  animation: pulse 1.8s ease-out infinite;
}

.hero h1 {
  max-width: 960px;
  margin: 24px auto 0;
  color: rgba(23, 32, 51, 0.9);
  font-size: clamp(3rem, 6.8vw, 6.35rem);
  font-weight: 900;
  line-height: 0.96;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-title__soft {
  color: rgba(23, 32, 51, 0.62);
  font-weight: 800;
}

.hero-title__accent {
  background: linear-gradient(105deg, #ff3471 0%, #626cff 44%, #2563eb 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  filter: drop-shadow(0 18px 34px rgba(98, 108, 255, 0.14));
}

.hero-title__brand {
  color: rgba(23, 32, 51, 0.82);
  font-size: 0.78em;
  line-height: 1.04;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(420px, 58vw);
  height: 8px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 52, 113, 0.2), rgba(98, 108, 255, 0.24));
}

.hero p {
  max-width: 760px;
  margin: 26px auto 0;
  color: rgba(246, 244, 234, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.58;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.hero__checks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.16);
  color: rgba(246, 244, 234, 0.78);
  font-size: 0.9rem;
}

.hero__checks span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(38px, 6vw, 64px) auto 0;
}

.hero__stats article,
.metric-card,
.audience-card,
.process-step,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero__stats article {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 20px;
}

.hero__stats article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.78), rgba(98, 108, 255, 0.68));
}

.hero__stats span,
.metric-card span {
  color: rgba(246, 244, 234, 0.58);
  font-size: 0.9rem;
}

.hero__stats strong {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.05;
}

.hero__stats p {
  margin: 12px 0 0;
  color: rgba(246, 244, 234, 0.62);
  font-size: 0.9rem;
  line-height: 1.45;
}

[data-counter] {
  display: inline-block;
}

strong [data-counter] {
  color: inherit;
  font-size: inherit;
}

#trafficToday {
  display: block;
  line-height: 1.08;
  font-variant-numeric: tabular-nums;
}

[data-live-traffic].is-ticking {
  animation: tickPop 420ms ease;
}

.hero__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.traffic-panel {
  position: absolute;
  z-index: 1;
  width: 210px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(17, 21, 15, 0.74);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.traffic-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 1.42rem;
  line-height: 1.08;
}

.traffic-panel span:last-child {
  display: block;
  margin-top: 5px;
  color: rgba(246, 244, 234, 0.64);
  font-size: 0.82rem;
}

.traffic-panel__label {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.traffic-panel--top {
  top: 17%;
  left: max(-132px, calc((100vw - var(--max)) / 2 - 96px));
}

.traffic-panel--side {
  top: 25%;
  right: max(-132px, calc((100vw - var(--max)) / 2 - 96px));
}

.traffic-panel--rate {
  bottom: 45%;
  left: max(24px, calc((100vw - var(--max)) / 2 + 32px));
  width: 184px;
}

.traffic-panel--bottom {
  right: max(28px, calc((100vw - var(--max)) / 2 + 72px));
  bottom: 43%;
}

[data-float] {
  animation: floatPanel 6.5s ease-in-out infinite;
}

[data-float]:nth-child(2) {
  animation-delay: -2.2s;
}

[data-float]:nth-child(3) {
  animation-delay: -4.1s;
}

[data-float]:nth-child(4) {
  animation-delay: -5.4s;
}

.stream-band {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5.2vw, 62px) 0;
  border-block: 1px solid rgba(32, 40, 58, 0.1);
  background:
    linear-gradient(115deg, rgba(77, 141, 255, 0.13), transparent 42%),
    linear-gradient(245deg, rgba(98, 108, 255, 0.1), transparent 38%),
    rgba(255, 255, 255, 0.78);
}

.stream-band__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.stream-band__copy span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(77, 141, 255, 0.16);
  border-radius: 999px;
  background: rgba(77, 141, 255, 0.09);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stream-band__copy h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1;
  text-wrap: balance;
}

.stream-band__copy p {
  margin: 16px 0 0;
  color: var(--muted-dark);
  font-size: 1rem;
  line-height: 1.62;
}

.stream-console {
  display: grid;
  position: relative;
  gap: 14px;
  min-height: 320px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(32, 40, 58, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(32, 40, 58, 0.96), rgba(32, 40, 58, 0.9)),
    var(--ink);
  box-shadow: 0 22px 64px rgba(36, 53, 84, 0.12);
  color: #ffffff;
}

.stream-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(77, 141, 255, 0.28), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(98, 108, 255, 0.18), transparent 26%);
  pointer-events: none;
}

.stream-console__head,
.stream-console__counter,
.stream-lines,
.stream-log {
  position: relative;
  z-index: 1;
}

.stream-console__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.stream-console__head span,
.stream-console__head b,
.stream-log span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stream-console__head i {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #4dff9a;
  box-shadow: 0 0 0 0 rgba(77, 255, 154, 0.5);
  animation: streamPulse 1.8s ease-out infinite;
}

.stream-console__counter {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.stream-console__counter span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stream-console__counter strong {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.45rem);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.stream-console__counter p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.42;
}

.stream-lines {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(7, 13, 26, 0.34);
}

.stream-lines div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.stream-lines span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stream-lines i {
  position: relative;
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.stream-lines i::before,
.stream-lines i::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.stream-lines i::before {
  inset: 0 auto 0 0;
  width: var(--w);
  background: linear-gradient(90deg, var(--green), var(--brand-violet));
  opacity: 0.72;
  transition: width 520ms ease;
}

.stream-lines i::after {
  inset: 0 auto 0 -34%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), transparent);
  animation: streamFlow 2.15s linear infinite;
  animation-delay: var(--d);
}

.stream-log {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.section {
  scroll-margin-top: 86px;
  padding: clamp(74px, 9vw, 120px) 0;
}

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

.section--dark {
  background: #11150f;
}

.section__head {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto 38px;
  text-align: center;
}

.section__head--wide {
  width: min(930px, calc(100% - 32px));
}

.section__head--left {
  width: auto;
  margin: 0;
  text-align: left;
}

.section__head h2,
.cta-section h2 {
  margin: 18px 0 0;
  font-size: clamp(2.1rem, 4.7vw, 5rem);
  line-height: 0.98;
  text-wrap: balance;
}

.section__head p,
.cta-section p {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.68;
  text-wrap: balance;
}

.section--dark .section__head p,
.cta-section p {
  color: rgba(246, 244, 234, 0.7);
}

.offer-switcher,
.split-layout,
.faq-layout,
.cta-section__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: 780px;
  margin: 0 auto 16px;
  padding: 6px;
  border: 1px solid rgba(9, 16, 13, 0.13);
  border-radius: var(--radius);
  background: rgba(9, 16, 13, 0.06);
}

.segmented__button {
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #384239;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.segmented__button:hover {
  transform: translateY(-1px);
}

.segmented__button.is-active {
  background: #11150f;
  color: var(--paper);
}

.offer-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.offer-stage__copy,
.offer-mockup {
  border: 1px solid rgba(9, 16, 13, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 72px rgba(17, 21, 15, 0.12);
}

.offer-stage__copy {
  padding: clamp(24px, 4vw, 42px);
}

.offer-stage__copy > span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 52, 113, 0.1);
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.offer-stage__copy h3 {
  margin: 20px 0 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.offer-stage__copy p {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 1rem;
  line-height: 1.65;
}

.offer-stage__copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.offer-stage__copy li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #263128;
  font-weight: 700;
}

.offer-stage__copy li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green);
}

.offer-mockup {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 430px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(77, 240, 143, 0.18), transparent 36%),
    linear-gradient(225deg, rgba(98, 108, 255, 0.18), transparent 42%),
    #171c15;
}

.mockup-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  justify-content: space-between;
}

.mockup-topline span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
}

.mockup-topline span:first-child {
  background: rgba(77, 141, 255, 0.18);
  color: #ffffff;
}

.mockup-offer {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.mockup-offer span,
.mockup-metrics span,
.mockup-funnel span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mockup-offer strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.04;
}

.mockup-offer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.45;
}

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

.mockup-metrics article {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.mockup-metrics strong {
  display: block;
  margin-top: 9px;
  color: #ffffff;
  font-size: clamp(1.08rem, 2vw, 1.46rem);
  line-height: 1.08;
}

.mockup-funnel {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(9, 16, 13, 0.36);
}

.mockup-funnel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mockup-funnel b {
  color: #ffffff;
  font-size: 0.9rem;
}

.mockup-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  height: 96px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(9, 16, 13, 0.64);
}

.mockup-chart i {
  display: block;
  height: var(--h);
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--green), var(--brand-violet));
  transform-origin: bottom;
  animation: chartPulse 2.8s ease-in-out infinite;
}

.mockup-chart i:nth-child(2) {
  animation-delay: -0.4s;
}

.mockup-chart i:nth-child(3) {
  animation-delay: -0.8s;
}

.mockup-chart i:nth-child(4) {
  animation-delay: -1.2s;
}

.mockup-chart i:nth-child(5) {
  animation-delay: -1.6s;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.metric-card {
  min-height: 260px;
  padding: 22px;
}

.metric-card--accent {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.34), rgba(98, 108, 255, 0.18)),
    rgba(255, 255, 255, 0.09);
}

.metric-card strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.metric-card p {
  margin: 44px 0 0;
  color: rgba(246, 244, 234, 0.64);
  line-height: 1.56;
}

.split-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(28px, 4.5vw, 56px);
  align-items: start;
}

.split-layout .section__head {
  max-width: 560px;
}

.split-layout .section__head h2 {
  font-size: clamp(2.5rem, 4.15vw, 3.75rem);
  line-height: 1.02;
}

.split-layout .button {
  margin-top: 28px;
}

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

.audience-card {
  min-height: 236px;
  padding: 22px;
  border-color: rgba(9, 16, 13, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 56px rgba(17, 21, 15, 0.09);
  backdrop-filter: none;
}

.audience-card__icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 52, 113, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 52, 113, 0.13), rgba(98, 108, 255, 0.13)),
    #ffffff;
  color: var(--rose-dark);
  box-shadow: 0 12px 30px rgba(255, 52, 113, 0.12);
}

.audience-card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card h3 {
  margin: 34px 0 0;
  font-size: 1.35rem;
}

.audience-card p {
  margin: 12px 0 0;
  color: var(--muted-dark);
  line-height: 1.6;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.process-step {
  min-height: 256px;
  padding: 22px;
}

.process-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--paper);
  color: #11150f;
  font-weight: 900;
}

.process-step h3 {
  margin: 48px 0 0;
  font-size: 1.25rem;
}

.process-step p {
  margin: 12px 0 0;
  color: rgba(246, 244, 234, 0.64);
  line-height: 1.55;
}

.payment-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
}

.payment-strip span {
  display: grid;
  min-height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(246, 244, 234, 0.76);
  font-weight: 800;
}

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

details {
  border-color: rgba(9, 16, 13, 0.13);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 56px rgba(17, 21, 15, 0.09);
  color: var(--ink);
  backdrop-filter: none;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #11150f;
  color: var(--paper);
  font-weight: 900;
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: 0;
  padding: 0 20px 22px;
  color: var(--muted-dark);
  line-height: 1.62;
}

.cta-section {
  padding: clamp(74px, 9vw, 120px) 0;
  background:
    linear-gradient(135deg, rgba(77, 240, 143, 0.18), transparent 38%),
    linear-gradient(225deg, rgba(98, 108, 255, 0.18), transparent 44%),
    #0b0f0b;
}

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

.cta-section h2 {
  width: min(900px, 100%);
  margin-inline: auto;
}

.cta-section p {
  width: min(690px, 100%);
  margin-inline: auto;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 110px;
  margin: 0 auto;
  color: rgba(246, 244, 234, 0.68);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer a:hover {
  color: var(--paper);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(77, 240, 143, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(77, 240, 143, 0);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@keyframes streamPulse {
  70% {
    box-shadow: 0 0 0 10px rgba(77, 255, 154, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(77, 255, 154, 0);
  }
}

@keyframes streamFlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(430%);
  }
}

@keyframes chartPulse {
  0%,
  100% {
    transform: scaleY(0.86);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes tickPop {
  0% {
    transform: translateY(0);
  }
  42% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (min-width: 761px) {
  .hero {
    min-height: 100svh;
    padding-top: clamp(70px, 10svh, 112px);
    padding-bottom: clamp(18px, 4svh, 34px);
  }

  .hero h1 {
    margin-top: clamp(14px, 2.3svh, 24px);
    font-size: clamp(2.75rem, min(6.8vw, 10.4svh), 6.35rem);
  }

  .hero h1::after {
    display: block;
    height: clamp(5px, 0.9svh, 8px);
    margin-top: clamp(12px, 2.1svh, 22px);
  }

  .hero p {
    margin-top: clamp(16px, 2.5svh, 26px);
    font-size: clamp(1rem, min(1.7vw, 2.35svh), 1.32rem);
    line-height: 1.52;
  }

  .hero__actions {
    margin-top: clamp(18px, 3.1svh, 34px);
  }

  .hero__checks {
    margin-top: clamp(10px, 2svh, 20px);
  }

  .hero__stats {
    margin-top: clamp(22px, 4.8svh, 64px);
  }

  .hero__stats article {
    min-height: clamp(112px, 17svh, 150px);
    padding: clamp(16px, 2.3svh, 20px);
  }
}

@media (max-height: 680px) and (min-width: 761px) {
  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, min(6.2vw, 9.4svh), 5rem);
  }

  .hero p {
    max-width: 700px;
  }

  .hero__checks {
    margin-top: 8px;
  }
}

@media (max-width: 1040px) {
  .nav {
    position: fixed;
    top: 88px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(17, 21, 15, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

  .nav a {
    min-height: 44px;
  }

  .menu-toggle {
    display: grid;
  }

  .traffic-panel--top {
    top: 16%;
    left: -132px;
    opacity: 0.44;
  }

  .traffic-panel--side {
    top: 36%;
    right: -132px;
    opacity: 0.44;
  }

  .traffic-panel--rate {
    bottom: 24%;
    left: -118px;
    opacity: 0.44;
  }

  .traffic-panel--bottom {
    display: none;
  }

  .hero__stats,
  .metric-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-stage,
  .split-layout,
  .faq-layout,
  .stream-band__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header {
    width: 100%;
    min-height: 64px;
    margin-top: 0;
    padding: 8px 10px;
  }

  .brand__logo {
    width: 148px;
  }

  .nav {
    top: 72px;
  }

  .link-action {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .menu-toggle {
    display: none;
  }

  .button--small {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero__content {
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
    line-height: 0.98;
  }

  .hero h1::after {
    width: min(360px, 68vw);
    margin-left: 0;
    margin-right: 0;
  }

  .hero p {
    margin-left: 0;
  }

  .hero__actions,
  .hero__checks {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero__checks span {
    flex: 1 1 100%;
  }

  .hero__stats,
  .metric-grid,
  .audience-grid,
  .process,
  .payment-strip {
    grid-template-columns: 1fr;
  }

  .hero__stats article,
  .metric-card,
  .audience-card,
  .process-step {
    min-height: auto;
  }

  .traffic-panel {
    width: 168px;
    padding: 12px;
  }

  .traffic-panel--top {
    display: none;
  }

  .traffic-panel--side {
    display: none;
  }

  .traffic-panel--rate {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .section__head,
  .section__head--wide {
    text-align: left;
  }

  .section__head h2,
  .cta-section h2 {
    font-size: clamp(2.1rem, 11vw, 3.3rem);
  }

  .split-layout .section__head h2 {
    font-size: clamp(2.1rem, 10.5vw, 3.05rem);
  }

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

  .stream-band {
    padding: 32px 0;
  }

  .stream-band__copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .stream-lines div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .offer-mockup {
    min-height: auto;
  }

  .mockup-chart {
    height: 86px;
  }

  .metric-card p {
    margin-top: 28px;
  }

  .audience-card h3,
  .process-step h3 {
    margin-top: 28px;
  }

  .cta-section__inner {
    text-align: left;
  }

  .footer {
    display: grid;
    padding: 28px 0;
  }

  .footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .header__actions {
    gap: 8px;
  }

  .brand__logo {
    width: 132px;
  }

  .button--small {
    padding: 0 10px;
  }

  .mockup-metrics {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .hero__stats,
  .offer-switcher,
  .split-layout,
  .faq-layout,
  .cta-section__inner,
  .metric-grid,
  .process,
  .payment-strip,
  .footer {
    width: calc(100% - 24px);
  }
}

/* Palette matched to a more serious affiliate landing: light shell, blue primary, teal performance accent. */
.header {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.header.is-scrolled,
.header.is-open {
  border-bottom: 1px solid rgba(32, 40, 58, 0.1);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 46px rgba(36, 53, 84, 0.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
}

.brand__mark {
  background:
    linear-gradient(135deg, #ff3471 0%, #626cff 44%, #2563eb 100%),
    var(--green);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(77, 141, 255, 0.25);
}

.brand__text {
  color: var(--brand-violet);
}

.nav {
  border-color: transparent;
  background: transparent;
}

.nav a,
.link-action {
  color: var(--muted-dark);
}

.nav a:hover {
  background: rgba(77, 141, 255, 0.1);
  color: var(--ink);
}

.button {
  background: var(--green);
  color: #ffffff;
}

.button:hover {
  box-shadow: 0 18px 42px rgba(77, 141, 255, 0.26);
}

.button--ghost {
  border-color: rgba(32, 40, 58, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.button--ghost:hover {
  box-shadow: 0 16px 38px rgba(36, 53, 84, 0.13);
}

.button--dark {
  background: var(--ink);
  color: #ffffff;
}

.button--dark:hover {
  box-shadow: 0 18px 42px rgba(32, 40, 58, 0.2);
}

.menu-toggle {
  border-color: rgba(32, 40, 58, 0.12);
  background: rgba(246, 249, 252, 0.9);
  color: var(--ink);
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 246, 251, 0.72) 58%, rgba(243, 246, 251, 0.14) 100%),
    linear-gradient(125deg, rgba(37, 99, 235, 0.16), transparent 48%),
    linear-gradient(235deg, rgba(98, 108, 255, 0.13), transparent 52%);
}

.eyebrow,
.section__kicker {
  border-color: rgba(32, 40, 58, 0.13);
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted-dark);
}

.section--dark .section__kicker,
.cta-section .section__kicker {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

.pulse-dot {
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(77, 141, 255, 0.44);
}

.hero p,
.section__head p,
.offer-stage__copy p,
.audience-card p,
details p {
  color: var(--muted-dark);
}

.hero__checks span {
  border-color: rgba(23, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted-dark);
}

.hero__stats article,
.traffic-panel,
.offer-stage__copy,
.audience-card,
details {
  border-color: rgba(23, 32, 51, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  box-shadow: 0 22px 58px rgba(36, 53, 84, 0.13);
}

.hero__stats span,
.metric-card span,
.traffic-panel span:last-child {
  color: var(--muted);
}

.hero__stats strong,
.traffic-panel strong,
.audience-card h3,
summary {
  color: var(--ink);
}

.hero__stats p {
  color: var(--muted);
}

.traffic-panel__label {
  color: var(--green);
}

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

.section--dark {
  background: #20283a;
  color: #ffffff;
}

.section--dark .section__head p,
.section--dark .metric-card p,
.section--dark .process-step p {
  color: rgba(255, 255, 255, 0.68);
}

.section--light .section__kicker,
.faq-layout .section__kicker {
  border-color: rgba(32, 40, 58, 0.13);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted-dark);
}

.segmented {
  border-color: rgba(32, 40, 58, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.segmented__button {
  color: var(--muted-dark);
}

.segmented__button.is-active {
  background: var(--ink);
  color: #ffffff;
}

.offer-stage__copy > span,
.audience-card__icon {
  color: var(--rose-dark);
}

.offer-stage__copy li {
  color: var(--ink);
}

.offer-stage__copy li::before {
  background: var(--green);
}

.offer-mockup {
  border-color: rgba(32, 40, 58, 0.1);
  background:
    linear-gradient(135deg, rgba(77, 141, 255, 0.32), transparent 40%),
    linear-gradient(225deg, rgba(98, 108, 255, 0.2), transparent 44%),
    #20283a;
  box-shadow: 0 24px 72px rgba(36, 53, 84, 0.14);
}

.mockup-chart {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(23, 31, 49, 0.72);
}

.mockup-chart i {
  background: linear-gradient(180deg, var(--green), var(--brand-violet));
}

.metric-card,
.process-step {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 72px rgba(4, 13, 30, 0.22);
}

.metric-card--accent {
  background:
    linear-gradient(135deg, rgba(77, 141, 255, 0.42), rgba(98, 108, 255, 0.18)),
    rgba(255, 255, 255, 0.09);
}

.process-step span,
summary::after {
  background: var(--green);
  color: #ffffff;
}

.payment-strip span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.audience-card,
details {
  background: rgba(255, 255, 255, 0.92);
}

.cta-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #2563eb 0%, #626cff 52%, #ff3471 100%);
  color: #ffffff;
}

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

.cta-section .button--hero {
  background: #ffffff;
  color: var(--ink);
}

.cta-section .button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.footer {
  color: var(--muted-dark);
}

.footer a:hover {
  color: var(--brand-violet);
}

@media (max-width: 1040px) {
  .header.is-open {
    background: rgba(255, 255, 255, 0.9);
  }

  .nav {
    border-color: rgba(32, 40, 58, 0.18);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96)),
      rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 72px rgba(36, 53, 84, 0.24);
    -webkit-backdrop-filter: blur(24px) saturate(1.35);
    backdrop-filter: blur(24px) saturate(1.35);
  }

  .nav a {
    background: rgba(255, 255, 255, 0.58);
  }

  .nav a:hover {
    background: rgba(77, 141, 255, 0.11);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(77, 141, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(77, 141, 255, 0);
  }
}

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