/* ========================================
   RESET CSS
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f8fafc;
}

/* Light thin scrollbar */
html::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

html::-webkit-scrollbar-track {
  background: #f8fafc;
}

html::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Prevent double scrollbar on body */
body {
  scrollbar-width: none;
}

/* Lenis Smooth Scroll */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ========================================
   ROOT VARIABLES
   ======================================== */
:root {
  /* Colors */
  --primary-blue: #0047ff;
  --primary-blue-hover: #0039d1;
  --btn-primary-bg: #0025ff;
  --btn-primary-hover: #001fe0;
  --btn-primary-shadow: rgba(0, 37, 255, 0.28);
  --btn-primary-inset: rgba(63, 157, 255, 0.35);
  --btn-shine-mid: rgba(167, 255, 242, 0.55);
  --btn-ellipse: #3f9dff;
  --light-orange: #ffc156;
  --text-dark: #0b0f19;
  --text-grey: #6b7280;
  --text-muted: #9ca3af;
  --bg-white: #ffffff;
  --bg-soft: #f3f4f6;
  --bg-blue-soft: #e8f1ff;
  --page-surface: #f8fbff;
  --border-light: #e5e7eb;
  --success-green: #22c55e;
  --nav-shadow: 0 0.25rem 1.5rem rgba(15, 23, 42, 0.08);
  --card-shadow: 0 1.25rem 3.75rem rgba(15, 23, 42, 0.1);
  --line-blue: #7eb6ff;
  --hero-img-glow: rgba(0, 80, 255, 0.18);
  --hero-payout-glow-a: rgba(0, 116, 255, 0.55);
  --hero-payout-glow-b: rgba(13, 189, 247, 0.28);

  /* Typography */
  --font-family: "Figtree", sans-serif;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Font sizes (rem) */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 3rem;
  --fs-4xl: 3.75rem;
  --fs-hero: clamp(2.375rem, 4vw + 1.25rem, 6rem);
  --fs-display: clamp(2.25rem, 3.2vw + 1.1rem, 4rem);
  --fs-section: clamp(2.25rem, 3.2vw + 1rem, 4rem);
  --fs-subhead: clamp(1.25rem, 1.2vw + 0.85rem, 1.875rem);
  --fs-stat: clamp(1.125rem, 1.1vw + 0.75rem, 1.875rem);
  --fs-stat-lg: clamp(1.375rem, 1.4vw + 0.85rem, 2.125rem);

  /* Radii */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-pill: 6.25rem;
  --radius-full: 50%;

  /* Layout */
  --max-width: 72rem;
  --nav-height: 3.5rem;
}

/* Brand uses the same blue creator theme (colors, buttons, accents) */

/* ========================================
   BASE
   ======================================== */
body {
  font-family: var(--font-family);
  font-weight: var(--font-regular);
  font-size: var(--fs-base);
  color: var(--text-dark);
  background: #f1f5f9;
  overflow-x: clip;
  overflow-y: visible;
}

html {
  overflow-x: clip;
}

@media (max-width: 1023.98px) {
  html {
    overflow-x: clip;
    max-width: 100%;
  }

  body {
    overflow-x: clip;
    overflow-y: visible !important;
    max-width: 100%;
  }
}

.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem 6.5rem;
  background-color: var(--page-surface);
  overflow: hidden;
  transition: background-color 0.45s ease;
}

.page__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/content-hero-bg.avif");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
  animation: heroBgFloat 12s ease-in-out infinite;
  transition: opacity 0.45s ease;
  will-change: transform;
}

.page>.container {
  position: relative;
  z-index: 1;
}

/* Seamless blend transition to About Us using blend-elipsis.webp */
.page::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6rem;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  animation: heroBlendDrift 4.5s ease-in-out infinite;
  will-change: transform, opacity;
}

.page.is-blend-ready::after {
  background-image: url("../assets/images/blend-elipsis.webp");
}

@keyframes heroBgFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(8px, -14px) scale(1.025);
  }

  66% {
    transform: translate(-6px, -8px) scale(1.015);
  }
}

@keyframes heroBlendDrift {

  0%,
  100% {
    opacity: 0.82;
    transform: translateY(0) scaleX(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-8px) scaleX(1.02);
  }
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.12);
}

.nav__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.725rem;
  flex-shrink: 0;
  background: transparent;
  text-decoration: none;
}

.nav__logo svg,
.nav__logo .nav__logo-mark--creator,
.nav__logo .nav__logo-mark--brand {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.nav__logo-mark--brand {
  display: none;
}

.nav__menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav__menu-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: #0f172a;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav--open .nav__menu-bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav--open .nav__menu-bar:nth-child(2) {
  opacity: 0;
}

.nav--open .nav__menu-bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.nav__wordmark {
  display: inline-block;
  font-size: 22px;
  letter-spacing: -0.5px;
  font-weight: 600;
  line-height: 120%;
  color: #0f172a;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 400;
  color: #111111;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--primary-blue);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav__drawer-actions {
  display: none;
  list-style: none;
}

.nav__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  height: 50px;
  padding: 8px 14px 8px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  flex-shrink: 0;
  z-index: 1;
  border: 0;
  transform: none;
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    box-shadow 0.4s ease;
}

.nav__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 15%,
      rgba(255, 255, 255, 0.12) 35%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0.12) 65%,
      transparent 85%);
  transform: translateX(-140%) skewX(-25deg);
  opacity: 0;
  transition:
    transform 1.35s cubic-bezier(0.33, 0.1, 0.15, 1),
    opacity 0.45s ease;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}

.nav__btn:hover::before {
  transform: translateX(260%) skewX(-25deg);
  opacity: 1;
  transition:
    transform 1.35s cubic-bezier(0.33, 0.1, 0.15, 1),
    opacity 0.3s ease;
}

.nav__btn:hover,
.nav__btn:active {
  transform: none;
}

.nav__btn-label {
  position: relative;
  z-index: 3;
}

.nav__btn-icon {
  position: relative;
  z-index: 3;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav__btn-ellipse {
  border-radius: 50%;
  flex-shrink: 0;
  width: 154px;
  height: 48px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.nav__btn--signin {
  background: #e2e8f0;
  color: #0f172a;
}

.nav__btn--signin .nav__btn-ellipse {
  background: #ffffff;
  filter: blur(20px);
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav__btn--signin::before {
  background: linear-gradient(105deg,
      transparent 15%,
      rgba(255, 255, 255, 0.35) 35%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(255, 255, 255, 0.35) 65%,
      transparent 85%);
}

.nav__btn--signin:hover {
  background: #d5dde8;
  color: #0f172a;
  box-shadow: none;
}

.nav__btn--launch {
  background: var(--btn-primary-bg, #0025ff);
  color: #ffffff;
  border-radius: 14px;
}

.nav__btn--launch .nav__btn-ellipse {
  background: rgba(255, 255, 255, 0.6);
  filter: blur(22px);
  top: -24px;
}

.nav__btn--launch::before {
  background: linear-gradient(105deg,
      transparent 15%,
      rgba(255, 255, 255, 0.12) 35%,
      var(--btn-shine-mid, rgba(167, 255, 242, 0.55)) 50%,
      rgba(255, 255, 255, 0.2) 65%,
      transparent 85%);
}

.nav__btn--launch:hover {
  background: var(--btn-primary-hover, #001fe0);
  color: #ffffff;
  box-shadow: none;
}

.nav__btn--launch:hover .nav__btn-icon {
  transform: translate(2px, -2px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  padding-top: clamp(1.5rem, 3vw, 2.75rem);
}

/* Toggle */
.toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  margin-top: 2rem;
  margin-bottom: 2rem !important;
  background: #e2e8f0;
  border-radius: 40px;
  box-shadow: inset 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
  border: none;
  isolation: isolate;
}

.toggle__slider {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: #000000;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(11, 15, 25, 0.22);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}

.toggle[data-audience="creator"] .toggle__slider {
  transform: translateX(0);
}

.toggle[data-audience="brand"] .toggle__slider {
  transform: translateX(100%);
}

.toggle__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.625rem;
  font-size: 0.9375rem;
  line-height: 1.2;
  font-weight: 600;
  color: #334155;
  border-radius: var(--radius-pill);
  background: transparent !important;
  border: none;
  cursor: pointer;
  box-shadow: none !important;
  transition: color 0.3s ease;
}

.toggle__btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: color 0.25s ease, stroke 0.25s ease;
}

.toggle__btn--active {
  color: #ffffff !important;
}

.toggle__btn:not(.toggle__btn--active):hover {
  color: #0f172a;
}

.hero__title {
  max-width: 60rem;
  margin-bottom: 1rem;
  font-size: var(--fs-hero);
  line-height: 1.15;
  letter-spacing: clamp(-0.08rem, -0.15vw, -0.125rem);
  font-weight: 700;
  color: #040825;
}

.hero__title-line {
  display: block;
}

.audience-copy[hidden],
.audience-copy[data-audience-copy][hidden] {
  display: none !important;
}

html[data-audience="creator"] .audience-copy[data-audience-copy="brand"],
html[data-audience="brand"] .audience-copy[data-audience-copy="creator"] {
  display: none !important;
}

html[data-audience="creator"] .audience-copy[data-audience-copy="creator"],
html[data-audience="brand"] .audience-copy[data-audience-copy="brand"] {
  display: block !important;
}

html[data-audience="creator"] .nav__links>.audience-copy[data-audience-copy="creator"],
html[data-audience="brand"] .nav__links>.audience-copy[data-audience-copy="brand"] {
  display: list-item !important;
}

html[data-audience="creator"] .why__grid.audience-copy[data-audience-copy="creator"],
html[data-audience="brand"] .why__grid.audience-copy[data-audience-copy="brand"],
html[data-audience="creator"] .faq__grid.audience-copy[data-audience-copy="creator"],
html[data-audience="brand"] .faq__grid.audience-copy[data-audience-copy="brand"] {
  display: flex !important;
}

html[data-audience="creator"] .earnings__eyebrow.audience-copy[data-audience-copy="creator"],
html[data-audience="brand"] .earnings__eyebrow.audience-copy[data-audience-copy="brand"],
html[data-audience="creator"] .eyebrow.audience-copy[data-audience-copy="creator"],
html[data-audience="brand"] .eyebrow.audience-copy[data-audience-copy="brand"],
html[data-audience="creator"] .about__eyebrow,
html[data-audience="brand"] .about__eyebrow {
  display: inline-flex !important;
}

html[data-audience="creator"] .earnings-stats__item.audience-copy[data-audience-copy="creator"],
html[data-audience="brand"] .earnings-stats__item.audience-copy[data-audience-copy="brand"] {
  display: block !important;
}

html[data-audience="creator"] a.audience-copy[data-audience-copy="creator"].btn,
html[data-audience="brand"] a.audience-copy[data-audience-copy="brand"].btn {
  display: inline-flex !important;
}

html[data-audience="creator"] .site-footer__discord-col.audience-copy[data-audience-copy="creator"] {
  display: flex !important;
}

html[data-audience="brand"] .site-footer__discord-col {
  display: flex !important;
}

@media (min-width: 992px) {
  html[data-audience="brand"] .site-footer__col-brand {
    flex: 0 0 auto;
    width: 33.33333333%;
    max-width: 33.33333333%;
  }

  html[data-audience="brand"] .site-footer__col-links,
  html[data-audience="brand"] .site-footer__col-more {
    flex: 0 0 auto;
    width: 16.66666667%;
    max-width: 16.66666667%;
  }

  html[data-audience="brand"] .site-footer__discord-col {
    display: flex !important;
    flex: 0 0 auto;
    width: 33.33333333%;
    max-width: 33.33333333%;
    justify-content: flex-end;
    align-items: flex-start;
  }

  /* Book a Demo: keep creator-style footer with Discord */
  html[data-audience="brand"] body.book-demo-page .site-footer__col-brand {
    flex: 0 0 auto;
    width: 33.33333333%;
    max-width: 33.33333333%;
  }

  html[data-audience="brand"] body.book-demo-page .site-footer__col-links,
  html[data-audience="brand"] body.book-demo-page .site-footer__col-more {
    flex: 0 0 auto;
    width: 16.66666667%;
    max-width: 16.66666667%;
  }

  html[data-audience="brand"] body.book-demo-page .site-footer__discord-col {
    display: flex !important;
    flex: 0 0 auto;
    width: 33.33333333%;
    max-width: 33.33333333%;
    justify-content: flex-end;
    align-items: flex-start;
  }
}

body.book-demo-page .site-footer__discord-col {
  display: flex !important;
}

body.book-demo-page .site-footer__discord-icon {
  width: 21px;
  height: 16px;
  color: #0f172a;
}

body.book-demo-page .site-footer__cta-btn {
  margin-top: 2.25rem;
}

@media (max-width: 575.98px) {
  body.book-demo-page .site-footer__cta-btn {
    margin-top: 1.25rem;
  }
}

body.book-demo-page .site-footer__discord-icon path {
  fill: #0f172a;
}

@media (max-width: 991.98px) {
  body.book-demo-page .site-footer__discord-col {
    justify-content: flex-start !important;
    margin-top: 1.5rem;
  }

  body.book-demo-page .site-footer__discord-wrap {
    width: fit-content;
    max-width: 100%;
    align-items: flex-start;
  }

  body.book-demo-page .site-footer__discord {
    width: fit-content;
    max-width: 100%;
  }
}

html[data-audience="brand"] .hero__title {
  max-width: min(100%, 58rem);
}

@media (min-width: 992px) {
  html[data-audience="brand"] body:not(.pricing-page) .hero__title {
    margin-bottom: 1.75rem;
  }
}

html[data-audience="brand"] .hero__title [data-audience-copy="brand"] {
  display: flex !important;
  flex-direction: column;
  align-items: center;
}

html[data-audience="brand"] .hero__title [data-audience-copy="brand"] br {
  display: none;
}

html[data-audience="brand"] .hero__title .hero__title-line {
  display: block;
  white-space: nowrap;
}

.hero__subtitle {
  max-width: 48rem;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: var(--font-regular);
  line-height: 1.6;
  color: var(--text-grey);
}

html[data-audience="brand"] .hero__subtitle[data-audience-copy="brand"] {
  max-width: 42rem;
}

.hero__ctas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 1.75rem;
  font-size: var(--fs-base);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-pill);
  overflow: hidden;
  z-index: 1;
  border: 0.0625rem solid transparent;
  transform: none;
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* Inner shine only ? no button scale */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 15%,
      rgba(255, 255, 255, 0.12) 35%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0.12) 65%,
      transparent 85%);
  transform: translateX(-140%) skewX(-25deg);
  opacity: 0;
  transition:
    transform 1.35s cubic-bezier(0.33, 0.1, 0.15, 1),
    opacity 0.45s ease;
  z-index: 0;
  pointer-events: none;
}

.btn:hover::before {
  transform: translateX(260%) skewX(-25deg);
  opacity: 1;
  transition:
    transform 1.35s cubic-bezier(0.33, 0.1, 0.15, 1),
    opacity 0.3s ease;
}

.btn:hover,
.btn:active {
  transform: none;
}

.btn--primary {
  position: relative;
  isolation: isolate;
  background: var(--btn-primary-bg);
  color: var(--bg-white);
  padding: 22px 36px;
  height: 60px;
  min-height: 60px;
  font-size: 1rem;
  line-height: 1;
  box-sizing: border-box;
  overflow: hidden;
  border: none;
}

