:root {
  --color-primary: #dc143c;
  --color-primary-hover: #ff1744;
  --color-primary-dark: #b01030;
  --color-primary-glow: rgba(220, 20, 60, .3);

  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #0d0d0d;
  --color-bg-tertiary: #1a1a1a;
  --color-bg-elevated: #1a1a1a;
  --color-bg-surface: rgba(255, 255, 255, .03);
  --grid-line-color: #111111;

  --white: #ffffff;
  --paper: #f4f5f7;
  --paper-2: #eaedf2;
  --black: #0a0a0a;
  --ink: #121212;
  --muted-dark: #667085;
  --muted-light: rgba(255, 255, 255, .62);
  --border-dark: rgba(255, 255, 255, .09);
  --border-light: rgba(10, 10, 10, .08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--color-bg-primary);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--color-primary-hover);
  border-radius: 20px;
  border: 2px solid transparent;
}

body.menu-open {
  overflow: hidden;
}

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

.gradient-text {
  background: linear-gradient(135deg,
      #ff499f 0%,
      #dc143c 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

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

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.header.is-scrolled {
  background: rgba(10, 10, 10, .82);
  border-color: var(--border-dark);
  backdrop-filter: blur(18px);
}

.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.logo {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  line-height: .86;
  font-size: 28px;
  font-weight: 950;
}

.logo small {
  width: fit-content;
  margin-top: 3px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 16px;
}

.nav a {
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}

.nav a:hover {
  color: #fff;
}

#benefits {
  padding-top: 3rem;
}

.header__link {
  margin-left: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 800;
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  padding: 0;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

.section {
  position: relative;
  padding: 118px 0;
}

.section--dark {
  background: var(--color-bg-primary);
  color: #fff;
}

.section--light {
  background: var(--paper);
  color: var(--ink);
  border-radius: 50px;
}

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

.hero {
  padding: 128px 0 0;
  overflow: hidden;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-color) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 62% 32%, black, transparent 68%);
  opacity: .72;
}

.hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  top: 8%;
  right: 9%;
  border-radius: 50%;
  background: var(--color-primary);
  filter: blur(170px);
  opacity: .16;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 64px;
}

.label {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--color-primary-hover);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.label--dark {
  color: var(--color-primary);
}

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

h1 {
  max-width: 780px;
  font-size: clamp(54px, 7vw, 94px);
  line-height: .91;
  font-weight: 900;
}

.lead {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted-light);
  font-size: 20px;
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 850;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--color-primary);
  color: #fff;
}

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

.button--secondary {
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, .03);
  color: #fff;
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__badges span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 720;
}

.hero__media {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__media video {
  width: 100%;
  border-radius: 30px;
}

.product-frame {
  width: min(520px, 100%);
  aspect-ratio: 1 / 1.05;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 36px;
  background: #111;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
  transform: rotate(2deg);
}

.product-frame__bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.product-frame__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
}

.product-placeholder,
.large-placeholder,
.media-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, .22);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    #151515;
  background-size: 28px 28px;
}

.product-placeholder {
  height: calc(100% - 42px);
  border-radius: 26px;
  text-align: center;
  padding: 34px;
}

.placeholder-label {
  position: absolute;
  top: 24px;
  left: 24px;
  color: rgba(255, 255, 255, .38);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
}

.placeholder-title {
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: .98;
}

.placeholder-subtitle {
  max-width: 360px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .48);
  font-size: 14px;
  line-height: 1.45;
}

.metric-card {
  position: absolute;
  width: 184px;
  padding: 20px;
  border: 1px solid rgba(10, 10, 10, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  color: #111;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.metric-card span {
  display: block;
  color: #6b7280;
  color: #6b7280;
  font-size: 13px;
  font-weight: 760;
}

.metric-card strong {
  display: block;
  margin-top: 6px;
  font-size: 34px;
  letter-spacing: -.06em;
}

.metric-card--top {
  top: 82px;
  right: -30px;
  transform: rotate(9deg);
}

.metric-card--bottom {
  left: -23px;
  bottom: 65px;
  transform: rotate(-8deg);
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-bottom: none;
  border-radius: 34px 34px 0 0;
  background: var(--paper);
  color: #111;
  overflow: hidden;
}

.hero__stats div {
  padding: 42px;
  border-right: 1px solid var(--border-light);
}

.hero__stats div:last-child {
  border-right: 0;
}

.hero__stats strong {
  display: block;
  font-size: clamp(30px, 4.4vw, 45px);
  line-height: .95;
  letter-spacing: -.065em;
}

.hero__stats span {
  display: block;
  margin-top: 12px;
  color: var(--muted-dark);
  font-weight: 700;
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: .98;
}

.section-heading p {
  max-width: 560px;
  margin-top: 20px;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.55;
}

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

.benefit-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 18px 60px rgba(16, 24, 40, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.benefit-img {
  width: 100%;
  margin-bottom: 10px;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 20, 60, .24);
  box-shadow: 0 26px 80px rgba(16, 24, 40, .08);
}

.benefit-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: .9fr 1fr;
  align-items: end;
  padding: 0;
  position: relative;
  overflow: visible;
}

.benefit-card--wide div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.benefit-card--wide div h3 {
  font-size: clamp(45px, 5.9vw, 53px);
}

.media-revshare {
  position: absolute;
  bottom: 0;
  left: 20px;
  height: 400px;
}