.btn--primary::after {
  content: "";
  display: block;
  background: var(--btn-ellipse, #3f9dff);
  border-radius: 50%;
  flex-shrink: 0;
  width: 215px;
  height: 48px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.btn--primary::before {
  z-index: 1;
  background: linear-gradient(105deg,
      transparent 15%,
      rgba(255, 255, 255, 0.12) 35%,
      var(--btn-shine-mid) 50%,
      rgba(255, 255, 255, 0.2) 65%,
      transparent 85%);
  border-radius: inherit;
}

.btn--primary:hover {
  background: var(--btn-primary-hover);
  color: var(--bg-white);
  border: none;
  box-shadow: none;
}

/* ≥576px: content primary + secondary buttons (exclude header/nav + footer CTA) */
@media (min-width: 576px) {

  .btn--primary:not(.site-footer__cta-btn):not(.nav__btn):not(.nav__btn--launch):not(.nav__btn--signin),
  .btn--secondary:not(.site-footer__cta-btn):not(.nav__btn),
  .hero__ctas .btn--primary,
  .hero__ctas .btn.btn--primary,
  .hero__ctas .btn--secondary,
  .hero__ctas .btn.btn--secondary,
  .pricing-fee__cta.btn--primary,
  .why__header-action .btn--primary,
  .earnings-card__cta.btn--primary,
  .campaigns__cta.btn--primary {
    padding: 22px 36px !important;
    height: 60px !important;
    min-height: 60px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
  }

  .demo-form__submit.btn--primary {
    padding: 22px 36px !important;
    height: 60px !important;
    min-height: 60px !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
  }

  .hero__ctas {
    align-items: center;
  }

  .hero__ctas .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {

  .btn--primary:not(.site-footer__cta-btn):not(.nav__btn),
  .btn--secondary:not(.site-footer__cta-btn):not(.nav__btn) {
    padding: 0.9375rem 1.2rem;
    height: auto;
    min-height: 50px;
    font-size: 13px;
  }
}

.btn--secondary {
  background: #ffffff;
  color: var(--text-dark);
  padding: 22px 36px;
  height: 60px;
  min-height: 60px;
  font-size: 1rem;
  font-weight: var(--font-semibold);
  line-height: 1;
  box-sizing: border-box;
  border: 1px solid var(--border-light);
  box-shadow: none;
}

.btn--secondary::before {
  background: linear-gradient(105deg,
      transparent 15%,
      color-mix(in srgb, var(--primary-blue) 6%, transparent) 35%,
      color-mix(in srgb, var(--primary-blue) 20%, transparent) 50%,
      color-mix(in srgb, var(--primary-blue) 6%, transparent) 65%,
      transparent 85%);
}

.btn--secondary:hover {
  border-color: #cbd5e1;
  background: #ffffff;
  color: var(--text-dark);
  box-shadow: none;
}

/* No shadow on any button hover/focus/active */
.btn:hover,
.btn:focus,
.btn:active,
.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active,
.btn--secondary:hover,
.btn--secondary:focus,
.btn--secondary:active,
.nav__btn:hover,
.nav__btn:focus,
.nav__btn:active,
.nav__btn--launch:hover,
.nav__btn--launch:focus,
.nav__btn--launch:active,
.nav__btn--signin:hover,
.nav__btn--signin:focus,
.nav__btn--signin:active,
.site-footer__cta-btn:hover,
.site-footer__cta-btn:focus,
.site-footer__cta-btn:active,
.pricing-fee__cta:hover,
.pricing-fee__cta:focus,
.pricing-fee__cta:active,
.earnings-card__cta:hover,
.earnings-card__cta:focus,
.earnings-card__cta:active,
.campaigns__cta:hover,
.campaigns__cta:focus,
.campaigns__cta:active,
.demo-form__submit:hover,
.demo-form__submit:focus,
.demo-form__submit:active,
.site-footer__discord:hover,
.site-footer__discord:focus,
.site-footer__discord:active,
.toggle__btn:hover,
.toggle__btn:focus,
.toggle__btn:active {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}



/* ========================================
   HERO PAYOUT IMAGE
   ======================================== */
.hero-payout {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 4.5rem auto 2.5rem;
  animation: floatHeroImg 3.8s ease-in-out infinite;
  filter: drop-shadow(0 16px 40px var(--hero-img-glow));
  overflow: visible;
}

html[data-audience="creator"] .hero-payout {
  filter: none;
}

.hero-payout>.audience-copy {
  width: 100%;
  position: relative;
}

.hero-payout__glow {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0;
  height: 42%;
  border-radius: 50%;
  /* background: radial-gradient(ellipse at center,
      var(--hero-payout-glow-a) 0%,
      var(--hero-payout-glow-b) 40%,
      transparent 70%); */
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  animation: heroGlowPulse 2.8s ease-in-out infinite;
}

.hero-payout-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  animation: heroKenBurns 7s ease-in-out infinite;
  transform-origin: center center;
}

.hero-payout-mobile {
  display: none;
}

.hero-scene {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1364 / 553;
  text-align: left;
  overflow: visible;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-scene__sizer {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  visibility: hidden;
  pointer-events: none;
}

.hero-scene__sizer--mobile,
.hero-scene__wires--mobile {
  display: none;
}

.hero-scene__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  container-type: inline-size;
  container-name: hero-scene;
}

.hero-avatar,
.hero-scene__stack,
.hero-payout-card {
  --hs: calc(min(96vw, 1560px) / 1364);
}

.hero-scene__wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.hero-scene__wires--mobile {
  display: none;
}

.hero-wire-dash {
  stroke-dasharray: 10 36;
  stroke-dashoffset: 0;
  opacity: 0.4;
}

.hero-wires-flow.is-flowing .hero-wire-dash {
  animation:
    heroWireFlow 2.6s linear infinite,
    heroWirePulse 1.8s ease-in-out infinite;
  filter:
    drop-shadow(0 0 5px rgba(232, 246, 255, 0.95)) drop-shadow(0 0 10px rgba(13, 189, 247, 0.85)) drop-shadow(0 0 18px rgba(0, 116, 255, 0.45));
}

.hero-wires-flow.is-flowing .hero-wire-dash:nth-child(2) {
  animation-delay: -0.28s, -0.2s;
}

.hero-wires-flow.is-flowing .hero-wire-dash:nth-child(3) {
  animation-delay: -0.55s, -0.4s;
}

.hero-wires-flow.is-flowing .hero-wire-dash:nth-child(4) {
  animation-delay: -0.82s, -0.15s;
}

.hero-wires-flow.is-flowing .hero-wire-dash:nth-child(5) {
  animation-delay: -1.1s, -0.5s;
}

@keyframes heroWireFlow {
  to {
    stroke-dashoffset: -100;
  }
}

@keyframes heroWirePulse {

  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

.hero-wire-spark {
  stroke-dasharray: 16 84;
  stroke-dashoffset: 0;
  opacity: 0;
}

.hero-wires-spark.is-flowing .hero-wire-spark {
  animation: heroWireSpark 2.3s ease-in-out infinite;
  filter:
    drop-shadow(0 0 6px #ffffff) drop-shadow(0 0 14px rgba(13, 189, 247, 1));
}

.hero-wires-spark.is-flowing .hero-wire-spark:nth-child(2) {
  animation-delay: -0.3s;
}

.hero-wires-spark.is-flowing .hero-wire-spark:nth-child(3) {
  animation-delay: -0.6s;
}

.hero-wires-spark.is-flowing .hero-wire-spark:nth-child(4) {
  animation-delay: -0.9s;
}

.hero-wires-spark.is-flowing .hero-wire-spark:nth-child(5) {
  animation-delay: -1.2s;
}

@keyframes heroWireSpark {
  0% {
    stroke-dashoffset: 0;
    opacity: 0;
  }

  14% {
    opacity: 1;
  }

  72% {
    opacity: 0.75;
  }

  100% {
    stroke-dashoffset: -100;
    opacity: 0;
  }
}

.hero-avatar {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, calc(-54 * var(--hs)));
}

.hero-avatar--brooklyn {
  left: calc(208 / 1364 * 100%);
  top: calc(131 / 553 * 100%);
}

.hero-avatar--rebecca {
  left: calc(274 / 1364 * 100%);
  top: calc(289 / 553 * 100%);
}

.hero-avatar--simmons {
  left: calc(96 / 1364 * 100%);
  top: calc(446 / 553 * 100%);
}

.hero-edge {
  position: relative;
  padding: 0 1px;
  border: none;
  background: transparent;
}

.hero-edge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 0 1px;
  background: linear-gradient(281deg, #ffffff 0%, #ffffff 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
}

.hero-avatar__orb {
  position: relative;
  isolation: isolate;
  border-radius: 9999px;
  box-shadow: 0 0 16px rgba(0, 132, 255, 0.28);
}

.hero-avatar__orb-fill {
  border-radius: 9999px;
  overflow: hidden;
  padding: calc(12 * var(--hs));
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-avatar__orb img {
  width: calc(82 * var(--hs));
  height: calc(82 * var(--hs));
  max-width: none;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.hero-avatar__name {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-18%, 35%);
  margin: 0;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: calc(24 * var(--hs));
  font-size: calc(13 * var(--hs));
  letter-spacing: -0.5px;
  font-weight: 400;
  line-height: 1.2;
  color: #0f172a;
  white-space: nowrap;
  z-index: 2;
}

.hero-avatar__name-glow {
  background: rgba(48, 117, 255, 0.9);
  border-radius: 50%;
  flex-shrink: 0;
  width: calc(58 * var(--hs));
  height: calc(36 * var(--hs));
  position: absolute;
  right: calc(-4 * var(--hs));
  top: calc(-23 * var(--hs));
  filter: blur(21.58px);
  pointer-events: none;
  z-index: 5;
}

.hero-avatar__name-fill {
  position: relative;
  display: block;
  z-index: 1;
  padding: calc(4 * var(--hs)) calc(9 * var(--hs));
  background: rgba(255, 255, 255, 0.58);
  border-radius: inherit;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-scene__stack {
  --hs: calc(min(96vw, 1560px) / 1364 * 0.88);
  position: absolute;
  left: calc(471 / 1364 * 100%);
  top: calc(48 / 553 * 100%);
  width: calc(490 / 1364 * 100%);
  z-index: 3;
  isolation: isolate;
  display: grid;
  justify-items: center;
  padding-bottom: calc(84 * var(--hs));
}

.hero-stack-card {
  grid-area: 1 / 1;
  position: relative;
  width: 100%;
  pointer-events: none;
  border-radius: calc(24 * var(--hs));
  box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
  isolation: isolate;
  transform-origin: top center;
  transition:
    transform 0.85s cubic-bezier(0.33, 1, 0.68, 1),
    width 0.85s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.6s ease,
    z-index 0s linear 0.4s;
  z-index: 1;
}

.hero-stack-card__inner {
  height: 100%;
  padding: calc(8 * var(--hs));
  border-radius: inherit;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.85s cubic-bezier(0.33, 1, 0.68, 1);
}

.hero-stack-card[data-pos="0"] {
  z-index: 3;
  width: 100%;
  pointer-events: auto;
  transform: translateY(0);
  box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.85s cubic-bezier(0.33, 1, 0.68, 1),
    width 0.85s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.6s ease,
    z-index 0s linear 0s;
}

.hero-stack-card[data-pos="0"] .hero-stack-card__inner {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-stack-card[data-pos="1"] {
  z-index: 2;
  width: 88%;
  transform: translateY(calc(42 * var(--hs)));
}

.hero-stack-card[data-pos="1"] .hero-stack-card__inner,
.hero-stack-card[data-pos="2"] .hero-stack-card__inner {
  background: rgba(255, 255, 255, 0.15);
}

.hero-stack-card[data-pos="2"] {
  z-index: 1;
  width: 78%;
  transform: translateY(calc(78 * var(--hs)));
}

.hero-stack-card.hero-edge {
  padding: 1px;
}

.hero-stack-card.hero-edge::before {
  padding: 1px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.82) 100%);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-stack-card__media-wrap,
.hero-stack-card__body {
  transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.hero-stack-card[data-pos="1"] .hero-stack-card__media-wrap,
.hero-stack-card[data-pos="1"] .hero-stack-card__body,
.hero-stack-card[data-pos="2"] .hero-stack-card__media-wrap,
.hero-stack-card[data-pos="2"] .hero-stack-card__body {
  opacity: 0;
}

.hero-stack-card__media-wrap {
  width: 100%;
  height: calc(250 * var(--hs));
  min-height: 0;
  border-radius: calc(22 * var(--hs));
  overflow: hidden;
  background: #cfe0f2;
}

.hero-stack-card__media {
  width: 100%;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  display: block;
}

.hero-stack-card__body {
  padding: calc(20 * var(--hs)) calc(16 * var(--hs)) calc(16 * var(--hs));
}

.hero-stack-card__title {
  margin: 0 0 calc(16 * var(--hs));
  color: #0f172a;
  font-size: calc(22 * var(--hs));
  line-height: 140%;
  letter-spacing: -0.5px;
  font-weight: 600;
}

.hero-stack-card__progress {
  width: 100%;
  height: calc(10 * var(--hs));
  margin-bottom: calc(18 * var(--hs));
  background: rgba(0, 0, 0, 0.1);
  border-radius: calc(20 * var(--hs));
  overflow: hidden;
}

.hero-stack-card__progress-fill {
  display: block;
  height: 100%;
  border-radius: calc(20 * var(--hs));
  background: linear-gradient(90deg,
      rgba(0, 37, 255, 1) 0%,
      rgba(13, 189, 247, 1) 100%);
}

.hero-stack-card__stats {
  display: flex;
  justify-content: space-between;
  gap: calc(24 * var(--hs));
}

.hero-stack-card__stats>div {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--hs));
}

.hero-stack-card__label {
  color: #64748b;
  font-size: calc(14 * var(--hs));
  line-height: 150%;
  font-weight: 400;
}

.hero-stack-card__value {
  color: #0f172a;
  font-size: calc(20 * var(--hs));
  line-height: 150%;
  letter-spacing: 0;
  font-weight: 600;
}

.hero-payout-card {
  position: absolute;
  left: calc(1248 / 1364 * 100%);
  top: calc(230 / 553 * 100%);
  z-index: 3;
  width: max-content;
  border-radius: calc(24 * var(--hs));
  box-shadow: 0px 24px 50px 0px rgba(0, 0, 0, 0.06);
  isolation: isolate;
  transform: translate(-50%, -50%) rotate(10deg) scale(1, 1);
}

.hero-payout-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(36 * var(--hs)) calc(24 * var(--hs));
  background: rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
}

.hero-payout-card__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-payout-card__icon {
  display: block;
  width: calc(72 * var(--hs));
  height: calc(72 * var(--hs));
  margin-bottom: calc(12 * var(--hs));
  overflow: visible;
}

.hero-payout-card__icon svg {
  width: 100%;
  height: 100%;
  max-width: none;
}

.hero-payout-card__label {
  margin: 0 0 calc(4 * var(--hs));
  color: #475569;
  font-size: calc(15 * var(--hs));
  line-height: 150%;
  font-weight: 400;
}

.hero-payout-card__amount {
  margin: 0;
  color: #000000;
  font-size: calc(32 * var(--hs));
  line-height: 120%;
  letter-spacing: -1px;
  font-weight: 700;
}

@media (min-width: 577px) {
  html[data-audience="creator"] .hero-payout {
    width: min(96vw, 1560px);
    max-width: none;
    margin-left: 50%;
    margin-top: 1.25rem;
    margin-bottom: 4rem;
    translate: -50% 0;
  }

  html[data-audience="creator"] .hero-scene {
    width: 100%;
    max-width: none;
    scale: 1;
    animation: none;
  }
}

html[data-audience="brand"] .hero-payout>picture[data-audience-copy="brand"] {
  display: block;
  width: 100%;
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

html[data-audience="brand"] body:not(.pricing-page) .hero-payout {
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
}

html[data-audience="brand"] .hero-payout-img {
  transform-origin: center center;
  scale: 1.33;
  margin-block: 5.5rem;
}

.hero-payout.is-tilting .hero-payout-img {
  animation-play-state: paused;
}

@media (min-width: 576px) and (max-width: 991px) {
  .hero-payout-img {
    scale: 1.2;
    margin-block: 2rem;
  }

  html[data-audience="creator"] .hero-scene {
    scale: 1;
    margin-block: 0;
  }

  html[data-audience="brand"] .hero-payout-img {
    scale: 1.32;
    margin-block: 2.5rem;
  }
}

@keyframes floatHeroImg {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-22px);
  }
}

@keyframes heroGlowPulse {

  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.9) scaleY(0.95);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.12) scaleY(1.15);
  }
}

@keyframes heroKenBurns {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.05) translate(0.6%, -0.5%);
  }
}

@keyframes floatHeroImgMobile {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroKenBurnsMobile {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.03) translate(0, -0.4%);
  }
}



.platforms {
  position: relative;
  z-index: 10;
}

/* ========================================
   ABOUT US
   ======================================== */
.about {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin-top: 0;
  padding: 4rem 0 14rem;
  /* background: #ffffff; */
  overflow-x: clip;
  overflow-y: visible;
}

.about__header {
  position: relative;
  z-index: 5;
  max-width: 70rem;
  margin: 0 auto clamp(3.5rem, 5vw, 7rem);
  padding: 0 1rem;
}

/* Common Eyebrow Badge Styles across all sections */
.eyebrow,
.about__eyebrow,
.hiw__eyebrow,
.earnings__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
  color: #64748b;
}

@media (max-width: 576px) {

  .eyebrow,
  .about__eyebrow,
  .hiw__eyebrow,
  .earnings__eyebrow {
    font-size: 0.75rem;
  }
}

.eyebrow-dot,
.about__eyebrow-dot,
.hiw__eyebrow-dot,
.earnings__eyebrow-dot {
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background: #00b3ef;
  flex-shrink: 0;
}

.about__title {
  margin-bottom: 1.75rem;
  font-size: var(--fs-section);
  line-height: 130%;
  letter-spacing: -0.04rem;
  font-weight: var(--font-bold);
  color: #040825;
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
}

/* Desktop: 2 lines | Mobile: 3 lines */
.about-br-mobile {
  display: none;
}

.about-br-desktop {
  display: inline;
}

.about__subtitle {
  max-width: 52rem;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
}

html[data-audience="brand"] .about__title {
  max-width: min(100%, 58rem);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

html[data-audience="brand"] .about__title [data-audience-copy="brand"] {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

html[data-audience="brand"] .about__title-line {
  display: block;
  white-space: nowrap;
}

.about-brand-title__mob {
  display: none;
}

html[data-audience="brand"] .about-brand-title__desk .d-block {
  white-space: nowrap;
}

html[data-audience="brand"] .about__subtitle[data-audience-copy="brand"] {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.about__gallery-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
  overflow: visible;
  isolation: isolate;
}

.about__gallery-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(88%, 72rem);
  height: min(78%, 40rem);
  background-image: url("../assets/images/union.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
  animation: aboutBlobFloat 10s ease-in-out infinite;
  opacity: 0.95;
}

@media (max-width: 1599.98px) {
  .about__gallery-wrap::before {
    width: min(90%, 64rem);
    height: min(80%, 36rem);
  }
}

@media (max-width: 1399.98px) {
  .about__gallery-wrap::before {
    width: min(92%, 56rem);
    height: min(80%, 32rem);
  }
}

@media (max-width: 1199.98px) {
  .about__gallery-wrap::before {
    width: min(94%, 48rem);
    height: min(78%, 28rem);
  }
}

@media (max-width: 991.98px) {
  .about__gallery-wrap::before {
    width: min(96%, 40rem);
    height: min(72%, 22rem);
  }
}

@media (max-width: 767.98px) and (min-width: 577px) {
  .about__gallery-wrap::before {
    width: min(98%, 34rem);
    height: min(70%, 18rem);
  }
}

/* Brand: hide generic gallery blob; shape lives on dashboard visual */
html[data-audience="brand"] .about__gallery-wrap::before {
  display: none;
}

.about-brand-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: visible;
  animation: aboutBrandDashboardFloat 3.2s ease-in-out infinite;
}

/* Moving union shape behind brand dashboard — sized to the image */
.about-brand-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -68%) !important;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/union.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
  animation: aboutBrandUnionFloat 10s ease-in-out infinite;
  opacity: 1;
}

@media (max-width: 1399.98px) {
  .about-brand-visual::before {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991.98px) {
  .about-brand-visual::before {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 575.98px) {
  .about-brand-visual::before {
    width: 100%;
    height: 100%;

    transform: translate(-50%, -88%) !important;

  }
}

.about-brand-visual__picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.about-brand-visual__img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center center;
  animation: aboutBrandKenBurns 5.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 42px rgba(0, 80, 255, 0.14));
}

@keyframes aboutBrandDashboardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes aboutBrandGlowPulse {

  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.92) scaleY(0.94);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.12);
  }
}

@keyframes aboutBrandKenBurns {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.018);
  }
}

@keyframes aboutBrandDashboardFloatMobile {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.about-marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 640px;
  max-width: none;
  margin: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.about-marquee__track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  height: 100%;
  animation: aboutMarqueeScroll 12s linear infinite;
  will-change: transform;
}

.about-marquee:hover .about-marquee__track {
  animation-play-state: paused;
}

.about-marquee__img {
  width: auto;
  height: 100%;
  max-height: calc(640px - 48px);
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  background: #e2e8f0;
  aspect-ratio: 9 / 16;
}

@keyframes aboutMarqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.about__header,
.about__visual {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.about.is-visible .about__header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.about.is-visible .about__visual {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

@keyframes aboutGlowPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.85;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

@keyframes aboutBrandUnionFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, calc(-50% - 4px)) scale(1.02) rotate(0.6deg);
    opacity: 1;
  }
}

@keyframes aboutBlobFloat {

  0%,
  100% {
    transform: translate(-50%, -48%) scale(1) rotate(0deg);
    opacity: 0.95;
  }

  50% {
    transform: translate(-50%, calc(-48% - 3px)) scale(1.015) rotate(0.8deg);
    opacity: 1;
  }
}

@keyframes aboutGalleryFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.625rem);
  }
}

@keyframes aboutDotPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 37, 255, 0.35);
  }

  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 0.375rem rgba(0, 37, 255, 0);
  }
}



/* ========================================
   PLATFORMS
   ======================================== */
.platforms {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.platforms__label {
  font-size: 13px;
  line-height: 150%;
  font-weight: 400;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.platforms-img {
  width: min(350px, 92vw);
  max-width: 360px;
  height: auto;
  display: block;
}

@media (min-width: 577px) {
  .platforms-img {
    width: min(380px, 92vw);
    max-width: 400px;
  }
}

.platforms__item:hover {
  opacity: 1;
}

.platforms__item svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.hero__title,
.hero__subtitle,
.hero__ctas,
.toggle,
.platforms {
  animation: fadeUp 0.7s ease both;
}

.toggle {
  animation-delay: 0.05s;
}

.hero__title {
  animation-delay: 0.12s;
}

.hero__subtitle {
  animation-delay: 0.2s;
}

.hero__ctas {
  animation-delay: 0.28s;
}

.platforms {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE - TABLET & MOBILE NAVBAR (<992px)
   ======================================== */
@media (max-width: 991.98px) {
  .page {
    --page-pad-x: 1.5rem;
    padding-top: 0;
  }

  .page>.container>header {
    position: relative;
    top: 0;
    z-index: 100;
    width: auto;
    max-width: none;
    margin-left: calc(-1 * var(--page-pad-x, 1.5rem) - 0.5 * var(--bs-gutter-x, 1.5rem));
    margin-right: calc(-1 * var(--page-pad-x, 1.5rem) - 0.5 * var(--bs-gutter-x, 1.5rem));
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    background: transparent;
    overflow: visible;
  }

  .page>.container>header>.col-12 {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .nav {
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 1.125rem;
    padding: 0 1.5rem 0.875rem;
    margin-bottom: 0;
    background: transparent;
    border: none;
    border-bottom: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .hero {
    padding-top: 0.5rem !important;
  }

  .nav__menu {
    order: 2;
    display: inline-flex;
    width: 18px;
    height: 18px;
    padding: 0;
    gap: 4px;
    margin-left: 0;
    flex-shrink: 0;
  }

  .nav__menu-bar {
    height: 1.5px;
  }

  .nav--open .nav__menu-bar:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .nav--open .nav__menu-bar:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .nav__wordmark {
    display: inline-block;
    font-size: 22px;
    letter-spacing: -0.5px;
    line-height: 120%;
    font-weight: 600;
    color: #0f172a;
  }

  .nav__logo {
    order: 1;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }

  .nav__logo svg,
  .nav__logo .nav__logo-mark--creator,
  .nav__logo .nav__logo-mark--brand {
    width: 42px;
    height: 42px;
  }

  /* Bar CTAs hide — drawer CTAs show inside menu body */
  .nav__actions--bar {
    display: none;
  }

  .nav__drawer-actions {
    display: block;
    margin-top: 0.75rem;
    padding-top: 0.875rem;
    border-top: 1px solid #e2e8f0;
  }

  .nav__actions--drawer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
    width: 100%;
  }

  .nav__actions--drawer .nav__btn {
    width: 100%;
    height: 48px;
    justify-content: center;
    font-size: 0.9375rem;
    border-radius: 14px;
    padding: 8px 16px;
  }

  .nav__actions--drawer .nav__btn-icon {
    width: 14px;
    height: 14px;
  }

  .nav__links {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    top: calc(100% + 0.5rem);
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    margin: 0;
    padding: 0.75rem;
    list-style: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    box-shadow: 0 1.125rem 2.5rem rgba(15, 23, 42, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.75rem) scale(0.98);
    transform-origin: top center;
    pointer-events: none;
    transition:
      opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.35s;
  }

  .nav--open .nav__links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  body.nav-open .page,
  body.nav-open .page>.container {
    overflow: visible;
  }

  .nav__link {
    display: block;
    padding: 0.875rem 1rem;
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    font-weight: 600;
    border-radius: 0.875rem;
  }

  .nav__link:hover {
    background: #f1f5f9;
  }
}

@media (max-width: 576px) {
  :root {
    --fs-hero: clamp(2.375rem, 4vw + 1.25rem, 6rem);
  }

  .page {
    --page-pad-x: 1.5rem;
    padding-top: 0;
    padding-left: var(--page-pad-x);
    padding-right: var(--page-pad-x);
  }

  html[data-audience="creator"] .page__bg {
    background-position: bottom left;
    opacity: 0.6;
  }

  .eyebrow-dot,
  .about__eyebrow-dot,
  .hiw__eyebrow-dot,
  .earnings__eyebrow-dot {
    width: 12px;
    height: 12px;
  }

  .toggle {
    display: inline-flex;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    scale: 1;
  }

  .toggle__btn {
    padding: 0.625rem 1rem;
    font-size: clamp(0.75rem, 3.2vw, 0.875rem);
  }

  .hero__title {
    width: 100%;
    max-width: 100%;
    padding: 0 0.25rem;
    font-size: 2.5rem !important;
  }

  html[data-audience="brand"] .hero__title {
    font-size: 42px !important;
    line-height: 1.15;
    padding: 0 1rem;
  }

  .hero__title-line {
    white-space: nowrap;
  }

  .hero__subtitle {
    width: 100%;
    max-width: 21rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.5rem;
    font-size: 14px !important;
    line-height: 1.55;
    margin-bottom: 10px !important;
  }

  html[data-audience="brand"] .hero__subtitle[data-audience-copy="brand"] {
    max-width: 23.5rem;
  }

  .hero__ctas {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.5rem;
    gap: 0.625rem !important;
    margin-bottom: 2rem;
    box-sizing: border-box;
  }

  .hero__ctas .btn {
    flex: 1 1 0;
    width: auto;
    max-width: none;
    white-space: nowrap;
  }

  @media (max-width: 575.98px) {
    .hero__ctas .btn {
      padding: 1.125rem 1.25rem;
      font-size: 0.875rem;
    }
  }

  .hero-payout {
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
    animation: floatHeroImgMobile 4.2s ease-in-out infinite;
    /* filter: none;   */
  }

  .hero-scene {
    display: none;
  }

  html[data-audience="creator"] .hero-payout {
    animation: none;
    filter: none;
  }

  html[data-audience="creator"] .hero-scene {
    display: block;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 300 / 657;
    animation: none;
  }

  html[data-audience="creator"] .hero-scene__sizer--desktop,
  html[data-audience="creator"] .hero-scene__wires--desktop {
    display: none;
  }

  html[data-audience="creator"] .hero-scene__sizer--mobile {
    display: block;
    visibility: hidden;
  }

  html[data-audience="creator"] .hero-scene__wires--mobile {
    display: block;
  }

  html[data-audience="creator"] .hero-avatar,
  html[data-audience="creator"] .hero-payout-card {
    --hs: calc((100vw - 2rem) / 300);
    --hs: calc(100cqw / 300);
  }

  html[data-audience="creator"] .hero-avatar {
    transform: translate(-50%, 0);
  }

  html[data-audience="creator"] .hero-avatar__orb img {
    width: calc(58 * var(--hs));
    height: calc(58 * var(--hs));
  }

  html[data-audience="creator"] .hero-avatar__orb-fill {
    padding: calc(6 * var(--hs));
  }

  html[data-audience="creator"] .hero-avatar__name {
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translate(-50%, 82%);
  }

  html[data-audience="creator"] .hero-avatar__name-glow {
    display: none;
  }

  html[data-audience="creator"] .hero-avatar--brooklyn {
    left: calc(38 / 300 * 100%);
    top: 0;
  }

  html[data-audience="creator"] .hero-avatar--rebecca {
    left: calc(150 / 300 * 100%);
    top: calc(24.5 / 657 * 100%);
  }

  html[data-audience="creator"] .hero-avatar--simmons {
    left: calc(262.5 / 300 * 100%);
    top: 0;
  }

  html[data-audience="creator"] .hero-scene__stack {
    --hs: calc((100vw - 2rem) * 1.04 / 538);
    --hs: calc(100cqw * 1.04 / 538);
    left: 50%;
    top: calc(170 / 657 * 100%);
    width: 100%;
    translate: -50% 0;
    padding-bottom: 72px;
  }

  html[data-audience="creator"] .hero-stack-card[data-pos="1"] {
    width: 88%;
    transform: translateY(32px);
  }

  html[data-audience="creator"] .hero-stack-card[data-pos="2"] {
    width: 78%;
    transform: translateY(60px);
  }

  html[data-audience="creator"] .hero-stack-card__media-wrap {
    min-height: 0;
  }

  html[data-audience="creator"] .hero-payout-card {
    left: 50%;
    top: calc(527 / 657 * 100%);
    width: 78%;
    transform: translate(-50%, 0);
  }

  html[data-audience="creator"] .hero-payout-card__inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: calc(12 * var(--hs));
    padding: calc(14 * var(--hs)) calc(16 * var(--hs));
    text-align: left;
  }

  html[data-audience="creator"] .hero-payout-card__copy {
    align-items: flex-start;
  }

  html[data-audience="creator"] .hero-payout-card__icon {
    width: calc(40 * var(--hs));
    height: calc(40 * var(--hs));
    margin-bottom: 0;
    flex-shrink: 0;
  }

  html[data-audience="creator"] .hero-payout-card__icon svg {
    transform: none;
  }

  html[data-audience="creator"] .hero-payout-card__label {
    font-size: calc(13 * var(--hs));
  }

  html[data-audience="creator"] .hero-payout-card__amount {
    font-size: calc(22 * var(--hs));
  }

  .hero-payout-mobile {
    display: none;
  }

  .hero-payout__glow {
    left: 12%;
    right: 12%;
    bottom: 4%;
    height: 28%;
    opacity: 0.55;
  }

  .hero-payout-img {
    max-width: min(22.5rem, 92vw);
    margin: 0 auto;
    mix-blend-mode: screen;
    animation: heroKenBurnsMobile 8s ease-in-out infinite;
    scale: 1.2;
    margin-top: 3rem;
  }

  html[data-audience="brand"] .hero-payout-img {
    max-width: 98vw;
    scale: 1.25;
    margin-block: 2.5rem;
  }

  html[data-audience="creator"] .platforms-img {
    scale: 0.9;
  }

  html[data-audience="brand"] .platforms-img {
    scale: 0.9;
  }

  .about {
    padding: 3rem 0 4rem;
  }

  .about__bg-shape {
    width: 140vw;
    top: 58%;
  }

  .about__header {
    margin-bottom: 3.5rem;
    padding: 0 1.25rem;
  }

  .about__title {
    font-size: 2.2rem !important;
    letter-spacing: -0.04rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
  }

  html[data-audience="brand"] .about__title {
    font-size: 28px !important;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  html[data-audience="brand"] .about__title .d-block {
    white-space: nowrap;
  }

  .about-brand-title__desk {
    display: none;
  }

  .about-brand-title__mob {
    display: block;
  }

  /* 
  .about-br-mobile {
    display: inline;
  } */

  .about-br-desktop {
    display: none;
  }

  .about__subtitle {
    font-size: clamp(0.875rem, 3.6vw, 0.9375rem);
    line-height: 1.55;
  }

  .about__subtitle br {
    display: none;
  }

  .about__visual {
    min-height: 0;
  }

  .about__gallery-wrap {
    transform: none;
    padding: 0;
  }

  .about__gallery-wrap::before {
    width: min(100%, 30rem);
    height: min(68%, 16rem);
    top: 50%;
    transform: translate(-50%, -50%);
  }

  html[data-audience="brand"] .about__gallery-wrap::before {
    display: none;
  }

  .about-brand-visual {
    animation: aboutBrandDashboardFloatMobile 3.4s ease-in-out infinite;
  }

  .about-brand-visual::before {
    width: 100%;
    height: 100%;
  }

  .about-brand-visual__img {
    animation: none;
    filter: drop-shadow(0 12px 28px rgba(0, 80, 255, 0.12));
  }

  .about-marquee {
    height: 350px;
    padding: 1rem;
    border-radius: 0;
  }

  .about-marquee__img {
    height: 100%;
    max-height: calc(350px - 2rem);
    width: auto;
    aspect-ratio: 9 / 16;
    border-radius: 1rem;
  }

  .about-marquee__track {
    gap: 0.75rem;
    animation-duration: 9s;
  }

  .platforms__list {
    gap: 1.25rem;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .page>.container>header {
    padding-top: 0 !important;
  }

  .nav {
    padding-top: 0 !important;
  }
}

@media (max-width: 575.98px) {
  :root {
    --fs-hero: clamp(2.375rem, 4vw + 1.25rem, 6rem);
  }

  .page {
    padding: 0 var(--page-pad-x, 1.5rem) 2.5rem;
  }

  .nav {
    padding: 1.125rem 1.5rem;
    gap: 1.125rem;
  }

  .nav__wordmark {
    font-size: 18px;
  }

  .nav__logo {
    gap: 0.8rem;
  }

  .nav__logo svg,
  .nav__logo .nav__logo-mark--creator,
  .nav__logo .nav__logo-mark--brand {
    width: 42px;
    height: 42px;
  }

  .hero__title {
    padding: 0;
    font-size: 2.5rem !important;
  }

  .hero__subtitle {
    max-width: 100%;
    padding: 0 0.25rem;
    font-size: 0.9375rem;
    padding-top: 8px;
  }

  .hero__ctas {
    max-width: 100%;
    padding: 0 0.5rem;
    gap: 0.625rem !important;
    box-sizing: border-box;
  }

  html[data-audience="brand"] .hero__title {
    font-size: 42px !important;
    line-height: 130%;
    padding: 0 1.25rem;
  }

  html[data-audience="brand"] .hero__subtitle[data-audience-copy="brand"] {
    max-width: 100%;
    padding: 0 1.25rem;
  }

  html[data-audience="brand"] .hero__ctas {
    padding: 0 1.25rem;
  }

  .platforms__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .platforms__item {
    font-size: var(--fs-sm);
  }
}

@media (max-width: 400px) {
  html[data-audience="creator"] .toggle {
    scale: 1;
    max-width: 100%;
  }

  html[data-audience="creator"] .hero__title {
    width: 100%;
    max-width: 100%;
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
    font-size: clamp(2.4rem, 10.4vw, 2.75rem) !important;
    box-sizing: border-box;
  }

  html[data-audience="creator"] .hero__title-line {
    white-space: nowrap;
  }

  html[data-audience="creator"] .hero__subtitle {
    width: 100%;
    max-width: 100%;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    box-sizing: border-box;
  }

  html[data-audience="creator"] .hero__ctas {
    width: 100%;
    max-width: 100%;
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
    gap: 0.5rem !important;
    box-sizing: border-box;
  }

  html[data-audience="creator"] .hero__ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 1.05rem 1rem;
    font-size: 0.8125rem;
  }
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.hiw {
  position: relative;
  width: 100%;
  padding: 5rem 0 8rem;
  /* background: #ffffff; */
  overflow: hidden;
}

.hiw__header {
  margin-bottom: 4.5rem;
}

.hiw__title {
  margin-bottom: 0.75rem;
  font-size: var(--fs-display);
  line-height: 1.15;
  letter-spacing: clamp(-0.08rem, -0.12vw, -0.125rem);
  font-weight: 700;
  color: #040825;
}

.hiw__subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: #475569;
  margin-bottom: 2.5rem;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hiw-step {
  display: flex;
  gap: 1.25rem;
  cursor: pointer;
  transition: opacity 0.12s linear;
}

.hiw-step:focus-visible {
  outline: 2px solid #0025ff;
  outline-offset: 4px;
  border-radius: 8px;
}

.hiw-step:not(.hiw-step--active):not(.hiw-step--done) {
  opacity: 0.5;
}

.hiw-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: var(--font-semibold);
  line-height: 1;
  flex-shrink: 0;
  transform: scale(1);
  transition: background 0.12s linear, color 0.12s linear, border-color 0.12s linear,
    box-shadow 0.12s linear, transform 0.12s linear;
}

.hiw-step--active .hiw-step__num,
.hiw-step--done .hiw-step__num {
  background: #0025ff;
  border-color: #0025ff;
  color: #ffffff;
  box-shadow: 0 0.25rem 1rem rgba(0, 37, 255, 0.28);
}

.hiw-step--active .hiw-step__num {
  transform: scale(1.06);
}

.hiw-step__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 36px;
  gap: 0;
}

.hiw-step__line {
  position: relative;
  width: 3px;
  flex: 1;
  min-height: 3.5rem;
  margin: 0;
  background: #d9d9d9;
  border-radius: 0;
  overflow: hidden;
}

.hiw-step__line-fill {
  display: block;
  width: 100%;
  height: 0%;
  will-change: height;
  transform: translateZ(0);
  background: linear-gradient(180deg,
      rgba(0, 37, 255, 1) 0%,
      rgba(108, 219, 255, 1) 100%);
  border-radius: 0;
  transition: height 0ms linear;
}

.hiw-step--done .hiw-step__line-fill {
  height: 100%;
}

.hiw-step__content {
  padding: 0.25rem 0 2rem;
}

.hiw-step:last-child .hiw-step__content {
  padding-bottom: 0;
}

.hiw-step__title {
  margin-bottom: 0.5rem;
  font-size: var(--fs-subhead);
  line-height: 120%;
  letter-spacing: -0.04rem;
  font-weight: 600;
  color: #aeb1b4;
  transition: color 0.12s linear;
}

.hiw-step__text {
  max-width: 26rem;
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  color: #c7cfd8;
  transition: color 0.12s linear;
}

.hiw-step--active .hiw-step__title,
.hiw-step--done .hiw-step__title {
  color: #111111;
}

.hiw-step--active .hiw-step__text,
.hiw-step--done .hiw-step__text {
  color: #64748b;
}

.hiw-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.25rem 0;
  overflow: visible;
}

.hiw-visual::before,
.hiw-visual__glow {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: url("../assets/images/round-elipdis.webp") center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
  /* animation: hiwGlowPulse 3.2s ease-in-out infinite; */
  opacity: 1;
  scale: 1.2;
}

.hiw-visual__slides {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1.5rem;
  animation: hiwFloat 3.6s ease-in-out infinite;
  filter: drop-shadow(0 18px 36px rgba(0, 80, 255, 0.2));
}

.hiw-visual__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(0.5rem) scale(0.96);
  transition: opacity 0.25s linear, transform 0.25s linear;
  pointer-events: none;
}

.hiw-visual__img--active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: hiwKenBurns 6s ease-in-out infinite;
  transform-origin: 45% 40%;
}

.hiw-visual__img--creators.hiw-visual__img--active {
  transform: translateY(0) scale(1.08);
  transform-origin: center center;
  animation: hiwKenBurnsCreators 6s ease-in-out infinite;
}

@keyframes hiwKenBurnsCreators {

  0%,
  100% {
    transform: translateY(0) scale(1.08);
  }

  50% {
    transform: translateY(-0.5%) scale(1.11);
  }
}

@keyframes hiwGlowPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

@keyframes hiwFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes hiwKenBurns {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-1%) scale(1.03);
  }
}

.hiw-mobile {
  display: none;
}

@media (max-width: 1023.98px) {
  .hiw {
    padding: 4rem 0 5rem;
    overflow-x: clip;
    overflow-y: visible;
  }

  .hiw__desktop {
    display: none !important;
  }

  .hiw-mobile {
    display: block;
    overflow: visible;
  }

  .hiw-mobile__header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .hiw__title {
    letter-spacing: -0.08rem;
  }

  .hiw-slider {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: visible;
  }

  .hiw-slider {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: visible;
  }

  .hiw-slider__track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding: 1rem 1.25rem 1rem;
    scroll-padding: 0 1.25rem;
    touch-action: pan-x pan-y;
  }

  .hiw-slider__track::-webkit-scrollbar {
    display: none;
  }

  .hiw-slider__slide {
    flex: 0 0 calc(100% - 2.75rem);
    width: calc(100% - 2.75rem);
    max-width: 22rem;
    padding: 0;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    user-select: none;
    -webkit-user-select: none;
  }

  .hiw-slider__slide:last-child {
    margin-right: 1.25rem;
  }

  .hiw-slider__copy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    min-height: 5.5rem;
    width: 100%;
    max-width: 24rem;
    margin-left: 0;
    margin-right: auto;
    padding-left: 0.25rem;
    overflow: visible;
  }

  .hiw-slider__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.625rem;
    height: 1.625rem;
    flex-shrink: 0;
    margin: 0.125rem 0 0;
    border-radius: var(--radius-full);
    background: #0025ff;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 0 0 3.5px rgba(0, 37, 255, 0.16);
  }

  .hiw-slider__title {
    margin: 0 0 0.375rem;
    font-size: var(--fs-subhead);
    line-height: 1.2;
    letter-spacing: -0.03rem;
    font-weight: 600;
    color: #111111;
  }

  .hiw-slider__desc {
    margin: 0;
    max-width: none;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: #64748b;
    text-align: left;
  }

  .hiw-slider__img {
    display: block;
    width: min(24rem, 100%);
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    border-radius: 1.5rem;
    filter: drop-shadow(0 12px 28px rgba(0, 80, 255, 0.16));
    pointer-events: none;
  }

  .hiw-slider__img--creators {
    scale: 1.08;
    transform-origin: center center;
  }

  .hiw-slider__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.25rem 0;
  }

  .hiw-slider__dot {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    background: rgba(4, 8, 37, 0.16);
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    padding: 0;
    cursor: pointer;
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease, box-shadow 0.3s ease;
    touch-action: manipulation;
  }

  .hiw-slider__dot:hover {
    background: rgba(0, 37, 255, 0.4);
  }

  .hiw-slider__dot--active {
    width: 26px;
    background: #0025ff;
    box-shadow: 0 2px 10px rgba(0, 37, 255, 0.32);
  }

}

/* Tablet only: center HIW step copy */
@media (max-width: 1023.98px) and (min-width: 577px) {
  .hiw-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hiw-slider__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0 auto 1.5rem;
    max-width: 32rem;
    width: 100%;
    min-height: auto;
  }

  .hiw-slider__num {
    margin: 0 auto 0.5rem;
    align-self: center;
  }

  .hiw-slider__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hiw-slider__title {
    text-align: center;
    width: 100%;
    margin: 0 auto 0.5rem;
  }

  .hiw-slider__desc {
    margin: 0 auto;
    max-width: 28rem;
    text-align: center;
    width: 100%;
  }

  .hiw-slider__img {
    margin: 0 auto;
  }
}

@keyframes hiwContentIn {
  from {
    opacity: 0;
    transform: translateX(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 576px) {
  .hiw-slider__track {
    gap: 0.875rem;
    padding: 1.25rem 0.5rem 1rem;
    scroll-padding: 0 1rem;
    margin-top: -0.5rem;
  }

  .hiw-slider__slide {
    flex: 0 0 calc(100% - 2.75rem);
    width: calc(100% - 2.75rem);
    max-width: 320px;
    padding: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .hiw-slider__slide:last-child {
    margin-right: 1rem;
  }

  .hiw__subtitle {
    margin-bottom: 2.2rem;
  }

  .hiw-slider__copy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 0.75rem;
    max-width: 24rem;
    padding: 0 0.25rem;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 1.25rem;
    min-height: 5.75rem;
  }

  html[data-audience="creator"] .hiw-slider__copy,
  html:not([data-audience="brand"]) .hiw-slider__copy {
    margin-bottom: 4px !important;
  }

  /* Only Brand Step 2 (Creators Go To Work) */
  html[data-audience="brand"] .hiw-slider__slide[data-step="1"] .hiw-slider__copy {
    margin-bottom: 4px !important;
  }

  .hiw-slider__num {
    margin-top: 0.15rem;
    flex-shrink: 0;
  }

  .hiw-slider__title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    line-height: 1.2;
    letter-spacing: -0.02rem;
  }

  .hiw-slider__desc {
    margin: 0;
    max-width: none;
    text-align: left;
    font-size: 0.8125rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
  }

  .hiw-slider__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    scale: 1;
  }

  html[data-audience="creator"] .hiw-slider__img,
  html:not([data-audience="brand"]) .hiw-slider__img {
    scale: 1.08 !important;
    transform-origin: center top !important;
  }

  html[data-audience="brand"] .hiw-slider__slide[data-step="1"] .hiw-slider__img,
  html[data-audience="brand"] .hiw-slider__img--creators {
    scale: 1.12 !important;
    transform-origin: center top !important;
  }
}



/* ========================================
   EARNINGS CALCULATOR
   ======================================== */
.earnings {
  position: relative;
  width: 100%;
  padding: 9rem 0 10rem;
  overflow: hidden;
}

@media (min-width: 1100px) and (max-width: 1400px) {
  .about {
    padding: 4rem 0 8rem;
  }

  html[data-audience="brand"] .hero-payout-img {
    transform-origin: center center;
    scale: 1;
    margin-block: 1.5rem;
  }

  .earnings {
    padding: 7rem 0 7rem;
  }
}

.earnings__title {
  margin-bottom: 1rem;
  font-size: var(--fs-section);
  line-height: 130%;
  letter-spacing: clamp(-0.06rem, -0.1vw, -0.04rem);
  font-weight: 700;
  color: #040825;
}

.earnings-br-mobile {
  display: none;
}

.earnings-br-desktop {
  display: inline;
}

.earnings__subtitle {
  max-width: 44rem;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  text-align: center;
  text-wrap: balance;
}

html[data-audience="brand"] .earnings__subtitle[data-audience-copy="brand"] {
  font-size: 16px;
  color: #475569;
  max-width: 48rem;
}

.earnings-card {
  position: relative;
  z-index: 1;
  padding: 40px;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 42px;
  box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1),
    0px 8px 40px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.earnings-card::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  height: 746px;
  background: rgba(13, 189, 247, 0.6);
  border-radius: 50%;
  flex-shrink: 0;
  transform-origin: 0 0;
  /* transform: translate(-50%, 0) rotate(0deg) scale(1, -1); */
  filter: blur(190px);
  pointer-events: none;
  z-index: 0;
  top: 50%;
  transform: translate(-50%, 20%);
}

.earnings-card__title {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  font-size: var(--fs-subhead);
  line-height: 120%;
  letter-spacing: -0.04rem;
  font-weight: 600;
  color: #111111;
  text-align: center;
}

.earnings-slider {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
}

.earnings-slider__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
}

.earnings-slider__row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.earnings-slider__wrap {
  position: relative;
  flex: 1;
  height: 48px;
  display: flex;
  align-items: center;
  --earnings-progress: 20%;
  --earnings-progress-val: 20;
  --thumb-half: 24px;
}

.earnings-slider__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: grab;
  z-index: 3;
  -webkit-appearance: none;
  appearance: none;
}

.earnings-slider__input:active {
  cursor: grabbing;
}

.earnings-slider__track {
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #cbd5e1;
  overflow: visible;
}

.earnings-slider__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: calc(var(--thumb-half) + (100% - (2 * var(--thumb-half))) * (var(--earnings-progress-val, 20) / 100));
  border-radius: 999px;
  background: linear-gradient(90deg,
      rgba(0, 37, 255, 1) 0%,
      rgba(13, 189, 247, 1) 100%);
  pointer-events: none;
  will-change: width;
}

.earnings-slider__thumb {
  position: absolute;
  top: 50%;
  left: calc(var(--thumb-half) + (100% - (2 * var(--thumb-half))) * (var(--earnings-progress-val, 20) / 100));
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0dbdf7;
  border-radius: 0.75rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 0.25rem 1rem rgba(13, 189, 247, 0.35);
  pointer-events: none;
  will-change: left, transform;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s ease;
}

.earnings-slider__wrap:hover .earnings-slider__thumb,
.earnings-slider__input:active~.earnings-slider__track .earnings-slider__thumb {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0.35rem 1.25rem rgba(13, 189, 247, 0.5);
}

html[data-audience="brand"] .earnings__title [data-audience-copy="brand"] {
  display: flex !important;
  flex-direction: column;
  align-items: center;
}

html[data-audience="brand"] .earnings__title-line {
  display: block;
  white-space: nowrap;
}

.earnings-slider__thumb svg {
  width: 24px;
  height: 24px;
}

.earnings-slider__value {
  flex-shrink: 0;
  min-width: 4.5rem;
  font-size: var(--fs-stat-lg);
  line-height: 120%;
  letter-spacing: -0.04rem;
  font-weight: 600;
  color: #111111;
  text-align: right;
}

.earnings-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 0;
  border-bottom: none;
}

.earnings-stats__item:last-child {
  text-align: right;
}

.earnings-stats__label {
  display: block;
  margin-bottom: 1rem;
  font-size: clamp(0.8125rem, 0.6vw + 0.7rem, 1.25rem);
  line-height: 120%;
  letter-spacing: -0.02rem;
  font-weight: 400;
  color: #475569;
}

.earnings-stats__value {
  display: block;
  font-size: var(--fs-stat);
  line-height: 120%;
  letter-spacing: -0.04rem;
  font-weight: 600;
  color: #111111;
}

.earnings-stats__value--range {
  font-size: var(--fs-stat);
  line-height: 120%;
  letter-spacing: -0.04rem;
  font-weight: 600;
}

.earnings-card__cta {
  justify-content: center;
  width: 100%;
}