.media-placeholder {
  width: 100%;
  height: 156px;
  margin-bottom: 32px;
  border-color: rgba(10, 10, 10, .14);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, .05) 1px, transparent 1px),
    linear-gradient(rgba(10, 10, 10, .05) 1px, transparent 1px),
    #f5f6f8;
  background-size: 24px 24px;
  color: rgba(10, 10, 10, .38);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.card-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.benefit-card h3 {
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -.045em;
}

.benefit-card p {
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.55;
}

.benefit-payouts {
  position: relative;
  overflow: visible;
  padding-top: 115px;
}

.benefit-payouts img {
  position: absolute;

  top: 0px;
  left: 0;

  width: 100%;
  max-width: none;

  pointer-events: none;
  user-select: none;

  z-index: 5;
}

.benefit-payouts div {
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.section--numbers {
  overflow: hidden;
}

.section--numbers::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-color) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: .55;
  pointer-events: none;
}

.numbers-layout {
  position: relative;
  z-index: 1;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 34px;
  background: var(--border-dark);
}

.number-card {
  min-height: 190px;
  padding: 32px;
  background: #0d0d0d;
}

.number-card strong {
  display: block;
  font-size: clamp(50px, 7vw, 50px);
  line-height: .94;
  letter-spacing: -.065em;
}

.number-card span {
  display: block;
  margin-top: 16px;
  color: var(--muted-light);
  font-weight: 720;
}

.process-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.process-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-light);
}

.process-item:last-child {
    border-bottom: none;
}

.process-item span {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.process-item p {
  max-width: 540px;
  font-size: clamp(24px, 3vw, 22px);
  line-height: 1.04;
  font-weight: 850;
}

.tools-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}

.tools-panel {
  width: 100%;
  padding: 12px;
}

.large-placeholder {
  height: 100%;
  min-height: 536px;
  border-radius: 26px;
  text-align: center;
  padding: 36px;
}

.large-placeholder span {
  position: absolute;
  top: 24px;
  left: 24px;
  color: rgba(255, 255, 255, .38);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
}

.large-placeholder strong {
  max-width: 440px;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: .98;
  letter-spacing: -.06em;
}

.large-placeholder small {
  max-width: 390px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .48);
  font-size: 14px;
  line-height: 1.45;
}

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

.tool-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid var(--border-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, .025);
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -.025em;
}

.tool-row span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-row span img {
  width: 32px;
  height: 32px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 64px;
  align-items: end;
  padding: clamp(34px, 7vw, 76px);
  border: 1px solid var(--border-light);
  border-radius: 38px;
  background: var(--paper);
}

.final-cta h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: .96;
  letter-spacing: -.065em;
}

.final-cta p {
  margin-bottom: 30px;
  color: var(--muted-dark);
  font-size: 19px;
  line-height: 1.55;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--border-dark);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 1040px) {
  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .section--light {
    border-radius: 32px;
  }

  .header__link {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero__stats {
    border-radius: 26px;
    margin-bottom: 30px;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--border-dark);
    border-radius: 22px;
    background: rgba(12, 12, 12, .96);
    backdrop-filter: blur(18px);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 17px 16px;
    border-radius: 14px;
    font-size: 16px;
  }

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

  .hero__inner,
  .process-layout,
  .tools-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 520px;
  }

  .hero__stats,
  .benefit-grid,
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card--wide {
    grid-column: span 2;
  }

  .benefit-card--wide div {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

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

  .header__inner {
    min-height: 68px;
  }

  .nav {
    top: 68px;
  }

  .logo {
    font-size: 25px;
  }

  h1 {
    font-size: clamp(46px, 12vw, 45px);
  }

  .lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero__actions {
    margin-top: 30px;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .hero__badges {
    gap: 8px;
  }

  .hero__badges span {
    min-height: 33px;
    font-size: 12px;
  }

  .hero__media {
    min-height: 410px;
  }

  .product-frame {
    width: 88%;
    border-radius: 28px;
    transform: none;
  }

  .product-frame__bar {
    height: 36px;
  }

  .product-placeholder {
    border-radius: 21px;
    padding: 24px;
  }

  .placeholder-title {
    font-size: 30px;
  }

  .placeholder-subtitle {
    font-size: 13px;
  }

  .media-revshare {
    display: none;
  }

  .metric-card {
    width: 142px;
    padding: 15px;
    border-radius: 18px;
  }

  .metric-card strong {
    font-size: 26px;
  }

  .metric-card--top {
    top: 26px;
    left: 0;
  }

  .metric-card--bottom {
    right: 0;
    bottom: 34px;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero__inner {
    display: block;
  }

  .hero__stats div {
    padding: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .hero__stats div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(36px, 11vw, 46px);
  }

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

  .benefit-card,
  .number-card {
    min-height: auto;
  }

  .benefit-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .media-placeholder--dark {
    min-height: 210px;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 25px 0;
  }

  .process-item p {
    font-size: 26px;
  }

  .tools-panel {
    min-height: 360px;
    border-radius: 28px;
  }

  .large-placeholder {
    min-height: 336px;
    border-radius: 22px;
  }

  .large-placeholder strong {
    font-size: 30px;
  }

  .tool-row {
    min-height: 68px;
    padding: 0 18px;
    border-radius: 18px;
    font-size: 17px;
  }

  .final-cta {
    padding: 30px;
    border-radius: 28px;
    gap: 28px;
  }

  .final-cta p {
    font-size: 16px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}