.earnings-card__cta.btn--primary::after {
  display: block;
  content: "";
  background: var(--btn-ellipse, #3f9dff);
  border-radius: 50%;
  flex-shrink: 0;
  width: min(70%, 220px);
  height: 48px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 576px) {
  .earnings {
    padding: 3.5rem 0 3rem;
  }

  .earnings__header {
    margin-bottom: 0;
    padding: 0 0.75rem;
  }

  .earnings__title {
    margin-bottom: 0.875rem;
  }

  .earnings-br-mobile {
    display: inline;
  }

  .earnings-br-desktop {
    display: none;
  }

  .earnings__subtitle {
    max-width: 20.5rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #64748b;
  }

  .earnings .row.mb-5 {
    margin-bottom: 1.75rem !important;
  }

  .earnings-card {
    padding: 1.5rem 1.125rem 1.25rem;
    border-radius: 1.75rem;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(230, 244, 255, 0.78) 100%);
    box-shadow: 0 0.5rem 2rem rgba(15, 23, 42, 0.08);
  }

  .earnings-card::after {
    height: 26rem;
    filter: blur(110px);
    opacity: 0.9;
    transform: translate(-50%, 40%);
  }

  .earnings-card__title {
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: #0f172a;
  }

  .earnings-slider {
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }

  .earnings-slider__label {
    margin-bottom: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #94a3b8;
  }

  .earnings-slider__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .earnings-slider__wrap {
    height: 28px;
    --thumb-half: 14px;
  }

  .earnings-slider__track {
    height: 8px;
  }

  .earnings-slider__thumb {
    width: 28px;
    height: 28px;
    border-radius: 0.5rem;
  }

  .earnings-slider__thumb svg {
    width: 14px;
    height: 14px;
  }

  .earnings-slider__value {
    flex-shrink: 0;
    min-width: 3.75rem;
    font-weight: 600;
    color: #0f172a;
    text-align: right;
  }

  .earnings-stats {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 0;
    margin-bottom: 1.75rem;
  }

  .earnings-stats__item:last-child {
    text-align: right;
  }

  .earnings-stats__label {
    margin-bottom: 0.375rem;
    letter-spacing: 0;
    font-weight: 400;
    color: #94a3b8;
  }

  .earnings-stats__value,
  .earnings-stats__value--range {
    font-weight: 600;
    color: #0f172a;
  }

  .earnings-card__cta {
    position: relative;
    z-index: 1;
    padding: 1.125rem 1.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .earnings {
    padding: 3.5rem 0 3rem;
  }

  .earnings__subtitle {
    max-width: 20.5rem;
    padding: 0;
    font-size: 0.9375rem;
  }

  .earnings-card {
    padding: 1.375rem 1rem 1.125rem;
    border-radius: 1.625rem;
  }

  .earnings-slider__row {
    flex-direction: row;
    align-items: center;
  }

  .earnings-slider__wrap {
    height: 28px;
  }

  .earnings-slider__thumb {
    width: 28px;
    height: 28px;
  }

  .earnings-slider__value {
    min-width: 3.5rem;
    text-align: right;
  }
}

/* ========================================
   CAMPAIGNS MARQUEE SECTION
   ======================================== */
.campaigns {
  position: relative;
  width: 100%;
  padding: 5rem 0 5rem;
  overflow: hidden;
  /* background: #f7f9fc; */
}

html[data-audience="brand"] .campaigns {
  display: none !important;
}

html[data-audience="brand"] .stories {
  display: none !important;
}

html[data-audience="brand"] a[href="#campaigns"] {
  display: none !important;
}

.campaigns__title {
  font-size: var(--fs-section);
  line-height: 130%;
  letter-spacing: -0.04rem;
  font-weight: var(--font-bold);
  color: #040825;
  margin-bottom: 1rem;
}

.campaigns__subtitle {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0 1.25rem;
  mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 3%,
      #000 97%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 3%,
      #000 97%,
      transparent 100%);
}

.marquee__track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.campaigns .campaign-card {
  width: 380px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 30px;
  padding: 6px;
  /* box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07); */
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.campaigns .campaign-card__img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
  border-radius: 26px 26px 0px 0px;
  position: relative;
  background: #e2e8f0;
}

.campaigns .campaign-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.campaigns .campaign-card__img-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.campaigns .campaign-card__brand {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0094f7;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 148, 247, 0.35);
}

.campaigns .campaign-card__brand-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.campaigns .campaign-card__content {
  padding: 16px 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.campaigns .campaign-card__heading {
  font-size: clamp(1rem, 0.8vw + 0.75rem, 1.125rem);
  line-height: 1.35;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 14px;
}

.campaigns .campaign-card__progress-bar {
  width: 100%;
  height: 6px;
  background: #e8edf3;
  border-radius: 999px;
  margin-bottom: 16px;
  overflow: hidden;
}

.campaigns .campaign-card__progress-fill {
  height: 100%;
  background: #0025ff;
  border-radius: 999px;
}

.campaigns .campaign-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.campaigns .campaign-card__stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.campaigns .campaign-card__label {
  display: block;
  font-size: 12px;
  line-height: 150%;
  font-weight: 400;
  color: #64748b;
  margin-bottom: 2px;
}

.campaigns .campaign-card__val {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.5px;
  font-weight: 500;
  color: #0f172a;
}

.campaigns .campaign-card__socials {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 0;
}

.campaigns .campaign-card__social {
  display: inline-flex;
  width: 32px;
  height: 32px;
  line-height: 0;
  position: relative;
  margin-left: -10px;
}

.campaigns .campaign-card__social:first-child {
  margin-left: 0;
}

.campaigns .campaign-card__social:nth-child(1) {
  z-index: 1;
}

.campaigns .campaign-card__social:nth-child(2) {
  z-index: 2;
}

.campaigns .campaign-card__social:nth-child(3) {
  z-index: 3;
}

.campaigns .campaign-card__social svg {
  width: 32px;
  height: 32px;
  display: block;
}

.campaigns__cta-wrap {
  margin-top: 2.5rem;
}

@media (max-width: 576px) {
  .campaigns {
    padding: 4rem 0 5rem;
  }

  .campaigns .campaign-card {
    width: 300px;
    border-radius: 16px;
  }

  .campaigns .campaign-card__img-wrap {
    height: 160px;
    border-radius: 12px 12px 0 0;
  }

  .marquee__track {
    gap: 18px;
    animation-duration: 32s;
  }
}

.clip-benefits__header .eyebrow,
.verification .eyebrow,
.comparison .eyebrow {
  margin-bottom: .5rem !important;
}

/* ========================================
   WHY CREATORS CHOOSE US
   ======================================== */
.why {
  position: relative;
  width: 100%;
  padding: clamp(3rem, 4.5vw, 5rem) 0 clamp(3.5rem, 5vw, 5.5rem);
  overflow: hidden;
  background: #ffffff;
}

@media (max-width: 1399.98px) and (min-width: 991px) {
  .why {
    padding-top: 5rem;
    margin-top: 4rem;
  }
}

.why__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.why__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  animation: slowPulseFloat 20s ease-in-out infinite alternate;
}

.why__inner {
  position: relative;
  z-index: 1;
  padding-inline: 1rem;
}

.why__header {
  margin-bottom: clamp(2.25rem, 3.5vw, 3.75rem);
}

.why__header.text-center {
  text-align: center;
}

.why__header.text-center .why__title {
  text-align: center;
  margin-inline: auto;
}

.why__header.text-center .why__subtitle {
  text-align: center;
  margin-inline: auto;
}

.why__header.d-flex {
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.why__header.d-flex .why__subtitle {
  margin-inline: 0;
}

.why__title {
  font-size: var(--fs-section);
  line-height: 1.15;
  letter-spacing: clamp(-0.06rem, -0.1vw, -0.04rem);
  font-weight: var(--font-bold);
  color: #040825;
  margin-top: 0;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.15rem);
}

.why__subtitle {
  max-width: min(90%, 38rem);
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
  line-height: 1.6;
  color: #64748b;
  margin-inline: auto;
}

.why__header-action .btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-height: 60px;
  border-radius: 999px;
  padding: 22px 36px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  box-sizing: border-box;
  white-space: nowrap;
}

.why__grid {
  align-items: stretch;
  row-gap: 12px !important;
  perspective: 1200px;
}

.why__grid {
  align-items: stretch;
}

.why__grid>[class*="col-"] {
  display: flex;
}

html[data-audience="brand"] .why__grid--brand {
  row-gap: 1rem !important;
  align-items: stretch;
}

html[data-audience="brand"] .why__grid--brand>[class*="col-"] {
  display: flex;
}

html[data-audience="brand"] .why__grid--brand .why-card {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

html[data-audience="brand"] .why__grid--brand .why-card__img {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
}

/* Scale card: keep left text visible when covering */
html[data-audience="brand"] .why__grid--brand .why-card--scale .why-card__img {
  object-position: left center;
}

html[data-audience="brand"] .why__grid--brand .why-card--creatives picture {
  display: block;
  height: 100%;
}

.why-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
  transform-style: preserve-3d;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  will-change: transform;
  cursor: pointer;
}

/* Glass shine sweep */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg,
      transparent 32%,
      rgba(255, 255, 255, 0.55) 46%,
      rgba(255, 255, 255, 0.18) 52%,
      transparent 68%);
  background-size: 220% 100%;
  background-position: 140% 0;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition:
    opacity 0.35s ease,
    background-position 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Cursor spotlight + glass rim */
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  background: radial-gradient(320px circle at var(--mx) var(--my),
      rgba(255, 255, 255, 0.4),
      rgba(0, 148, 247, 0.08) 40%,
      transparent 68%);
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 0.35s ease;
}

.why-card:hover,
.why-card.is-active {
  transform: scale(1.03);
  box-shadow: none !important;
  z-index: 5;
}

.why-card:hover::before,
.why-card.is-active::before {
  opacity: 1;
  background-position: -30% 0;
}

.why-card:hover::after,
.why-card.is-active::after {
  opacity: 1;
}

.why-card__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

@media (max-width: 1023.98px) {
  .why {
    padding: 4rem 0 5rem;
  }

  .why__header {
    margin-bottom: 2rem;
  }

  .why-card,
  .why-card__img {
    border-radius: 22px;
  }

  .why-card__img {
    height: auto;
    object-fit: contain;
  }

  html[data-audience="brand"] .why__grid--brand .why-card__img {
    height: 100%;
    object-fit: cover;
  }

  .why-card:hover,
  .why-card.is-active {
    transform: scale(1.02);
  }
}

/* Tablet: mobile images ? first full-width, rest 2x2 (577-991) */
@media (max-width: 991.98px) and (min-width: 577px) {
  .why__grid {
    row-gap: 1rem !important;
    --bs-gutter-x: 1rem;
  }

  .why__grid>[class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
  }

  .why__grid>[class*="col-"]:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  /* Brand: staggered 8/4 + 5/7 (no full-width first card, not 50/50) */
  html[data-audience="brand"] .why__grid--brand>.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    width: 66.666667%;
  }

  html[data-audience="brand"] .why__grid--brand>.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    width: 58.333333%;
  }

  html[data-audience="brand"] .why__grid--brand>.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    width: 41.666667%;
  }

  html[data-audience="brand"] .why__grid--brand>.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    width: 33.333333%;
  }

  html[data-audience="brand"] .why__grid--brand>[class*="col-"]:first-child {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    width: 66.666667%;
  }

  .why-card,
  .why-card--wide {
    width: 100%;
  }

  .why-card picture {
    display: block;
    width: 100%;
  }

  .why-card__img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  html[data-audience="brand"] .why__grid--brand .why-card__img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .why {
    padding: 3.5rem 0 4rem;
  }

  .why__header,
  .why__header.d-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 3.5rem !important;
    gap: 0.5rem !important;
  }

  .why__header-content {
    text-align: center !important;
    width: 100% !important;
  }

  .why__title {
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
    text-align: center !important;
  }

  .why__title .why__title-line {
    display: block !important;
    text-align: center !important;
  }

  .why__subtitle {
    font-size: 0.9375rem;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .why__subtitle .why__subtitle-line {
    display: block !important;
    text-align: center !important;
    white-space: nowrap !important;
    font-size: clamp(0.8rem, 2.75vw, 0.9375rem) !important;
    line-height: 1.6 !important;
  }

  .why__header-action {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 0.5rem !important;
  }

  .why__header-action .btn--primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 32px !important;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
    background: var(--btn-primary-bg, #0025ff) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    filter: none !important;
  }

  .why__grid {
    row-gap: 0.875rem !important;
    perspective: none;
  }

  .why__grid>[class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .why-card,
  .why-card--wide {
    border-radius: 1.5rem;
  }

  .why-card__img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    object-fit: contain;
  }

  html[data-audience="brand"] .why__grid--brand .why-card {
    border-radius: 1.5rem;
    height: auto;
  }

  html[data-audience="brand"] .why__grid--brand .why-card__img {
    height: auto;
    border-radius: 1.5rem;
    object-fit: contain;
  }

  .why-card:hover,
  .why-card.is-active {
    transform: scale(1.02);
  }

  .why-card picture {
    display: block;
    width: 100%;
  }
}



@keyframes slowPulseFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(8px, -12px) scale(1.03);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* ========================================
   CLIP BENEFITS (Brand)
   ======================================== */
.clip-benefits {
  position: relative;
  width: 100%;
  padding: clamp(2.75rem, 4vw, 4.5rem) 0;
}

.clip-benefits__header {
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}

.clip-benefits__title {
  font-size: var(--fs-section);
  line-height: 1.15;
  letter-spacing: clamp(-0.06rem, -0.1vw, -0.04rem);
  font-weight: var(--font-bold);
  color: #040825;
  margin: 0.5rem 0 0;
}

.clip-benefits-t__mob,
.clip-benefits-t__mob-br {
  display: none;
}

.clip-benefits__grid {
  align-items: stretch;
}

.clip-benefits__grid>[class*="col-"] {
  display: flex;
}

.clip-benefits-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transform-style: preserve-3d;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  will-change: transform;
}

.clip-benefits-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg,
      transparent 32%,
      rgba(255, 255, 255, 0.55) 46%,
      rgba(255, 255, 255, 0.18) 52%,
      transparent 68%);
  background-size: 220% 100%;
  background-position: 140% 0;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition:
    opacity 0.35s ease,
    background-position 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.clip-benefits-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  background: radial-gradient(320px circle at 50% 50%,
      rgba(255, 255, 255, 0.35),
      rgba(0, 80, 255, 0.12) 42%,
      transparent 68%);
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 0.35s ease;
}

@media (hover: hover) {
  .clip-benefits-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 22px 48px rgba(0, 80, 255, 0.2),
      0 8px 20px rgba(4, 8, 37, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.35);
  }

  .clip-benefits-card:hover::before {
    opacity: 1;
    background-position: -30% 0;
  }

  .clip-benefits-card:hover::after {
    opacity: 1;
  }

  .clip-benefits-card:hover .clip-benefits-card__img {
    transform: scale(1.03);
  }
}



.clip-benefits-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.clip-benefits-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left center;
  border-radius: inherit;
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  backface-visibility: hidden;
}

@media (max-width: 767.98px) {
  .clip-benefits {
    padding: 3.5rem 0 4rem;
  }

  .clip-benefits__header {
    margin-bottom: 3rem;
    padding: 0 1.25rem;
  }

  .clip-benefits__title {
    font-size: 32px !important;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .clip-benefits-card {
    border-radius: 1.25rem;
  }

  .clip-benefits-card__img {
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 1399.98px) and (min-width: 576px) {
  .clip-benefits {
    padding-top: 4.5rem;
    margin-top: 3.5rem;
  }
}

/* ========================================
   VERIFICATION (Brand)
   ======================================== */
.verification {
  position: relative;
  width: 100%;
  padding: 5rem 0 7.5rem;
  margin-bottom: 2.5rem;
  overflow-x: clip;
  overflow-y: visible;
}

.verification::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  width: 100vw;
  max-width: 100vw;
  height: min(48rem, 80vw);
  background-image: url("../assets/images/elipsis-3.avif");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

/* Soft #f1f5f9 blur bridge into Comparison */
.verification::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 45%);
  width: 100%;
  height: 100%;
  background: #f1f5f9;
  border-radius: 50%;
  flex-shrink: 0;
  filter: blur(200px);
  pointer-events: none;
  z-index: 0;
}

.verification>.container {
  position: relative;
  z-index: 1;
}

.verification__header {
  max-width: 48rem;
  margin: 0 auto 2.75rem;
}

.verification__title {
  font-size: var(--fs-section);
  line-height: 130%;
  letter-spacing: -0.04rem;
  font-weight: var(--font-bold);
  color: #040825;
  margin: 0.75rem 0 1.25rem;
}

.verification__subtitle {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  color: #64748b;
}

@media (min-width: 768px) {
  body:not(.pricing-page) .verification__header {
    max-width: 58rem;
  }

  body:not(.pricing-page) .verification__subtitle {
    max-width: 56rem;
  }
}

.verification__grid {
  align-items: stretch !important;
  margin-top: 0.5rem;
}

.verification__grid>[class*="col-"] {
  display: flex;
}

.verification-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: visible;
  isolation: auto;
  background: transparent;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.verification-card picture {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.verification-card__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  background: transparent;
  filter: drop-shadow(0 12px 28px rgba(15, 23, 42, 0.12));
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .verification-card:hover {
    transform: scale(1.04);
    box-shadow: none;
  }

  .verification-card:hover .verification-card__img {
    filter: drop-shadow(0 18px 36px rgba(15, 23, 42, 0.18));
  }

  .verification-card--featured:hover {
    transform: scale(1.04);
  }
}

@media (min-width: 768px) {
  .verification {
    padding-bottom: 9.5rem;
    margin-bottom: 6rem;
  }

  .verification-card--featured {
    margin-top: 0;
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .verification {
    padding: 3.5rem 0 5rem;
    margin-bottom: 1.5rem;
  }

  .verification::before {
    top: 62%;
    width: 100vw;
    max-width: 100vw;
    height: min(32rem, 100vw);
    background-size: 100% auto;
  }

  .verification::after {
    width: min(1100px, 100vw);
    height: 1100px;
    transform: translate(-50%, 40%);
    filter: blur(140px);
  }

  .verification__header {
    margin-bottom: 2.25rem;
    padding: 0 1rem;
  }

  .verification__title {
    font-size: 32px !important;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .verification__subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .verification-card {
    border-radius: 0;
  }

  .verification-card--featured {
    margin-top: 0;
    transform: none;
  }
}

@media (min-width: 576px) and (max-width: 1599.98px) {
  .verification {
    padding-top: 4.5rem;
    margin-top: 3.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 5rem;
  }
}

/* ========================================
   COMPARISON (Brand)
   ======================================== */
.comparison {
  position: relative;
  width: 100%;
  padding: 5rem 0 5.5rem;
  overflow: visible;
}

.comparison::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-57%, -50%) !important;
  width: min(88rem, 120vw);
  height: min(42rem, 70vw);
  background-image: url(../assets/images/union-bottom.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  animation: comparisonBlobDrift 8s ease-in-out infinite;
  opacity: 0.95;
  will-change: transform;
}

@keyframes comparisonBlobDrift {

  0%,
  100% {
    transform: translate(-59%, -52%);
  }

  50% {
    transform: translate(calc(-59% + 8px), calc(-52% - 10px));
  }
}

@media (max-width: 1399.98px) and (min-width: 576px) {
  .comparison::before {
    width: min(70rem, 120vw);
    animation-name: comparisonBlobDriftMid;
  }
}

@keyframes comparisonBlobDriftMid {

  0%,
  100% {
    transform: translate(-60%, -52%);
  }

  50% {
    transform: translate(calc(-60% + 6px), calc(-52% - 8px));
  }
}

.comparison>.container {
  position: relative;
  z-index: 1;
}

.comparison__header {
  max-width: 48rem;
  margin: 0 auto 5rem;
}

.comparison__title {
  font-size: var(--fs-section);
  line-height: 130%;
  letter-spacing: -0.04rem;
  font-weight: var(--font-bold);
  color: #040825;
  margin: 0.75rem 0 1.25rem;
}

.comparison__subtitle {
  margin: 0 auto;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  color: #64748b;
}

.comparison__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 2.5rem auto 0;
  border-radius: 1.75rem;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transform: translateY(0) scale(1);
  transform-origin: center center;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  will-change: transform;
}

.comparison__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg,
      transparent 32%,
      rgba(255, 255, 255, 0.55) 46%,
      rgba(255, 255, 255, 0.18) 52%,
      transparent 68%);
  background-size: 220% 100%;
  background-position: 140% 0;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition:
    opacity 0.35s ease,
    background-position 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.comparison__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  background: radial-gradient(420px circle at 50% 40%,
      rgba(255, 255, 255, 0.35),
      rgba(0, 80, 255, 0.12) 42%,
      transparent 68%);
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 0.35s ease;
}

.comparison__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  pointer-events: none;
}

.comparison__visual picture {
  display: block;
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .comparison__visual:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  }

  .comparison__visual:hover::before {
    opacity: 1;
    background-position: -30% 0;
  }

  .comparison__visual:hover::after {
    opacity: 1;
  }
}

@media (max-width: 767.98px) {
  .comparison {
    padding: 3.5rem 0 4rem;
  }

  .comparison::before {
    top: 68%;
    width: min(48rem, 160vw);
    height: min(28rem, 95vw);
  }

  html body:not(.pricing-page) .comparison::before {
    top: 30%;
    width: min(48rem, 121vw);
    height: min(28rem, 95vw);
  }

  .comparison__header {
    margin-bottom: 3.25rem;
    padding: 0 1rem;
  }

  .comparison__title {
    font-size: 32px !important;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .comparison__subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .comparison__visual {
    margin-top: 1.5rem;
    border-radius: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  html body:not(.pricing-page) .comparison::before {
    top: 36%;
    width: min(48rem, 121vw);
    height: min(28rem, 95vw);
  }
}

/* ========================================
   CREATOR STORIES
   ======================================== */
.stories {
  position: relative;
  width: 100%;
  padding: clamp(2.75rem, 4vw, 4.5rem) 0;
  margin-block: clamp(1rem, 2vw, 2.5rem);
}

.stories__header {
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}

.stories__title {
  font-size: var(--fs-section);
  line-height: 1.15;
  letter-spacing: clamp(-0.06rem, -0.1vw, -0.04rem);
  font-weight: var(--font-bold);
  color: #040825;
  margin: 0;
}

.stories__visual {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.stories__visual picture {
  display: block;
  width: 100%;
}

.stories__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  backface-visibility: hidden;
}

/* Glass shine ? same language as why-cards */
.stories__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg,
      transparent 32%,
      rgba(255, 255, 255, 0.55) 46%,
      rgba(255, 255, 255, 0.18) 52%,
      transparent 68%);
  background-size: 220% 100%;
  background-position: 140% 0;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition:
    opacity 0.35s ease,
    background-position 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.stories__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.stories__visual:hover,
.stories__visual:focus-within,
.stories__visual.is-active {
  transform: translateY(-2px);
  box-shadow: none !important;
  background: transparent !important;
}

.stories__visual:hover::before,
.stories__visual:focus-within::before,
.stories__visual.is-active::before {
  opacity: 1 !important;
  background-position: -30% 0;
}

.stories__visual:hover::after,
.stories__visual:focus-within::after,
.stories__visual.is-active::after {
  opacity: 1 !important;
}

.stories__visual:hover .stories__img,
.stories__visual:focus-within .stories__img,
.stories__visual.is-active .stories__img {
  transform: scale(1.015);
}

@media (max-width: 1023.98px) {
  .stories {
    padding: 4rem 0 4.5rem;
  }

  .stories__header {
    margin-bottom: 2.5rem;
  }

  .stories__visual,
  .stories__img {
    border-radius: 1.5rem;
  }

  .stories__visual:hover,
  .stories__visual:focus-within,
  .stories__visual.is-active {
    transform: none !important;
    box-shadow: none !important;
  }

  .stories__visual:hover .stories__img,
  .stories__visual:focus-within .stories__img,
  .stories__visual.is-active .stories__img {
    transform: none !important;
  }
}



/* ========================================
   FAQ
   ======================================== */
.faq {
  position: relative;
  width: 100%;
  padding: 5.5rem 0 6.5rem;
  /* background: #f8fafc; */
}

.faq__header {
  margin-bottom: 5rem;
}

.faq__title {
  margin: 0.75rem 0 0;
  font-size: var(--fs-section);
  line-height: 130%;
  letter-spacing: -0.04rem;
  font-weight: 700;
  color: #040825;
}

.faq__grid {
  align-items: start;
}

.faq__grid>[class*="col-"] {
  display: flex;
}

.faq__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-item {
  position: relative;
  isolation: isolate;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  padding: 32px 20px 32px 32px;
  overflow: hidden;
  transition:
    background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.faq-item::after {
  content: "";
  position: absolute;
  top: -105%;
  right: -40%;
  width: min(560px, 130%);
  height: min(340px, 120%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  filter: blur(75px);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transform: scale(0.85);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open {
  background: #111111;
  /* border-color: #111111; */
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.faq-item.is-open::after {
  opacity: 1;
  transform: scale(1);
}

.faq-item__trigger {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item__question {
  flex: 1;
  font-size: clamp(1rem, 0.9vw + 0.75rem, 1.375rem);
  line-height: 140%;
  font-weight: 600;
  color: #000000;
  transition: color 0.35s ease;
}

.faq-item.is-open .faq-item__question {
  color: #ffffff;
}

.faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  color: #94a3b8;
  transition: color 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item__icon i {
  font-size: 18px;
  line-height: 1;
}

.faq-item.is-open .faq-item__icon {
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-item__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-item__answer {
  margin: 0;
  padding-top: 14px;
  padding-right: 2rem;
  font-size: 16px;
  line-height: 170%;
  font-weight: 400;
  color: #e2e8f0;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.35s ease 0.05s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.faq-item.is-open .faq-item__answer {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023.98px) {
  .faq {
    padding: 4rem 0 5rem;
  }

  .faq__header {
    margin-bottom: 3.25rem;
  }

  .faq-item {
    padding: 24px 18px 24px 24px;
    border-radius: 24px;
  }

  .faq-item::after {
    width: min(420px, 110%);
    height: min(260px, 100%);
    top: -60%;
    right: -32%;
  }

  .faq-item__answer {
    font-size: 15px;
    padding-right: 1rem;
  }
}

@media (max-width: 575.98px) {
  .faq {
    padding: 3rem 0 4rem;
  }

  .faq__header {
    margin-bottom: 2.5rem;
  }

  .faq__col {
    gap: 12px;
  }

  .faq-item {
    padding: 20px 16px 20px 20px;
    border-radius: 20px;
  }

  .faq-item::after {
    width: min(320px, 140%);
    height: min(200px, 110%);
    top: -84%;
    right: -45%;
    filter: blur(100px);
  }

  .faq-item__answer {
    font-size: 14px;
    line-height: 165%;
    padding-top: 12px;
  }

  .faq-item__icon {
    width: 24px;
    height: 24px;
  }

  .faq-item__icon i {
    font-size: 16px;
  }
}



/* ========================================
   SITE FOOTER
   ======================================== */
.site-footer {
  position: relative;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  background: linear-gradient(180deg,
      #f2f5fa 0%,
      #f0f5fb 5%,
      #e6f3fb 10%,
      #ddf1fa 14%,
      #cdedf8 18%,
      #a8e5f8 25%,
      #7cd9fa 32%,
      #3ac2f6 40%,
      #10a9f7 48%,
      #1195f7 55%,
      #127cf4 62%,
      #145ef5 70%,
      #184bf6 78%,
      #1e40f7 85%,
      #182bf3 92%,
      #1928f3 100%);
}

.site-footer__body,
.site-footer__base {
  max-width: 100%;
}

.site-footer__cta {
  position: relative;
  z-index: 2;
  padding: 7.5rem 1rem 4.5rem;
}

.site-footer__cta-title {
  margin: 0 auto 1rem;
  max-width: none;
  font-size: clamp(2.25rem, 4vw + 1rem, 80px);
  line-height: 1.15;
  letter-spacing: clamp(-0.08rem, -0.12vw, -0.125rem);
  font-weight: 700;
  color: #0f172a;
}

.site-footer__cta-line {
  display: block;
  white-space: nowrap;
}

.site-footer__cta-line--mob {
  display: none;
}

.site-footer__cta-text {
  margin: 1.25rem auto 2rem;
  max-width: 52rem;
  font-size: 16px;
  line-height: 180%;
  font-weight: 400;
  color: #1e293b;
}

html[data-audience="creator"] .site-footer__cta-text {
  max-width: 52rem;
  white-space: normal;
}

.site-footer__cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px 42px 24px 42px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  box-shadow: none;
}

.site-footer__cta-btn-glow {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 154px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(22px);
  flex-shrink: 0;
  pointer-events: none;
  z-index: 0;
}

.site-footer__cta-btn-label {
  position: relative;
  z-index: 1;
}

.site-footer__cta-btn:hover {
  background: #020617;
  color: #ffffff;
}

.site-footer__body {
  position: relative;
  z-index: 1;
  padding: 3.75rem 0 0;
  color: #ffffff;
  overflow: visible;
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

.site-footer__row {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 1rem;
  width: auto;
  height: auto;
}

.site-footer__logo-svg {
  width: 28px;
  height: 36px;
  flex-shrink: 0;
  display: block;
}

.site-footer__logo-mark {
  display: none;
}

.site-footer__logo-mark--brand {
  display: none;
}

.site-footer__wordmark {
  font-family: var(--font-family);
  font-size: 24px;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.site-footer__tagline {
  margin: 0 0 0;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  color: #f1f5f9;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  margin-top: 2.25rem;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #ffffff !important;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer__social:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.site-footer__social .ph,
.site-footer__social i {
  font-size: 18px !important;
  line-height: 1 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  display: inline-block;
}

.site-footer__heading {
  margin: 0 0 1.15rem;
  font-size: 14px;
  line-height: 140%;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.site-footer__links a {
  display: inline-block;
  color: #f1f5f9;
  text-decoration: none;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__links a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.site-footer__discord-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

.site-footer__discord {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer__discord:hover {
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: none;
}

.site-footer__discord-icon {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #5865f2;
}

.site-footer__discord-label {
  position: relative;
  z-index: 1;
  display: block;
  width: 126px;
  height: 14px;
  flex-shrink: 0;
  color: #0f172a;
}

.site-footer__discord-glow {
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  width: 154px;
  height: 48px;
  border-radius: 50%;
  background: #3ffff5;
  filter: blur(22px);
  flex-shrink: 0;
  pointer-events: none;
  z-index: 0;
}

.site-footer__base {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.site-footer__watermark-area {
  position: relative;
  z-index: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  overflow: visible;
  pointer-events: none;
  display: block;
  box-sizing: border-box;
  padding-inline: 0px;
}

.site-footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem 0 2.5rem;
  border-top: none;
  flex-wrap: wrap;
  background: transparent;
}

.site-footer__copy,
.site-footer__disclaimer {
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  white-space: normal;
}

.site-footer__watermark {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: clamp(3.5rem, 16vw, 300px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}

.site-footer__watermark span {
  flex: 0 0 auto;
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.42) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

html[data-audience="brand"] .site-footer__watermark span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.32) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

html[data-audience="brand"] .site-footer__cta {
  padding: clamp(3.5rem, 5.5vw, 6.5rem) 1rem clamp(2.5rem, 4vw, 4.5rem);
}

html[data-audience="brand"] .site-footer__cta-title {
  margin: 0 auto 2rem;
  line-height: 1.18;
  max-width: min(90%, 54rem);
  text-align: center;
}

html[data-audience="brand"] .site-footer__cta-title [data-audience-copy="brand"] {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

html[data-audience="brand"] .site-footer__cta-text {
  margin: 0 auto clamp(1.25rem, 2vw, 1.75rem);
  max-width: min(90%, 48rem);
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
  line-height: 1.65;
  text-align: center;
}

html[data-audience="brand"] .site-footer__cta-title [data-audience-copy="brand"] .site-footer__cta-line {
  white-space: nowrap;
  text-align: center;
}

html[data-audience="brand"] .site-footer__cta-btn[data-audience-copy="brand"] {
  margin-top: 1rem;
}

@media (max-width: 1023.98px) {
  .site-footer__cta {
    padding: 4rem 1.5rem 3.5rem;
  }

  html[data-audience="brand"] .site-footer__cta {
    padding: clamp(3rem, 4.5vw, 4.5rem) 1.5rem clamp(2.25rem, 3.5vw, 3.5rem);
  }

  html[data-audience="brand"] .site-footer__cta-title {
    margin-bottom: 1.75rem;
  }

  .site-footer__body {
    padding: 2.5rem 0 0;
  }

  .site-footer__logo {
    width: auto;
    height: auto;
  }

  .site-footer__logo-svg {
    width: 28px;
    height: 36px;
  }

  .site-footer__base {
    margin-top: 1.75rem;
  }
}

@media (max-width: 576px) {
  .site-footer__cta {
    padding: 3.25rem 1.25rem 2.5rem;
  }

  .demo-check {
    font-size: 12px !important;
  }

  html[data-audience="brand"] .site-footer__cta {
    padding: 3.5rem 1.25rem 2.75rem;
  }

  html[data-audience="brand"] .site-footer__cta-title {
    margin-bottom: 1.5rem;
  }

  .site-footer__cta-title {
    margin-bottom: 0.85rem;
    max-width: 100%;
    padding: 0 0.25rem;
    font-size: clamp(1.75rem, 7vw, 32px);
    line-height: 130%;
    letter-spacing: -0.04em;
    font-weight: 700;
    overflow: visible;
    text-align: center;
  }

  .site-footer__cta-line--desk {
    display: none;
  }

  .site-footer__cta-line--mob {
    display: block;
    white-space: normal;
    overflow: visible;
  }

  html[data-audience="brand"] .site-footer__cta-title {
    font-size: clamp(1.75rem, 6.8vw, 32px) !important;
    line-height: 130%;
    letter-spacing: -0.04rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  html[data-audience="brand"] .site-footer__cta-title [data-audience-copy="brand"] {
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }

  html[data-audience="brand"] .site-footer__cta-title [data-audience-copy="brand"] .site-footer__cta-line--mob {
    display: block;
    white-space: normal;
    max-width: 100%;
  }

  html[data-audience="brand"] body:not(.pricing-page) .site-footer__cta-title {
    font-size: 30px !important;
    line-height: 130%;
    letter-spacing: -0.04em;
    width: 100%;
    max-width: 100%;
    padding: 0 0.75rem;
  }

  html[data-audience="brand"] body:not(.pricing-page) .site-footer__cta-title [data-audience-copy="brand"] .site-footer__cta-line--mob {
    display: block;
    white-space: nowrap;
    max-width: none;
  }

  .site-footer__cta-text {
    margin: 0.85rem auto 1.75rem;
    max-width: 22rem;
    padding: 0 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #334155;
    white-space: normal;
    text-align: center;
  }

  .site-footer__cta-btn {
    padding: 1rem 1.75rem;
    font-size: 1rem;
    border-radius: 999px;
  }

  .site-footer__cta-btn-glow {
    display: block;
    opacity: 1;
    top: -20px;
    width: 120px;
    height: 40px;
    filter: blur(18px);
    background: rgba(255, 255, 255, 0.55);
  }

  .site-footer__body {
    padding: 1.5rem 1.5rem 0;
  }

  .site-footer__inner.container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .site-footer__row {
    --bs-gutter-y: 2rem;
    --bs-gutter-x: 1.25rem;
  }

  .site-footer__logo {
    width: auto;
    height: auto;
    /* margin-bottom: 1.5rem; */
  }




  .site-footer__tagline {
    font-size: 0.875rem;
  }

  .site-footer__socials {
    margin-top: 1.5rem;
    gap: 0.55rem;
  }

  .site-footer__social {
    width: 36px;
    height: 36px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.55);
  }

  .site-footer__heading {
    margin-bottom: 0.95rem;
    font-size: 0.8125rem;
  }

  .site-footer__links {
    gap: 0.75rem;
  }

  .site-footer__links a {
    font-size: 0.875rem;
  }

  .site-footer__discord-wrap {
    width: fit-content;
    max-width: 100%;
    margin-top: 0.25rem;
    align-items: flex-start;
  }

  .site-footer__discord {
    width: fit-content;
    max-width: 100%;
    justify-content: center;
    padding: 0.95rem 1.25rem;
    font-size: 0.9375rem;
  }

  .site-footer__base {
    margin-top: 2.25rem;
    overflow: visible;
  }

  .site-footer__watermark-area {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 1rem 0 0.85rem;
    overflow: hidden;
    box-sizing: border-box;
  }

  .site-footer__watermark {
    font-size: clamp(2.75rem, 17.5vw, 4.75rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    justify-content: space-between;
    width: calc(100% / 1.2);
    max-width: none;
    padding: 0;
    margin-left: 0;
    margin-right: auto;
    box-sizing: border-box;
    transform: scale(1.2);
    transform-origin: left center;
  }

  .site-footer__bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.65rem 0.25rem 1.25rem;
    text-align: left;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
  }

  .site-footer__bottom.container {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    max-width: 100%;
  }

  .site-footer__bottom-row {
    justify-content: space-between;
    text-align: left;
  }

  .site-footer__bottom .site-footer__col-brand,
  .site-footer__bottom .site-footer__col-more {
    display: flex;
    justify-content: flex-start;
  }

  .site-footer__copy,
  .site-footer__disclaimer {
    display: block !important;
    font-size: clamp(9.5px, 2.7vw, 11px);
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap !important;
  }

  .site-footer__copy {
    text-align: left;
    flex-shrink: 0;
    white-space: nowrap !important;
  }

  .site-footer__disclaimer {
    text-align: right;
    max-width: none !important;
    white-space: nowrap !important;
    flex-shrink: 0;
  }

  html[data-audience="brand"] .site-footer__disclaimer[data-audience-copy="brand"] {
    font-size: clamp(9px, 2.55vw, 10.5px);
    line-height: 1.3;
    white-space: nowrap !important;
    max-width: none !important;
  }
}

/* ========================================
   TABLET / MID (577px - 1023px)
   Phone <=576 keeps its own overrides.
   ======================================== */
@media (max-width: 1023.98px) and (min-width: 577px) {
  :root {
    --fs-hero: clamp(2.5rem, 4.5vw + 1rem, 3.75rem);
    --fs-display: clamp(2.125rem, 2.5vw + 1rem, 3rem);
    --fs-section: clamp(2rem, 2.2vw + 1rem, 2.75rem);
  }

  .page {
    padding: 1.25rem 1.25rem 3rem;
  }

  .page::after {
    height: 3.5rem;
  }

  /* Hero */
  .hero__ctas {
    gap: 0.625rem !important;
    margin-bottom: 1.5rem;
  }

  .btn--primary,
  .btn--secondary,
  .hero__ctas .btn {
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
  }

  .hero-payout {
    margin: 2rem auto 1.25rem;
  }

  .hero__subtitle {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* About */
  .about {
    padding: 2.75rem 0 4rem;
  }

  .about__header {
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
    padding: 0 1.5rem;
  }

  .about-br-mobile {
    display: inline;
  }

  .about-br-desktop {
    display: none;
  }

  .about__gallery-wrap::before {
    width: min(96%, 36rem);
    height: min(72%, 20rem);
    top: 50%;
    transform: translate(-50%, -50%);
  }

  html[data-audience="brand"] .about__gallery-wrap::before {
    display: none;
  }

  .about-marquee {
    height: 420px;
    padding: 1rem;
  }

  .about-marquee__img {
    max-height: calc(420px - 2rem);
    border-radius: 1rem;
  }

  .about-marquee__track {
    gap: 12px;
  }

  /* How it works */
  .hiw {
    padding: 2.75rem 0 3.25rem;
  }

  .hiw-mobile__header {
    margin-bottom: 1.5rem;
  }

  /* Earnings */
  .earnings {
    padding: 3.25rem 0;
  }

  .earnings-br-mobile {
    display: inline;
  }

  .earnings-br-desktop {
    display: none;
  }

  .earnings-card {
    padding: 2rem 1.75rem 1.5rem;
    border-radius: 2rem;
  }

  .earnings-slider {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }

  .earnings-slider__wrap {
    height: 36px;
    --thumb-half: 18px;
  }

  .earnings-slider__thumb {
    width: 36px;
    height: 36px;
  }

  .earnings-slider__thumb svg {
    width: 18px;
    height: 18px;
  }

  .earnings-stats {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .earnings .row.mb-5 {
    margin-bottom: 1.5rem !important;
  }

  /* Campaigns */
  .campaigns {
    padding: 2.75rem 0;
  }

  .campaigns .campaign-card {
    width: 320px;
  }

  .campaigns .campaign-card__img-wrap {
    height: 180px;
  }

  .marquee__track {
    gap: 20px;
  }

  .campaigns__cta-wrap {
    margin-top: 1.75rem;
  }

  /* Why / Stories */
  .why {
    padding: 2.75rem 0 3.25rem;
  }

  .why__header,
  .why__header.d-flex {
    margin-bottom: 3.5rem !important;
  }

  .why__grid {
    row-gap: 0.875rem !important;
  }

  .stories {
    padding: 2.75rem 0 3.25rem;
  }

  .stories__header {
    margin-bottom: 1.5rem;
  }

  .faq {
    padding: 2.75rem 0 3.25rem;
  }

  .faq__header {
    margin-bottom: 2rem;
  }

  /* Footer */
  .site-footer__cta {
    padding: 7rem 1.5rem 2.5rem;
  }

  .site-footer__cta-title {
    font-size: clamp(2rem, 3.5vw + 1rem, 2.75rem);
    max-width: 36rem;
    padding: 0 0.5rem;
  }

  .site-footer__cta-text {
    max-width: 52rem;
    padding: 0 0.75rem;
  }

  .site-footer__cta-btn {
    padding: 1.125rem 2rem;
    font-size: 1rem;
  }

  .site-footer__body {
    padding: 2rem 1.5rem 0;
  }

  .site-footer__inner.container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .site-footer__watermark-area {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0;
    overflow: hidden;
  }

  .site-footer__bottom {
    margin-top: 0.75rem;
    padding-bottom: 1.5rem;
  }

  .site-footer__bottom-row {
    align-items: flex-start;
  }

  .site-footer__discord {
    width: fit-content;
    max-width: 100%;
    justify-content: center;
  }
}

@media (min-width: 1500px) {
  .hero-payout-img {
    scale: 1.2 !important;
    margin-block: 4rem !important;
  }

  html[data-audience="brand"] .hero-payout-img {
    scale: 1.33 !important;
    margin-block: 4.5rem !important;
  }

  html[data-audience="creator"] .hero-scene {
    scale: 1 !important;
    margin-block: 0 !important;
  }
}

/* Home (not pricing): brand hero image at 1× from below 1500px down to 992px */
@media (min-width: 992px) and (max-width: 1499.98px) {
  html[data-audience="brand"] body:not(.pricing-page) .hero-payout-img {
    scale: 1 !important;
  }
}

/* Pricing page hero sizing & spacing (Scoped strictly to pricing page only) */
body.pricing-page .page {
  margin-bottom: 2rem !important;
}



body.pricing-page .hero__subtitle {
  max-width: min(96%, 52rem) !important;
  line-height: 1.65 !important;
  margin-inline: auto !important;
}

body.pricing-page .hero__subtitle .hero__subtitle-line {
  display: block;
  white-space: normal;
}

@media (max-width: 991.98px) {
  body.pricing-page .hero__subtitle {
    max-width: 100% !important;
    font-size: clamp(0.85rem, 1.4vw + 0.45rem, 0.95rem) !important;
    line-height: 1.55 !important;
    padding-inline: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  body.pricing-page .hero__subtitle {
    font-size: clamp(0.775rem, 3.2vw, 0.875rem) !important;
    line-height: 1.5 !important;
    padding-inline: 0.25rem;
  }
}

body.pricing-page html[data-audience="brand"] .hero-payout,
body.pricing-page .hero-payout {
  margin-top: 3rem !important;
  margin-bottom: 0 !important;
}

body.pricing-page .hero__ctas {
  margin-bottom: 2.75rem !important;
}

body.pricing-page html[data-audience="brand"] .hero-payout-img,
body.pricing-page .hero-payout-img {
  scale: 1.05 !important;
  margin-block: 0.5rem 0 !important;
  max-width: 88vw;
}

body.pricing-page .hero .row.justify-content-center.mb-2 {
  margin-bottom: 0 !important;
}

body.pricing-page .platforms {
  margin-top: -0.75rem !important;
}

@media (min-width: 1500px) {

  body.pricing-page html[data-audience="brand"] .hero-payout-img,
  body.pricing-page .hero-payout-img {
    scale: 1.12 !important;
    margin-block: 1rem !important;
  }
}

@media (max-width: 991.98px) and (min-width: 576px) {
  body.pricing-page .page {
    margin-bottom: 3.5rem !important;
  }

  body.pricing-page html[data-audience="brand"] .hero-payout,
  body.pricing-page .hero-payout {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
  }

  body.pricing-page .hero__ctas {
    margin-bottom: 1.5rem !important;
  }

  body.pricing-page html[data-audience="brand"] .hero-payout-img,
  body.pricing-page .hero-payout-img {
    scale: 1.19 !important;
    margin-block: 0.5rem 0 !important;
  }

  body.pricing-page .pricing-fee__img {
    scale: 1.15 !important;
    max-width: clamp(420px, 68vw, 640px) !important;
    width: 110% !important;
    margin-block: 1rem 0.5rem !important;
  }

  body.pricing-page .platforms {
    margin-top: -0.5rem !important;
  }
}

@media (max-width: 575.98px) {

  /* Mobile headings — shared line-height */
  h1,
  h2,
  h3,
  .hero__title,
  .about__title,
  .hiw__title,
  .earnings__title,
  .campaigns__title,
  .why__title,
  .clip-benefits__title,
  .verification__title,
  .comparison__title,
  .stories__title,
  .faq__title,
  .reach__title,
  .budget-flow__title,
  .pricing-fee__title,
  .scale-brands__title,
  .site-footer__cta-title,
  body.pricing-page section:not(.site-footer) h2,
  body.pricing-page .pricing-fee__title,
  body.pricing-page .reach__title,
  body.pricing-page .budget-flow__title,
  body.pricing-page .earnings__title,
  body.pricing-page .campaigns__title,
  body.pricing-page .why__title,
  body.pricing-page .clip-benefits__title,
  body.pricing-page .verification__title,
  body.pricing-page .comparison__title,
  body.pricing-page .stories__title,
  body.pricing-page .faq__title,
  body.pricing-page .scale-brands__title,
  body.pricing-page .hero__title,
  body.pricing-page .site-footer__cta-title {
    line-height: 130% !important;
  }

  /* Mobile only: Pricing page section headings - 34px (excluding hero header & footer) */
  body.pricing-page section:not(.site-footer) h2,
  body.pricing-page .pricing-fee__title,
  body.pricing-page .reach__title,
  body.pricing-page .budget-flow__title,
  body.pricing-page .earnings__title,
  body.pricing-page .campaigns__title,
  body.pricing-page .why__title,
  body.pricing-page .clip-benefits__title,
  body.pricing-page .verification__title,
  body.pricing-page .comparison__title,
  body.pricing-page .stories__title,
  body.pricing-page .faq__title,
  body.pricing-page .scale-brands__title {
    font-size: 32px !important;
  }

  body.pricing-page .page {
    min-height: auto !important;
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.25rem !important;
  }

  body.pricing-page .page::after {
    height: 3rem !important;
    opacity: 0.65 !important;
  }

  body.pricing-page .hero {
    padding-top: 1rem !important;
  }

  body.pricing-page .hero__title {
    font-size: clamp(2.7rem, 8.5vw, 2.75rem) !important;
    line-height: 130% !important;
    letter-spacing: -0.03em !important;
    font-weight: 700 !important;
    color: #040825 !important;
    margin-bottom: 1.15rem !important;
    text-align: center !important;
  }

  body.pricing-page .hero__title .hero__title-line {
    display: block !important;
    text-align: center !important;
  }

  body.pricing-page .hero__subtitle {
    width: 100% !important;
    max-width: 100% !important;
    color: #64748b !important;
    margin: 0 auto 1.5rem !important;
    padding-inline: 0 !important;
    text-align: center !important;
  }

  body.pricing-page .hero__subtitle .hero__subtitle-line {
    display: block !important;
    text-align: center !important;
    white-space: nowrap !important;
    font-size: clamp(0.775rem, 2.75vw, 0.9375rem) !important;
    line-height: 1.6 !important;
    letter-spacing: -0.01em !important;
  }

  body.pricing-page .hero__ctas {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 auto 1.25rem !important;
  }

  body.pricing-page .hero__ctas .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 32px !important;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    border-radius: 999px !important;
    background: var(--btn-primary-bg, #0025ff) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    isolation: isolate !important;
    overflow: hidden !important;
  }

  .btn,
  .btn--primary,
  .btn--secondary,
  .pricing-fee__cta,
  .site-footer__cta-btn,
  .nav__btn,
  .nav__btn--launch,
  .nav__btn--signin,
  .earnings-card__cta,
  .campaigns__cta,
  .toggle__btn {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    text-shadow: none !important;
  }

  .btn:hover,
  .btn:focus,
  .btn:active,
  .btn--primary:hover,
  .btn--primary:focus,
  .btn--primary:active,
  .btn--secondary:hover,
  .btn--secondary:focus,
  .btn--secondary:active,
  .pricing-fee__cta:hover,
  .pricing-fee__cta:focus,
  .pricing-fee__cta:active,
  .site-footer__cta-btn:hover,
  .site-footer__cta-btn:focus,
  .site-footer__cta-btn:active,
  .nav__btn:hover,
  .nav__btn:focus,
  .nav__btn:active,
  .nav__btn--launch:hover,
  .nav__btn--launch:focus,
  .nav__btn--launch:active,
  .nav__btn--signin:hover,
  .nav__btn--signin:focus,
  .nav__btn--signin:active,
  .earnings-card__cta:hover,
  .earnings-card__cta:focus,
  .earnings-card__cta:active,
  .campaigns__cta:hover,
  .campaigns__cta:focus,
  .campaigns__cta:active,
  .why__header-action .btn--primary:hover,
  .why__header-action .btn--primary:focus,
  .why__header-action .btn--primary:active,
  .hero__ctas .btn:hover,
  .hero__ctas .btn:focus,
  .hero__ctas .btn:active {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
  }

  .btn::after,
  .btn--secondary::after,
  .pricing-fee__cta::after,
  .site-footer__cta-btn::after,
  .nav__btn::after,
  .earnings-card__cta::after,
  .campaigns__cta::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    filter: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  /* Keep primary button ellipse glow on mobile (all pages) */
  .btn--primary::after,
  .earnings-card__cta.btn--primary::after,
  .hero__ctas .btn--primary::after,
  .why__header-action .btn--primary::after,
  .demo-form__submit.btn--primary::after,
  body.book-demo-page .demo-form__submit::after {
    content: "" !important;
    display: block !important;
    opacity: 1 !important;
    background: var(--btn-ellipse, #3f9dff) !important;
    border-radius: 50% !important;
    width: 215px !important;
    height: 48px !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: -25px !important;
    filter: blur(20px) !important;
    -webkit-filter: blur(20px) !important;
    pointer-events: none !important;
    z-index: -1 !important;
    box-shadow: none !important;
  }

  .site-footer__cta-btn-glow,
  .nav__btn-ellipse {
    display: block !important;
    opacity: 1 !important;
    pointer-events: none !important;
  }

  .nav__btn--signin .nav__btn-ellipse {
    background: #ffffff !important;
    filter: blur(20px) !important;
    -webkit-filter: blur(20px) !important;
  }

  .nav__btn--launch .nav__btn-ellipse {
    background: rgba(255, 255, 255, 0.6) !important;
    filter: blur(22px) !important;
    -webkit-filter: blur(22px) !important;
  }

  .site-footer__cta-btn-glow {
    background: rgba(255, 255, 255, 0.6) !important;
    filter: blur(22px) !important;
    -webkit-filter: blur(22px) !important;
  }

  html body.pricing-page .hero-payout,
  html[data-audience="brand"] body.pricing-page .hero-payout,
  body.pricing-page .hero-payout {
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  html body.pricing-page .hero-payout>.audience-copy,
  html[data-audience="brand"] body.pricing-page .hero-payout>.audience-copy,
  body.pricing-page .hero-payout>.audience-copy {
    width: auto !important;
    max-width: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: visible !important;
  }

  html body.pricing-page .hero-payout-img,
  html[data-audience="brand"] body.pricing-page .hero-payout-img,
  body.pricing-page .hero-payout-img {
    width: clamp(580px, 175vw, 820px) !important;
    max-width: none !important;
    min-width: 580px !important;
    height: auto !important;
    flex-shrink: 0 !important;
    margin: 0.25rem auto 0.75rem !important;
    display: block !important;
    object-fit: contain !important;
    transform: none !important;
    scale: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    animation: none !important;
    will-change: auto !important;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: high-quality !important;
  }

  body.pricing-page .platforms {
    margin-top: 1.25rem !important;
    margin-bottom: 1.5rem !important;
  }

  body.pricing-page .platforms-img,
  html[data-audience="brand"] body.pricing-page .platforms-img {
    max-width: min(90vw, 360px) !important;
    margin: 0 auto !important;
    scale: 0.95 !important;
  }

  body.pricing-page .pricing-fee {
    padding-top: 2.75rem !important;
  }

  body.pricing-page .site-footer__cta {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  body.pricing-page .site-footer__cta>.container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center !important;
    text-align: center !important;
  }

  body.pricing-page .site-footer__cta-title {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    font-size: 2rem !important;
    line-height: 130% !important;
    letter-spacing: -0.04em !important;
    margin: 0 auto 0.85rem !important;
    padding: 0 !important;
    text-align: center !important;
  }

  body.pricing-page .site-footer__cta-title .site-footer__cta-line--mob {
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  body.pricing-page .site-footer__cta-text {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0.85rem auto 2.25rem !important;
    padding: 0 !important;
    font-size: clamp(12px, 3.5vw, 14px) !important;
    line-height: 160% !important;
    color: #334155 !important;
    text-align: center !important;
  }

  body.pricing-page .site-footer__cta-text-desk {
    display: none !important;
  }

  body.pricing-page .site-footer__cta-text-mob {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  body.pricing-page .site-footer__cta-text-line {
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  body.pricing-page .site-footer__cta-btn {
    padding: 1rem 1.75rem !important;
    font-size: 1rem !important;
    align-self: center !important;
    margin-bottom: 0.5rem !important;
  }

  body.pricing-page .site-footer__cta-btn-glow {
    display: block !important;
    opacity: 1 !important;
    filter: blur(18px) !important;
    background: rgba(255, 255, 255, 0.55) !important;
  }

  body.pricing-page .pricing-fee-badge {
    margin-top: 1.75rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: max-content;
    max-width: calc(100% - 0.2rem);
    padding: 8px 18px !important;
    gap: 4px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    background: rgba(255, 255, 255, 0.55) !important;
    border: 1px solid rgba(198, 206, 255, 0.85) !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    align-self: center !important;
  }

  body.pricing-page .pricing-fee-badge__svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
  }

  body.pricing-page .pricing-fee-badge__rate {
    font-size: 13px !important;
    flex-shrink: 0;
    white-space: nowrap !important;
  }

  body.pricing-page .pricing-fee-badge__text {
    font-size: 11px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    text-align: left;
  }

  body.pricing-page .site-footer__base {
    margin-top: 2rem !important;
    overflow: visible !important;
  }

  body.pricing-page {
    overflow-x: clip !important;
    overflow-y: visible !important;
  }

  body.pricing-page .site-footer {
    overflow-x: visible !important;
    overflow-y: visible !important;
  }

  body.pricing-page .site-footer__body {
    overflow: visible !important;
  }

  body.pricing-page .site-footer__watermark-area {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 1rem 0 0.85rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  body.pricing-page .site-footer__watermark {
    font-size: clamp(2.75rem, 17.5vw, 4.75rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.02em !important;
    justify-content: space-between !important;
    width: calc(100% / 1.2) !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    transform: scale(1.2) !important;
    transform-origin: left center !important;
  }

  body.pricing-page .site-footer__bottom {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    margin-top: 0.45rem !important;
    padding: 0.6rem 0.15rem 1.15rem !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    scale: 1.05;
  }

  body.pricing-page .site-footer__copy,
  body.pricing-page .site-footer__disclaimer {
    display: block !important;
    font-size: clamp(9.5px, 2.7vw, 11px) !important;
    line-height: 1.35 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    white-space: nowrap !important;
  }

  body.pricing-page .site-footer__copy {
    flex-shrink: 0 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  body.pricing-page .site-footer__disclaimer {
    flex-shrink: 0 !important;
    max-width: none !important;
    text-align: right !important;
    white-space: nowrap !important;
  }

  html[data-audience="brand"] body.pricing-page .site-footer__disclaimer[data-audience-copy="brand"] {
    font-size: clamp(9px, 2.55vw, 10.5px) !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    max-width: none !important;
  }
}

/* Desktop: show desk text, hide mob text lines */
body.pricing-page .site-footer__cta-text-mob {
  display: none;
}

body.pricing-page .site-footer__cta-text-desk {
  display: inline;
}

/* Pricing page footer title & text layout */
body.pricing-page .site-footer__cta-title {
  max-width: min(96%, 78rem) !important;
  font-size: clamp(2rem, 4vw + 1rem, 80px) !important;
  line-height: 1.15 !important;
  margin: 0 auto clamp(1rem, 2vw, 1.75rem) !important;
  text-align: center !important;
}

body.pricing-page .site-footer__cta-title .site-footer__cta-line {
  white-space: nowrap !important;
  text-align: center !important;
}

@media (min-width: 1400px) {
  body.pricing-page .site-footer__cta-title {
    font-size: 80px !important;
  }

  body.pricing-page .site-footer__cta-text {
    margin-bottom: 2.5rem !important;
  }

  body.pricing-page .pricing-fee-badge {
    margin-top: 2.75rem !important;
  }
}

body.pricing-page .site-footer__cta-text {
  max-width: min(92%, 52rem) !important;
  line-height: 1.65 !important;
  margin: 0 auto clamp(1.25rem, 2vw, 1.75rem) !important;
  text-align: center !important;
}

@media (max-width: 1399.98px) and (min-width: 991px) {
  body.pricing-page .site-footer__cta {
    padding-top: 8rem !important;
    margin-top: 3.5rem !important;
  }
}

/* Pricing page: heading + subtext sections — minor extra gap above 576px */
@media (min-width: 576px) {

  body.pricing-page .reach__header,
  body.pricing-page .budget-flow__header,
  body.pricing-page .earnings__header,
  body.pricing-page .why__header,
  body.pricing-page .clip-benefits__header,
  body.pricing-page .verification__header,
  body.pricing-page .comparison__header,
  body.pricing-page .stories__header,
  body.pricing-page .faq__header {
    margin-bottom: calc(clamp(2rem, 3.5vw, 3.5rem) + 0.75rem) !important;
  }

  body.pricing-page .verification__header {
    margin-bottom: 5.25rem !important;
  }

  body.pricing-page .comparison__header {
    margin-bottom: 4.75rem !important;
  }

  body.pricing-page .campaigns__subtitle {
    margin-bottom: 0.75rem !important;
  }

  /* Minor gap above subtext (between title and subtitle) */
  body.pricing-page .reach__title,
  body.pricing-page .budget-flow__title,
  body.pricing-page .earnings__title,
  body.pricing-page .why__title,
  body.pricing-page .clip-benefits__title,
  body.pricing-page .verification__title,
  body.pricing-page .comparison__title,
  body.pricing-page .stories__title,
  body.pricing-page .faq__title,
  body.pricing-page .campaigns__title {
    margin-bottom: calc(1rem + 0.45rem) !important;
  }
}


/* ========================================
   PRICING PAGE - ONE SIMPLE FEE SECTION
   ======================================== */
.pricing-fee {
  position: relative;
  width: 100%;
  padding: clamp(2.5rem, 4vw, 4.5rem) 0;
  background-color: transparent;
  overflow: hidden;
}

.pricing-fee__row {
  align-items: center;
  row-gap: clamp(1.75rem, 3.5vw, 3rem);
}

.pricing-fee__content {
  max-width: 32rem;
}

.pricing-fee__title {
  margin-bottom: clamp(1rem, 1.8vw, 1.35rem);
  font-size: clamp(2.25rem, 3.5vw + 0.5rem, 64px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #040825;
}

.pricing-fee__title-line {
  display: block;
}

.pricing-fee__br-mid {
  display: none;
}

@media (max-width: 1299.98px) and (min-width: 991px) {
  .pricing-fee__br-mid {
    display: block;
  }
}

.pricing-fee__text {
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
  line-height: 1.65;
  font-weight: 400;
  color: #475569;
  margin-bottom: clamp(1.75rem, 2.8vw, 2.5rem);
  max-width: 28rem;
}

.pricing-fee__cta-wrap {
  display: flex;
  align-items: center;
}

.pricing-fee__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 36px;
  height: 60px;
  min-height: 60px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  box-sizing: border-box;
}

.pricing-fee__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  perspective: 1200px;
  transform-style: preserve-3d;
  animation: floatPricingFee 4.2s ease-in-out infinite;
  overflow: visible;
}

.pricing-fee__visual.is-tilting {
  animation-play-state: paused;
}

.pricing-fee__img {
  display: block;
  width: 120%;
  max-width: clamp(480px, 46vw, 820px);
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  filter: drop-shadow(0 24px 48px rgba(0, 80, 255, 0.12));
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
  pointer-events: none;
  user-select: none;
}

.pricing-fee__visual.is-tilting .pricing-fee__img {
  transition: transform 0.12s ease-out, filter 0.3s ease;
  filter: drop-shadow(0 32px 64px rgba(0, 80, 255, 0.2));
}

@keyframes floatPricingFee {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (min-width: 1400px) {
  .pricing-fee__img {
    width: 145%;
    max-width: 980px;
    scale: 1.1;
  }
}

@media (max-width: 1299.98px) {
  .pricing-fee__img {
    scale: 1.08;
    width: 135%;
    max-width: 880px;
  }
}

@media (max-width: 1199.98px) {
  .pricing-fee__img {
    width: 130%;
    max-width: 800px;
    scale: 1.06;
  }
}

@media (max-width: 991.98px) {
  .pricing-fee {
    padding: clamp(2.25rem, 4vw, 3.5rem) 0;
    text-align: center;
  }

  .pricing-fee__content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pricing-fee__title {
    font-size: clamp(1.875rem, 4.5vw, 2.75rem);
    line-height: 1.18;
    text-align: center;
  }

  .pricing-fee__title-line {
    display: block;
    white-space: normal;
  }

  .pricing-fee__text {
    max-width: 32rem;
  }

  .pricing-fee__cta-wrap {
    justify-content: center;
  }

  .pricing-fee__img {
    width: 110%;
    max-width: clamp(420px, 68vw, 640px);
    margin: 1rem auto 0.5rem;
    scale: 1.15;
  }
}

@media (max-width: 575.98px) {
  .pricing-fee__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0;
    --bs-gutter-y: 0;
  }

  .pricing-fee__col-content,
  .pricing-fee__content {
    display: contents;
  }

  .pricing-fee__title {
    order: 1;
    width: 100%;
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 6.5vw, 2.125rem);
    line-height: 130%;
    letter-spacing: -0.02em;
    text-align: center;
  }

  .pricing-fee__title-line {
    display: block;
  }

  .pricing-fee__text {
    order: 2;
    width: 100%;
    margin-bottom: 3.5rem;
    font-size: 0.9375rem;
    line-height: 165%;
    padding: 0 0.75rem;
    text-align: center;
  }

  .pricing-fee__col-visual {
    order: 3;
    width: 100%;
    margin: 0;
  }

  .pricing-fee__cta-wrap {
    order: 4;
    width: 100%;
    justify-content: center;
    margin-top: 1.75rem;
  }

  .pricing-fee__img {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    scale: 1.1;
  }
}

/* ==========================================================================
   Reach Section (Pricing Page)
   ========================================================================== */
.reach {
  position: relative;
  width: 100%;
  padding: clamp(2.5rem, 4vw, 4.5rem) 0;
  margin-block: clamp(1rem, 2vw, 2.5rem);
  background-color: transparent;
}

.reach__header {
  text-align: center;
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}

.reach__title {
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.25rem);
  font-size: clamp(2.25rem, 3.5vw + 0.5rem, 64px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #040825;
}

.reach__subtitle {
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
  line-height: 1.65;
  font-weight: 400;
  color: #475569;
  max-width: min(90%, 42rem);
  margin: 0 auto;
}

.reach__card {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: clamp(1.25rem, 1.8vw, 1.5rem);
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  will-change: transform;
}

.reach__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg,
      transparent 32%,
      rgba(255, 255, 255, 0.55) 46%,
      rgba(255, 255, 255, 0.18) 52%,
      transparent 68%);
  background-size: 220% 100%;
  background-position: 140% 0;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition:
    opacity 0.35s ease,
    background-position 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reach__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  opacity: 0.8;
  transition: opacity 0.35s ease, border-color 0.35s ease;
}

.reach__card picture {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.reach__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .reach__card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
      0 20px 48px rgba(0, 80, 255, 0.14),
      0 8px 20px rgba(4, 8, 37, 0.08);
  }

  .reach__card:hover::before {
    opacity: 1;
    background-position: -30% 0;
  }

  .reach__card:hover::after {
    border-color: rgba(255, 255, 255, 0.95);
    opacity: 1;
  }

  .reach__card:hover .reach__img {
    transform: scale(1.02);
  }
}

@media (max-width: 991.98px) {
  .reach {
    padding: clamp(2.5rem, 4vw, 3.75rem) 0;
    margin-top: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
  }

  .reach__header {
    margin-bottom: clamp(2.25rem, 4vw, 3.25rem) !important;
  }

  .reach__title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
  }
}

@media (max-width: 991.98px) and (min-width: 576px) {
  .reach {
    margin-top: clamp(3rem, 5vw, 4.5rem) !important;
    padding-top: 1.5rem !important;
  }

  .reach__header {
    margin-bottom: clamp(2.5rem, 4.5vw, 3.5rem) !important;
  }

  .reach .row {
    --bs-gutter-x: 0.95rem !important;
    --bs-gutter-y: 0.95rem !important;
    row-gap: 1rem !important;
  }

  .reach .col-md-6 {
    padding-inline: 0.475rem !important;
  }

  .reach__card {
    scale: 1 !important;
    width: 100% !important;
  }
}

@media (max-width: 575.98px) {
  .reach {
    padding: 2rem 0 2.5rem;
    margin-block: 1.5rem;
  }

  .reach__header {
    margin-bottom: 3.25rem !important;
  }

  .reach__title {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 1.15rem;
  }

  .reach__subtitle {
    font-size: 0.875rem;
    line-height: 165%;
    padding: 0 0.5rem;
  }

  .reach__card {
    border-radius: 1.25rem;
    scale: 1 !important;
  }

  .reach__img {
    border-radius: inherit;
  }
}

/* ==========================================================================
   Budget Flow Section (Pricing Page)
   ========================================================================= */
.budget-flow {
  position: relative;
  width: 100%;
  padding: clamp(2.75rem, 4.5vw, 5rem) 0 clamp(3rem, 4.5vw, 5.5rem);
  margin-block: clamp(1.25rem, 2.5vw, 3rem);
  background-color: transparent;
}

@media (max-width: 1399.98px) and (min-width: 991px) {
  .budget-flow {
    padding-top: 5rem;
    margin-top: 4rem;
  }
}

.budget-flow__header {
  max-width: 54rem;
  margin: 0 auto clamp(2rem, 3.5vw, 3.5rem);
}

.budget-flow__title {
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.25rem);
  font-size: clamp(2.25rem, 3.5vw + 0.5rem, 64px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #040825;
}

.budget-flow__intro {
  max-width: min(90%, 44rem);
  margin: 0 auto;
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
  line-height: 1.65;
  font-weight: 400;
  color: #475569;
}

.budget-flow__nav {
  position: relative;
  width: 100%;
  margin-bottom: clamp(2.25rem, 3.5vw, 3.75rem);
}

/* Connecting track lines accurately centered at top: 33px */
.budget-flow__lines {
  position: absolute;
  top: 33px;
  left: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
  z-index: 0;
}

.budget-flow__line {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  height: 4px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.budget-flow__line--0 {
  left: 12.5%;
  width: 25%;
}

.budget-flow__line--1 {
  left: 37.5%;
  width: 25%;
}

.budget-flow__line--2 {
  left: 62.5%;
  width: 25%;
}

.budget-flow__line-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 37, 255, 1) 0%, rgba(108, 219, 255, 1) 100%);
  border-radius: 999px;
  transform-origin: left center;
}

.budget-flow__steps-row {
  position: relative;
  z-index: 1;
  margin: 0 !important;
}

.budget-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 0 0.5rem;
}

.budget-flow__node-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
}

/* Step icon boxes with overflow hidden */
.budget-flow__icon-box {
  position: relative;
  z-index: 1;
  width: clamp(56px, 5vw, 66px);
  height: clamp(56px, 5vw, 66px);
  border-radius: 18px;
  background: #F9FBFD;
  border: 1px solid #ffffff;
  box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0025ff;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.budget-flow__icon-box svg {
  display: block;
  width: clamp(26px, 2.5vw, 32px);
  height: clamp(26px, 2.5vw, 32px);
  transition: fill 0.35s ease, color 0.35s ease;
}

.budget-flow__icon-box svg path {
  fill: currentColor;
}

.budget-flow__step--active .budget-flow__icon-box,
.budget-flow__step--done .budget-flow__icon-box {
  background: #0025ff !important;
  border: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  box-shadow: 0px 8px 30px 0px rgba(0, 37, 255, 0.35);
}

.budget-flow__step--active .budget-flow__icon-box svg,
.budget-flow__step--active .budget-flow__icon-box svg path,
.budget-flow__step--done .budget-flow__icon-box svg,
.budget-flow__step--done .budget-flow__icon-box svg path {
  fill: #ffffff !important;
  color: #ffffff !important;
}

/* Active Top Ellipsis Glow inside the icon box */
.budget-flow__glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 144px;
  height: 65px;
  background: #0e98fb;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: -1;
}

.budget-flow__step--active .budget-flow__glow {
  opacity: 0.95;
}

.budget-flow__step-content {
  max-width: 17.5rem;
  margin: 0 auto;
}

.budget-flow__step-title {
  color: #111111;
  font-size: clamp(1.125rem, 1vw + 0.65rem, 1.5rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.budget-flow__step-text {
  color: #64748b;
  font-size: clamp(0.875rem, 0.25vw + 0.8rem, 0.95rem);
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

/* Visual Tray Container */
.budget-flow__tray {
  background: rgba(255, 255, 255, 0.2);
  border-radius: clamp(18px, 2vw, 24px);
  padding: clamp(12px, 1.5vw, 18px);
  box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  border: 1px solid #fff;
}

.budget-flow__card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  opacity: 1;
  filter: none;
  transform: scale(1);
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

/* Glass shine light sweep - sweeps across and exits completely, leaving card crisp & bright */
.budget-flow__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.2) 25%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 100%);
  transform: skewX(-22deg);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.budget-flow__card::after {
  display: none;
}

.budget-flow__card--active,
.budget-flow__card:hover {
  transform: scale(1.035);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 5;
}

.budget-flow__card--active::before,
.budget-flow__card:hover::before {
  animation: budgetCardSweep 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes budgetCardSweep {
  0% {
    left: -120%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    left: 220%;
    opacity: 0;
  }
}

.budget-flow__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

.budget-flow__step-card {
  display: none;
}

.budget-flow__vertical-track {
  display: none;
}

@media (max-width: 991.98px) {
  .budget-flow {
    padding: clamp(3.5rem, 5.5vw, 5rem) 0;
    margin-block: clamp(2.5rem, 4.5vw, 4rem);
  }

  .budget-flow__lines,
  .budget-flow__track-line,
  .budget-flow__tray {
    display: none !important;
  }

  .budget-flow__header {
    margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
  }

  .budget-flow__nav {
    position: relative;
    padding-left: 64px;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Vertical progress track that animates on mobile */
  .budget-flow__vertical-track {
    display: block !important;
    position: absolute;
    width: 4px;
    background: #e2e8f0;
    border-radius: 999px;
    z-index: 0;
    pointer-events: none;
  }

  .budget-flow__vertical-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #0025ff 0%, #00d2ff 100%);
    box-shadow: none !important;
    border-radius: inherit;
  }

  .budget-flow__steps-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.85rem !important;
    position: relative;
    z-index: 1;
  }

  .budget-flow__step {
    display: block !important;
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    cursor: pointer;
  }

  .budget-flow__node-wrap {
    position: absolute;
    left: -64px;
    top: 0;
    margin-bottom: 0 !important;
    z-index: 2;
  }

  .budget-flow__icon-box {
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.06) !important;
  }

  .budget-flow__icon-box svg {
    width: 24px !important;
    height: 24px !important;
  }

  .budget-flow__step-content {
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
    padding-top: 2px;
  }

  .budget-flow__step-title {
    text-align: left !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 0.35rem !important;
    color: #111111 !important;
  }

  .budget-flow__step-text {
    text-align: left !important;
    font-size: 0.875rem !important;
    line-height: 1.45 !important;
    color: #64748b !important;
    margin-bottom: 0.75rem !important;
  }

  .budget-flow__step-card {
    display: block !important;
    width: 100%;
  }

  .budget-flow__step-card .budget-flow__card {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    pointer-events: auto;
    transform: scale(1);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease, border-color 0.45s ease;
  }

  /* Mobile: active/hover = border only, no shadow */
  .budget-flow__step-card .budget-flow__card--active,
  .budget-flow__step-card .budget-flow__card:hover {
    transform: scale(1.03) !important;
    border-color: rgba(0, 37, 255, 0.4) !important;
    box-shadow: none !important;
    z-index: 3;
  }

  .budget-flow__step-card .budget-flow__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 25%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.25) 75%,
        transparent 100%);
    transform: skewX(-22deg);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
  }

  .budget-flow__step-card .budget-flow__card--active::before,
  .budget-flow__step-card .budget-flow__card:hover::before {
    animation: budgetCardSweep 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .budget-flow__step-card .budget-flow__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }
}

@media (max-width: 575.98px) {
  .budget-flow {
    padding: 2rem 0 2.75rem;
    margin-block: 1.5rem;
  }

  .budget-flow__header {
    margin-bottom: 3.25rem;
  }

  .budget-flow__steps-row {
    gap: 0rem !important;
  }

  .budget-flow__step+.budget-flow__step {
    margin-top: 1.5rem !important;
  }

  .budget-flow__title {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 0.85rem;
    text-align: center !important;
  }

  .budget-flow__title .budget-flow__title-line {
    display: block !important;
    text-align: center !important;
  }

  .budget-flow__intro {
    font-size: 0.9375rem;
    line-height: 160%;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
    text-align: center !important;
  }

  .budget-flow__intro .budget-flow__intro-line {
    display: block !important;
    text-align: center !important;
    white-space: nowrap !important;
    font-size: clamp(0.975rem, 2.75vw, 0.9375rem) !important;
    line-height: 1.6 !important;
  }

  .budget-flow__vertical-fill {
    box-shadow: none !important;
  }

  .budget-flow__nav {
    padding-left: 70px;
    max-width: 100%;
  }

  .budget-flow__nav::before {
    left: 20px;
    top: 22px;
    width: 3.5px;
  }

  .budget-flow__node-wrap {
    left: -70px;
  }

  .budget-flow__icon-box {
    width: 44px !important;
    height: 44px !important;
    border-radius: 18px !important;
  }

  .budget-flow__icon-box svg {
    width: 22px !important;
    height: 22px !important;
  }

  .budget-flow__step-title {
    font-size: 1.0625rem !important;
    margin-bottom: 0.35rem !important;
  }

  .budget-flow__step-text {
    font-size: 0.875rem !important;
    margin-bottom: 1.5rem !important;
  }

  .budget-flow__step-card {
    margin-top: 1.25rem !important;
    margin-bottom: 1rem !important;
  }

  .budget-flow__step-card .budget-flow__card {
    border-radius: 16px;
  }
}

/* ========================================
   PRICING HERO & FOOTER FEE BADGE
   ======================================== */
.pricing-fee-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  border: 1px solid rgba(198, 206, 255, 0.9);
  padding: 8px;
  margin-top: 1.85rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 100%;
}

.pricing-fee-badge__svg {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  vertical-align: middle;
}

.pricing-fee-badge__rate {
  display: inline-flex;
  align-items: center;
  color: #0025ff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-fee-badge__text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #475467;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .pricing-fee-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    flex-wrap: nowrap;
    text-align: left;
    gap: 4px;
    margin-top: 1.5rem;
    max-width: calc(100vw - 1.5rem);
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(198, 206, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .pricing-fee-badge__svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .pricing-fee-badge__rate {
    font-size: 13px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .pricing-fee-badge__text {
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
  }
}

/* ========================================
   SCALE BRANDS SECTION (SVG Wires + 4 Cards)
   ======================================== */
.scale-brands {
  position: relative;
  padding: clamp(3rem, 4.5vw, 5.5rem) 0 clamp(2.5rem, 3.5vw, 4.5rem);
  background: transparent;
  overflow: hidden;
}

@media (max-width: 1399.98px) and (min-width: 991px) {
  .scale-brands {
    padding-top: 5.5rem;
    margin-top: 4.5rem;
    padding-bottom: 5rem;
    margin-bottom: 2rem;
  }
}

.scale-brands__container {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}

.scale-brands__scene {
  position: relative;
  width: min(1283px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  aspect-ratio: 1283 / 1040;
  min-height: 640px;
  padding-bottom: 0;
}

/* SVG Connecting Wires Wrap — exact Figma SVG */
.scale-brands__wires-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
}

.scale-brands__svg {
  width: min(1283px, 100%);
  height: auto;
  max-width: 100%;
  display: block;
  overflow: visible;
  margin: 0 auto;
}

.scale-brands__svg--mobile {
  display: none;
}

/* Base wire tracks — draw-in on load */
.scale-wire-track {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: scaleWireDraw 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.scale-wire-track--glow {
  filter: drop-shadow(0 0 6px rgba(0, 116, 255, 0.35));
}

/* Flowing energy along wires */
.scale-wire-flow {
  stroke: url(#scale_wire_flow_grad);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 14 86;
  stroke-dashoffset: 100;
  animation: scaleWireFlow 2.4s linear infinite;
  filter: drop-shadow(0 0 6px rgba(13, 189, 247, 0.85));
  opacity: 0.9;
}

.scale-wire-flow--1 {
  animation-delay: 0s;
}

.scale-wire-flow--2 {
  animation-delay: 0.55s;
}

.scale-wire-flow--3 {
  animation-delay: 1.1s;
}

.scale-wire-flow--4 {
  animation-delay: 1.65s;
  stroke: #ffffff;
  filter: drop-shadow(0 0 8px #0074FF) drop-shadow(0 0 14px #0DBDF7);
}

@keyframes scaleWireDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes scaleWireFlow {
  0% {
    stroke-dashoffset: 100;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* Legacy pulse classes (unused while cards commented) */
.scale-wire-base,
.scale-wire-pulse {
  display: none;
}

/* Top Floating Logo Node */
.scale-brands__node {
  position: relative;
  z-index: 3;
  margin-top: 130px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Soft white ellipse under logo peak — thins top wire corner */
.scale-brands__peak-fade {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, 0);
  width: min(280px, 55vw);
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(180deg,
      rgba(241, 245, 249, 0) 0%,
      rgba(241, 245, 249, 1) 100%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 1;
}

.scale-brands__node-glow {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 116, 255, 0.35) 0%, rgba(13, 189, 247, 0) 70%);
  filter: blur(14px);
  pointer-events: none;
  animation: scaleNodeAura 3.5s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes scaleNodeAura {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.scale-brands__node-box {
  position: relative;
  z-index: 3;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 10px 30px rgba(0, 37, 255, 0.35); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scale-brands__node:hover .scale-brands__node-box {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 36px rgba(0, 37, 255, 0.45);
}

.scale-brands__node-img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  object-fit: contain;
}

/* Heading sits over wire branch zone (mid diagram) */
.scale-brands__heading-wrap {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  margin: 0;
  max-width: min(900px, 92vw);
  width: 100%;
  pointer-events: none;
}

.scale-brands__title {
  color: #040825;
  font-size: clamp(2.5rem, 4.2vw + 1rem, 80px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 0;
  text-align: center;
  pointer-events: auto;
}

@media (min-width: 1400px) {
  .scale-brands__title {
    font-size: 80px;
  }
}

/* 4 Cards — equal spacing grid at wire tip row */
.scale-brands__cards {
  position: absolute;
  left: 50%;
  top: calc(100% * 782.5 / 1040);
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
  max-width: 1220px;
  height: auto;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 0 12px;
  box-sizing: border-box;
  pointer-events: none;
}

.scale-brands__cards .scale-card {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  min-height: 270px;
  height: 270px;
  transform: none;
  pointer-events: auto;
}

/* Individual Card */
.scale-card {
  position: relative;
  box-shadow: none;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: none;
  outline: none;
  isolation: isolate;
}

/* Bottom → full blue gradient reveal */
.scale-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(180deg,
      rgba(154, 226, 255, 0) 0%,
      #9ae2ff 12%,
      #30b6ff 38%,
      #006aff 72%,
      #003cf5 100%);
  transform: scaleY(0);
  transform-origin: bottom center;
  opacity: 0;
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
  z-index: 0;
  pointer-events: none;
}

.scale-card__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
  justify-content: center;
}

.scale-card__icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  font-size: 28px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.scale-card__icon-box i {
  line-height: 1;
}

.scale-card__icon-svg {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 14px;
  flex-shrink: 0;
}

.scale-card__title {
  color: #111111;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: -1px;
  font-weight: 600;
  margin-bottom: 6px;
  transition: color 0.45s ease;
}

.scale-card__text {
  color: #64748b;
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  margin-bottom: 0;
  transition: color 0.45s ease;
}

/* Hover and Active State of Card */
.scale-card:hover,
.scale-card--active {
  background: #ffffff;
  box-shadow: none;
  transform: translateY(-6px);
  border: none;
  outline: none;
}

.scale-brands__cards .scale-card:hover,
.scale-brands__cards .scale-card--active {
  transform: translateY(-6px);
  box-shadow: none;
}

.scale-card:hover::before,
.scale-card--active::before {
  transform: scaleY(1);
  opacity: 1;
}

.scale-card:hover .scale-card__title,
.scale-card--active .scale-card__title {
  color: #ffffff;
}

.scale-card:hover .scale-card__text,
.scale-card--active .scale-card__text {
  color: #f1f5f9;
}

.scale-card:hover .scale-card__icon-box,
.scale-card--active .scale-card__icon-box {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .scale-brands__heading-wrap {
    top: 50%;
  }

  .scale-brands__title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    letter-spacing: -0.04em;
  }

  .scale-brands__cards .scale-card {
    min-height: 270px;
    height: 270px;
  }

  .scale-card {
    padding: 28px 24px;
  }

  .scale-card__title {
    font-size: 20px;
  }

  .scale-card__text {
    font-size: 15px;
  }
}

@media (max-width: 991.98px) {
  .scale-brands {
    padding: clamp(3rem, 5vw, 4.5rem) 0;
  }

  .scale-brands__scene {
    aspect-ratio: auto;
    min-height: 0;
    width: 100%;
    padding-bottom: 0;
  }

  .scale-brands__wires-wrap,
  .scale-brands__node {
    display: none !important;
  }

  .scale-brands__heading-wrap {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
    max-width: 92vw;
    text-align: center;
  }

  .scale-brands__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    letter-spacing: -0.03em;
    text-align: center;
  }

  .scale-brands__cards {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    pointer-events: auto;
  }

  .scale-brands__cards .scale-card {
    position: relative;
    left: auto !important;
    top: auto;
    width: auto;
    min-height: 280px;
    height: auto;
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .scale-brands {
    padding: 3rem 0 2.75rem;
    overflow: hidden;
  }

  .scale-brands__container {
    overflow: hidden;
  }

  .scale-brands__scene {
    min-height: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* padding-top: 2.25rem; */
    padding-bottom: 0.75rem;
    overflow: hidden;
    gap: 16px;
  }

  /* Show mobile wire + logo */
  .scale-brands__wires-wrap {
    display: block !important;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .scale-brands__svg--desktop {
    display: none !important;
  }

  .scale-brands__svg--mobile {
    display: block !important;
    position: absolute;
    left: 50%;
    top: -14rem;
    bottom: 4.5rem;
    transform: translateX(-50%);
    width: min(100%, 412px);
    height: auto;
    max-height: none;
    margin: 0;
  }

  .scale-brands__svg--mobile .scale-wire-flow--mob {
    stroke: url(#scale_wire_flow_grad_mob);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 12 88;
    stroke-dashoffset: 100;
    animation: scaleWireFlow 2.2s linear infinite;
    filter: drop-shadow(0 0 6px rgba(13, 189, 247, 0.85));
    opacity: 0.95;
  }

  .scale-brands__svg--mobile .scale-wire-flow--mob.scale-wire-flow--4 {
    animation-delay: 1.1s;
    stroke: #ffffff;
    filter: drop-shadow(0 0 8px #0074FF) drop-shadow(0 0 14px #0DBDF7);
  }

  .scale-brands__svg--mobile .scale-wire-track--mob {
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: scaleWireDraw 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .scale-brands__node {
    display: flex !important;
    position: relative;
    z-index: 2;
    margin-top: 6.25rem;
    margin-bottom: 1rem;
  }

  .scale-brands__peak-fade {
    display: none;
  }

  .scale-brands__node-glow {
    width: 96px;
    height: 96px;
  }

  .scale-brands__node-box,
  .scale-brands__node-img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .scale-brands__heading-wrap {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    z-index: 2;
    margin: 0 auto 1.75rem;
    max-width: 92vw;
    pointer-events: auto;
  }

  .scale-brands__title {
    font-size: clamp(1.75rem, 6.5vw, 2.125rem);
    letter-spacing: -0.8px;
  }

  .scale-brands__cards {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    margin-top: 0;
  }

  .scale-card {
    padding: 24px;
    border-radius: 16px;
  }

  .scale-brands__cards .scale-card {
    min-height: 0;
    height: auto;
  }

  .scale-brands__cards .scale-card:hover,
  .scale-brands__cards .scale-card--active {
    transform: none;
  }

  .scale-card__icon-box {
    margin-bottom: 18px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .scale-card__icon-svg {
    width: 40px;
    height: 40px;
  }

  .scale-card__title {
    font-size: 19px;
  }

  .scale-card__text {
    font-size: 14.5px;
  }
}

/* ========================================
   LARGE DESKTOP (1600px+) SECTION SPACING
   ======================================== */
@media (min-width: 1600px) {

  /* 1. About Us Section */
  .about {
    padding: 5.5rem 0 14rem;
    margin-top: 1.25rem;
  }

  /* 2. How It Works Section */
  .hiw {
    padding: 5.5rem 0 8.5rem;
    margin-top: 1rem;
  }

  /* 3. Why Brands/Creators Choose Us Section */
  .why {
    padding: 6rem 0 6.5rem;
    margin-top: 1.5rem;
  }

  .why__header {
    margin-bottom: 4rem;
  }

  /* 4. Verification Section */
  .verification {
    padding: 6rem 0 7rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }

  /* 5. Clip Benefits Section */
  .clip-benefits {
    padding: 5.5rem 0 6rem;
    margin-top: 1.5rem;
  }

  /* 6. Comparison Section */
  .comparison {
    padding: 5.5rem 0 6rem;
    margin-top: 1.25rem;
  }

  /* 7. Creator Stories Section */
  .stories {
    padding: 5.5rem 0 6.5rem;
    margin-block: 1.75rem 3rem;
  }

  /* 8. Pricing Page Sections */
  .pricing-fee {
    padding: 5.5rem 0 5.75rem;
  }

  .reach {
    padding: 5rem 0 6rem;
    margin-block: 1.75rem 3rem;
  }

  .budget-flow {
    padding: 6rem 0 6.5rem;
    margin-block: 3rem 3.5rem;
  }

  .earnings {
    padding: 9.5rem 0 10.5rem;
    margin-top: 2.5rem;
  }

  .campaigns {
    padding: 6rem 0 6rem;
    margin-top: 1.5rem;
  }

  .scale-brands {
    padding: 6.5rem 0 5.5rem;
    margin-top: 3.75rem;
    margin-bottom: 2rem;
  }

  body.pricing-page .site-footer__cta {
    padding-top: 9rem !important;
    margin-top: 3.75rem !important;
  }

  body.pricing-page .site-footer__cta-text {
    margin-bottom: 2.75rem !important;
  }

  body.pricing-page .site-footer__cta-btn {
    margin-bottom: 0.5rem !important;
  }

  body.pricing-page .pricing-fee-badge {
    margin-top: 3rem !important;
  }
}

/* ========================================
   BOOK A DEMO PAGE
   ======================================== */
.book-demo-page .page {
  min-height: auto;
  margin-bottom: 2rem;
}

.demo-hero {
  position: relative;
  width: 100%;
  padding: 2.25rem 0 3rem;
}

.demo-hero__row {
  display: flex !important;
  align-items: stretch !important;
}

.demo-hero__left {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-self: stretch !important;
  min-height: 100% !important;
}

.demo-hero__top {
  display: flex !important;
  flex-direction: column !important;
  flex: 0 0 auto !important;
}

.demo-hero__bottom {
  display: flex !important;
  flex-direction: column !important;
  margin-top: auto !important;
  flex: 0 0 auto !important;
  gap: 50px;
}

.demo-hero__right {
  display: flex !important;
  flex-direction: column !important;
  align-self: stretch !important;
  position: relative;
}

.demo-form-glow {
  display: none;
}

.demo-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px;
}

.demo-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.85rem;
  color: #64748b;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
}

.demo-hero__eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00b3ef;
  display: inline-block;
  flex-shrink: 0;
}

.demo-hero__title {
  margin: 0 0 1.85rem;
  max-width: none;
  color: #111111;
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  line-height: 120%;
  letter-spacing: -1px;
  font-weight: 700;
}

.demo-hero__title-seg {
  display: inline;
}

.demo-hero__br--desk {
  display: none;
}

.demo-hero__br--mob {
  display: inline;
}

.demo-hero__lead-br--mob {
  display: inline;
}

.demo-hero__lead {
  margin: 0 0 2rem;
  max-width: 36rem;
  color: rgba(4, 8, 37, 0.6);
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
}

.demo-hero__features {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  margin-top: 0;
  margin-bottom: 2rem;
}

.demo-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.demo-feature__icon {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05), inset 0px 1px 1px rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.demo-feature__svg {
  width: 62px;
  height: 62px;
  display: block;
}

.demo-feature__title {
  margin: 0 0 0.35rem;
  color: #111111;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -1px;
  font-weight: 600;
}

.demo-feature__text {
  margin: 0;
  color: rgba(4, 8, 37, 0.6);
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  max-width: 28rem;
}

.demo-trust {
  margin-top: 0;
  padding-top: 3rem;
  border-top: 1px solid #92afce;
  width: min(560px, 100%);
}

.demo-trust__label {
  margin: 0 0 1.25rem;
  color: rgba(4, 8, 37, 0.7);
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
}

.demo-trust__logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(560px, 100%);
  min-height: 40px;
}

.demo-trust__img {
  width: min(560px, 100%);
  height: auto;
  max-height: 40px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* Form card */
.demo-form {
  position: relative;
  z-index: 1;
  overflow: visible;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 32px;
  padding: 32px 42px;
  box-shadow: 0px 25.94px 54.04px 0px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #fff;
}

.demo-form__header {
  margin-bottom: 1.5rem;
}

.demo-form__title {
  margin: 0 0 1rem;
  color: #040825;
  font-size: 32px;
  line-height: 124%;
  letter-spacing: -2px;
  font-weight: 600;
}

.demo-form__subtitle {
  margin: 0;
  color: rgba(4, 8, 37, 0.6);
  font-size: 16px;
  line-height: 180%;
  font-weight: 400;
}

.demo-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1rem;
}

.demo-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.demo-field--full {
  grid-column: 1 / -1;
}

.demo-field__label {
  margin: 0;
  color: #040825;
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
  margin-bottom: 4px;
}

.demo-field__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  border-style: solid;
  border-color: #ffffff;
  border-width: 1px;
  padding: 10px 16px;
  color: #040825;
  font-size: 16px;
  line-height: 180%;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.demo-field__input::placeholder {
  color: rgba(4, 8, 37, 0.4);
  font-size: 16px;
  line-height: 180%;
  font-weight: 400;
}

.demo-field__input:focus {
  border-color: rgba(0, 37, 255, 0.45);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.demo-field__error {
  margin: 0;
  color: #e11d48;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
}

.demo-field.is-invalid .demo-field__input,
.demo-field.is-invalid .demo-phone,
.demo-field.is-invalid .demo-select__trigger {
  border-color: #e11d48;
}

.demo-field.is-invalid .demo-phone {
  border-style: solid;
  border-width: 1px;
}

/* Custom smooth select dropdown */
.demo-select {
  position: relative;
  z-index: 1;
  width: 100%;
}

.demo-select.is-open {
  z-index: 40;
}

.demo-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  border: 1px solid #ffffff;
  padding: 10px 16px;
  color: #040825;
  font-family: inherit;
  font-size: 16px;
  line-height: 180%;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.28s ease, background 0.28s ease;
}

.demo-select__trigger:hover {
  background: rgba(255, 255, 255, 0.5);
}

.demo-select__trigger:focus,
.demo-select.is-open .demo-select__trigger {
  border-color: rgba(0, 37, 255, 0.45);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.demo-select__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-select__value.is-placeholder {
  color: rgba(4, 8, 37, 0.4);
}

.demo-select__chevron {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(4, 8, 37, 0.45);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
}

.demo-select.is-open .demo-select__chevron {
  transform: rotate(180deg);
  color: #0025ff;
}

.demo-select__menu {
  position: absolute;
  left: 0;
  width: 100%;
  right: auto;
  top: calc(100% + 4px);
  z-index: 50;
  margin: 0;
  padding: 8px;
  list-style: none;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  max-height: 0;
  overflow: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #d8dce8 transparent;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -6px, 0);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.18s;
}

.demo-select__menu::-webkit-scrollbar {
  width: 4px;
}

.demo-select__menu::-webkit-scrollbar-track {
  background: transparent;
}

.demo-select__menu::-webkit-scrollbar-thumb {
  background: #d8dce8;
  border-radius: 999px;
}

.demo-select.is-open .demo-select__menu {
  max-height: 260px;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  overflow-y: auto;
}

.demo-select__highlight,
.demo-phone__highlight {
  position: absolute;
  left: 8px;
  width: calc(100% - 16px);
  top: 0;
  height: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 8px;
  background: rgba(4, 8, 37, 0.06);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translateY(0);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
  will-change: transform, height, opacity;
}

html.demo-dropdown-open .demo-select__menu,
html.demo-dropdown-open .demo-phone__menu,
html.demo-dropdown-open .demo-phone__panel {
  overscroll-behavior: contain;
}

body.book-demo-page {
  scrollbar-gutter: stable;
}

.demo-select__option {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 8px;
  color: #040825;
  font-size: 15px;
  line-height: 150%;
  font-weight: 400;
  cursor: pointer;
  outline: none;
  background: transparent;
  transition: color 0.2s ease;
}

.demo-select__option:hover,
.demo-select__option.is-active,
.demo-select__option:focus {
  background: transparent;
  color: #040825;
}

.demo-select__option[aria-selected="true"] {
  background: transparent;
  color: #040825;
  font-weight: 500;
}

.demo-phone {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 52px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  border: 1px solid #ffffff;
  padding: 0 4px 0 12px;
  box-shadow: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.demo-phone.is-open,
.demo-phone:focus-within {
  z-index: 45;
  border-color: rgba(0, 37, 255, 0.45);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.demo-phone__country {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin: 0;
  padding: 8px 6px 8px 2px;
  border: 0;
  background: transparent;
  color: rgba(4, 8, 37, 0.55);
  cursor: pointer;
  outline: none;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.demo-phone__country:hover,
.demo-phone.is-open .demo-phone__country {
  color: #040825;
  background: rgba(255, 255, 255, 0.35);
}

.demo-phone__flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(4, 8, 37, 0.06);
}

.demo-phone__chevron {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.demo-phone.is-open .demo-phone__chevron {
  transform: rotate(180deg);
  color: #0025ff;
}

.demo-phone__divider {
  flex-shrink: 0;
  width: 1px;
  height: 22px;
  margin: 0 10px 0 4px;
  background: rgba(4, 8, 37, 0.12);
  border-radius: 1px;
}

.demo-phone__input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 12px 10px 0;
  color: #040825;
  font-family: inherit;
  font-size: 16px;
  line-height: 180%;
  font-weight: 400;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.demo-phone__input::placeholder {
  color: rgba(4, 8, 37, 0.4);
}

.demo-phone__panel {
  position: absolute;
  left: 0;
  width: 100%;
  right: auto;
  top: calc(100% + 4px);
  z-index: 50;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -6px, 0);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.18s;
}

.demo-phone.is-open .demo-phone__panel {
  max-height: 320px;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.demo-phone__search-wrap {
  flex-shrink: 0;
  padding: 8px 8px 6px;
  border-bottom: 1px solid rgba(4, 8, 37, 0.06);
}

.demo-phone__search {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid rgba(4, 8, 37, 0.1);
  border-radius: 8px;
  background: rgba(4, 8, 37, 0.03);
  color: #040825;
  font-family: inherit;
  font-size: 14px;
  line-height: 140%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.demo-phone__search::placeholder {
  color: rgba(4, 8, 37, 0.4);
}

.demo-phone__search:focus {
  border-color: rgba(0, 37, 255, 0.35);
  background: #ffffff;
  box-shadow: none;
}

.demo-phone__search::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  height: 14px;
  width: 14px;
  background: rgba(4, 8, 37, 0.25);
  border-radius: 50%;
  cursor: pointer;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M4.2 4.2a.75.75 0 0 1 1.06 0L8 6.94l2.74-2.74a.75.75 0 1 1 1.06 1.06L9.06 8l2.74 2.74a.75.75 0 1 1-1.06 1.06L8 9.06l-2.74 2.74a.75.75 0 1 1-1.06-1.06L6.94 8 4.2 5.26a.75.75 0 0 1 0-1.06z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M4.2 4.2a.75.75 0 0 1 1.06 0L8 6.94l2.74-2.74a.75.75 0 1 1 1.06 1.06L9.06 8l2.74 2.74a.75.75 0 1 1-1.06 1.06L8 9.06l-2.74 2.74a.75.75 0 1 1-1.06-1.06L6.94 8 4.2 5.26a.75.75 0 0 1 0-1.06z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.demo-phone__menu {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 6px 8px 8px;
  list-style: none;
  box-sizing: border-box;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 240px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #d8dce8 transparent;
}

.demo-phone__menu::-webkit-scrollbar {
  width: 4px;
}

.demo-phone__menu::-webkit-scrollbar-track {
  background: transparent;
}

.demo-phone__menu::-webkit-scrollbar-thumb {
  background: #d8dce8;
  border-radius: 999px;
}

.demo-phone__menu::-webkit-scrollbar-thumb:hover {
  background: #c4cad8;
}

.demo-phone__empty {
  display: none;
  margin: 0;
  padding: 16px 12px 18px;
  text-align: center;
  color: rgba(4, 8, 37, 0.45);
  font-size: 13px;
  line-height: 140%;
}

.demo-phone__empty.is-visible {
  display: block;
}

.demo-phone__option {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #040825;
  font-size: 14px;
  line-height: 140%;
  cursor: pointer;
  outline: none;
  background: transparent;
  transition: color 0.2s ease;
}

.demo-phone__option.is-hidden {
  display: none;
}

.demo-phone__option:hover,
.demo-phone__option.is-active,
.demo-phone__option[aria-selected="true"] {
  background: transparent;
  color: #040825;
}

.demo-phone__option-flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.demo-phone__option-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-phone__option-dial {
  flex-shrink: 0;
  color: rgba(4, 8, 37, 0.45);
  font-variant-numeric: tabular-nums;
}

.demo-phone__option[aria-selected="true"] .demo-phone__option-dial,
.demo-phone__option.is-active .demo-phone__option-dial {
  color: rgba(4, 8, 37, 0.55);
}

.demo-platforms {
  margin: 0;
  padding: 0;
  border: 0;
  margin-bottom: 2rem;
}

.demo-platforms__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2.25rem;
  margin-bottom: 0;
}

.demo-platforms__row .demo-check:last-child {
  flex: 0 0 100%;
}

@media (max-width: 991.98px) {
  .demo-platforms {
    margin-bottom: 0;
  }

  .demo-platforms__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1rem;
    align-items: center;
    margin-top: 8px;
  }

  .demo-platforms__row .demo-check:last-child {
    flex: none;
  }

  .demo-platforms__row .demo-check:last-child span {
    white-space: nowrap;
  }
}

.demo-check {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #040825;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

.demo-check:hover {
  color: #0025ff;
}

.demo-check--block {
  display: flex;
}

.demo-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  margin: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #bdbdbd;
  border-radius: 6px;
  box-shadow: none;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  flex-shrink: 0;
  transition:
    background-color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.15s ease;
}

.demo-check:hover input[type="checkbox"] {
  border-color: rgba(0, 37, 255, 0.55);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.demo-check input[type="checkbox"]:active {
  transform: scale(0.88);
}

.demo-check input[type="checkbox"]::after {
  content: "";
  position: absolute;
  left: 7.5px;
  top: 3px;
  width: 6.5px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 2.2px 2.2px 0;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.15s ease;
}

.demo-check input[type="checkbox"]:checked {
  background: #0025ff;
  border-color: #0025ff;
  box-shadow: none;
  transform: scale(1);
}

.demo-check input[type="checkbox"]:checked::after {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}

.demo-check input[type="checkbox"]:focus-visible {
  box-shadow: none;
  border-color: #0025ff;
}

.demo-form__submit {
  position: relative;
  display: inline-flex;
  width: 100%;
  margin-top: 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  font-size: 1.125rem;
  min-height: 3.25rem;
  isolation: isolate;
  overflow: hidden;
}

.demo-form__submit .demo-form__submit-label,
.demo-form__submit .demo-form__submit-loader {
  position: relative;
  z-index: 1;
}

.demo-form__submit:disabled,
.demo-form__submit.is-loading,
.demo-form__submit.is-loading:disabled {
  opacity: 1 !important;
  background: var(--btn-primary-bg, #0025ff) !important;
  background-color: var(--btn-primary-bg, #0025ff) !important;
  color: var(--bg-white, #fff) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.demo-form__submit:disabled .demo-form__submit-label,
.demo-form__submit.is-loading .demo-form__submit-label {
  color: inherit;
  opacity: 1;
}

.demo-form__submit-loader {
  margin: 0;
  flex-shrink: 0;
  --color-1: #fff;
  --size: 0.4px;
  display: none;
}

.demo-form__submit.is-loading {
  pointer-events: none;
  cursor: wait;
}

.demo-form__submit.is-loading .demo-form__submit-loader {
  display: inline-block;
}

.demo-form__submit .loader {
  --color-1: #fff;
  --size: 0.4px;
  width: calc(48 * var(--size));
  height: calc(48 * var(--size));
  border-radius: 50%;
  border-top: calc(6 * var(--size)) solid var(--color-1);
  border-right: calc(6 * var(--size)) solid transparent;
  box-sizing: border-box;
  animation: demo-form-loader-rotation 1s linear infinite;
}

@keyframes demo-form-loader-rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.demo-form__status {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
}

.demo-form__status.is-success {
  color: #0a7a32;
}

.demo-form__status.is-error {
  color: #c62828;
}

/* Sonner-style confirmation — glass UI */
.sonner {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  right: 1rem;
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  width: min(360px, calc(100vw - 2rem));
  pointer-events: none;
}

.sonner__item {
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem 2.35rem 1rem 1rem;
  border-radius: 16px;
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  font-family: "Figtree", sans-serif;
  box-shadow:
    0 10px 30px rgba(4, 8, 37, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
  animation: sonner-in 0.28s cubic-bezier(0.21, 1.02, 0.73, 1) both;
}

.sonner__item.is-leaving {
  animation: sonner-out 0.2s ease forwards;
}

.sonner__item--success {
  background: linear-gradient(145deg,
      rgba(16, 185, 129, 0.28),
      rgba(255, 255, 255, 0.55) 42%,
      rgba(5, 150, 105, 0.22));
  border: 1px solid rgba(5, 150, 105, 0.55);
  color: #064e3b;
}

.sonner__item--error {
  background: linear-gradient(145deg,
      rgba(244, 63, 94, 0.28),
      rgba(255, 255, 255, 0.55) 42%,
      rgba(225, 29, 72, 0.22));
  border: 1px solid rgba(225, 29, 72, 0.55);
  color: #9f1239;
}

.sonner__item--success .sonner__icon {
  color: #fff;
  background: #059669;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

.sonner__item--error .sonner__icon {
  color: #fff;
  background: #e11d48;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.35);
}

.sonner__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}

.sonner__icon svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

.sonner__body {
  min-width: 0;
  flex: 1;
  padding-right: 0.15rem;
}

.sonner__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.sonner__item--success .sonner__title {
  color: #064e3b;
}

.sonner__item--error .sonner__title {
  color: #9f1239;
}

.sonner__desc {
  margin: 0.28rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
}

.sonner__item--success .sonner__desc {
  color: #065f46;
}

.sonner__item--error .sonner__desc {
  color: #be123c;
}

.sonner__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  color: inherit;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.sonner__close:hover,
.sonner__close:focus-visible {
  background: rgba(255, 255, 255, 0.75);
  outline: none;
}

.sonner__close:active {
  transform: scale(0.94);
}

.sonner__close svg {
  width: 0.7rem;
  height: 0.7rem;
  display: block;
}

@keyframes sonner-in {
  from {
    opacity: 0;
    transform: translateY(-0.65rem) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sonner-out {
  to {
    opacity: 0;
    transform: translateY(-0.4rem) scale(0.96);
  }
}

@media (max-width: 575.98px) {
  .sonner {
    top: 1rem;
    bottom: auto;
    right: 0.75rem;
    left: auto;
    transform: none;
    width: min(360px, calc(100vw - 1.5rem));
  }
}

.demo-form__note {
  margin: 0.5rem 0 0;
  text-align: center;
  color: rgba(4, 8, 37, 0.45);
  font-size: 13px;
  line-height: 150%;
  font-weight: 400;
}

@media (min-width: 992px) {
  .demo-hero__row {
    --bs-gutter-x: 3.5rem !important;
  }

  .demo-hero__br--desk {
    display: inline;
  }

  .demo-hero__br--mob {
    display: none;
  }

  .demo-hero__lead-br--mob {
    display: none;
  }

  .demo-hero__title {
    font-size: clamp(2.5rem, 4.2vw, 4rem);
    line-height: 120%;
    letter-spacing: -1px;
  }
}

@media (min-width: 1200px) {
  .demo-hero__row {
    --bs-gutter-x: 4.5rem !important;
  }
}

@media (min-width: 1400px) {
  .demo-hero__row {
    --bs-gutter-x: 5rem !important;
  }
}

@media (max-width: 991.98px) {
  .demo-hero {
    padding-bottom: 2.5rem;
  }

  .demo-hero__row {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 1.75rem 0;
  }

  .demo-hero__left {
    display: contents !important;
    min-height: 0 !important;
  }

  .demo-hero__top {
    order: 1;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 0.5rem;
  }

  .demo-hero__eyebrow {
    margin: 0 auto 1.25rem !important;
    justify-content: center !important;
  }

  .demo-hero__right {
    order: 2;
    position: relative;
    align-self: stretch !important;
    padding-inline: 0px;
    isolation: isolate;
    border-radius: 24px;
    overflow: hidden;
  }

  .demo-form-glow {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .demo-form-glow__ellipse {
    position: absolute;
    border-radius: 50%;
    background: #3fa8f8;
    filter: blur(48px);
    opacity: 0.55;
  }

  .demo-form-glow__ellipse--1 {
    width: 92%;
    height: 42%;
    top: 4%;
    left: 4%;
    opacity: 0.5;
  }

  .demo-form-glow__ellipse--2 {
    width: 88%;
    height: 46%;
    top: 32%;
    left: 6%;
    opacity: 0.48;
  }

  .demo-form-glow__ellipse--3 {
    width: 90%;
    height: 44%;
    bottom: 2%;
    left: 5%;
    opacity: 0.52;
  }

  .demo-hero__bottom {
    order: 3;
    margin-top: 1.5rem !important;
    gap: 2rem;
  }

  .demo-hero__title {
    font-size: clamp(1.45rem, 6.2vw, 2.35rem);
    letter-spacing: -0.8px;
    font-weight: 700;
    line-height: 118%;
    text-align: center;
    margin: 0 auto 1.25rem;
    max-width: 100%;
  }

  .demo-hero__lead {
    text-align: center;
    margin: 0 auto 1.5rem;
    max-width: 28rem;
    font-size: 16px;
    line-height: 150%;
  }

  .demo-hero__features {
    margin-top: 0;
    margin-bottom: 0;
  }

  .demo-form {
    position: relative;
    z-index: 1;
    padding: 28px 22px;
    border-radius: 24px;
    overflow: hidden;
  }

  .demo-form__title {
    font-size: 28px;
    letter-spacing: -1.5px;
    font-weight: 700;
  }

  .demo-form__grid {
    grid-template-columns: 1fr;
  }

  .demo-field__input,
  .demo-select__trigger,
  .demo-phone {
    height: 44px;
    min-height: 44px;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 0;
  }

  .demo-phone__input {
    height: 100%;
  }

  .demo-trust {
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 2.25rem;
    border-top: 1px solid #d9dee5;
  }

  .demo-trust__label {
    margin: 0 0 1.5rem;
    padding: 0;
    background: none;
    text-align: center;
    line-height: 180%;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 500;
  }

  .demo-trust__logos {
    width: 100%;
    justify-content: center;
  }

  .demo-trust__img {
    width: 100%;
    max-width: 100%;
    max-height: none;
    object-position: center center;
  }
}

@media (max-width: 575.98px) {

  .demo-hero__br--desk,
  .demo-hero__br--mob,
  .demo-hero__lead-br--mob {
    display: none !important;
  }

  .demo-hero__title {
    font-size: 30px;
    line-height: 118%;
    letter-spacing: -0.6px;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 1.1rem;
    max-width: 100%;
  }

  .demo-hero__lead {
    font-size: 15px;
    line-height: 150%;
    text-align: center;
    margin: 0 auto 1.5rem;
    max-width: 100%;
  }

  .demo-feature__title {
    font-size: 20px;
  }

  .demo-feature__text {
    font-size: 14px;
  }

  .demo-form {
    padding: 24px 18px;
  }

  .demo-form__title {
    font-size: 26px;
    letter-spacing: -1px;
    font-weight: 700;
  }
}