:root {
  --pink: #FA256C;
  --pink-dark: #D90F52;
  --pink-deep: #B90B43;
  --pink-soft: #FFE8F0;
  --cream: #F5ECE0;
  --cream-light: #FBF7F2;
  --ink: #171315;
  --ink-soft: #292225;
  --muted: #665D61;
  --muted-dark: #51484C;
  --white: #FFFFFF;
  --teal: #4FD1C5;
  --teal-dark: #137C73;
  --amber: #FFBD00;
  --purple: #9B6FE3;
  --line: rgba(23, 19, 21, .12);
  --shadow-short: 0 4px 8px rgba(45, 25, 33, .08), 0 1px 2px rgba(45, 25, 33, .06);
  --shadow-float: 0 18px 40px rgba(39, 20, 28, .16), 0 4px 10px rgba(39, 20, 28, .08);
  --content: min(1240px, calc(100% - 48px));
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --z-sticky: 20;
  --z-dialog: 40;
  --z-splash: 200;
}

* { box-sizing: border-box; }

html.js.is-booting body.is-booting > * { visibility: hidden; }

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: var(--z-splash);
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  pointer-events: none;
  transition: opacity 120ms cubic-bezier(.2, 0, 0, 1), visibility 0s linear 120ms;
}

html.js.is-booting body.is-booting > .boot-screen {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.boot-screen .boot-brand {
  max-width: calc(100vw - 2rem);
  gap: clamp(.625rem, 1.2vw, .875rem);
  white-space: nowrap;
}

.boot-screen .boot-brand img {
  width: clamp(3.5rem, 6vw, 4.5rem);
  height: clamp(3.5rem, 6vw, 4.5rem);
  border-radius: clamp(.875rem, 1.5vw, 1.125rem);
  box-shadow: none;
}

.boot-screen .boot-brand .brand-lean {
  font-size: clamp(2.375rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.boot-screen .boot-brand .brand-product {
  padding-left: clamp(.625rem, 1.2vw, .875rem);
  color: #6F686B;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 650;
  line-height: 1;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

button,
input,
select { font: inherit; }

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

button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }

:where(a, button, input, select, summary):focus-visible {
  outline: 3px solid rgba(250, 37, 108, .45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: calc(var(--z-dialog) + 1);
  left: 16px;
  top: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus { transform: translateY(0); }

.sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  z-index: var(--z-sticky);
  top: 0;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 1px 0 rgba(23, 19, 21, .08);
  backdrop-filter: blur(16px);
}

.site-header > *,
.header-actions > * { min-width: 0; }

.brand,
.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  align-self: center;
  border-radius: 10px;
  box-shadow: none;
}

.brand { align-items: center; }

.brand-lean {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}

.brand-product {
  padding-left: 9px;
  border-left: 1px solid rgba(23, 19, 21, .18);
  color: #6F686B;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
}

.desktop-nav a,
.login-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition-property: color;
  transition-duration: 160ms;
  transition-timing-function: var(--ease-out);
}

.login-link {
  gap: clamp(7px, .7vw, 10px);
  white-space: nowrap;
}

.login-link b { color: var(--pink-dark); font-weight: 820; }

.desktop-nav a:hover,
.login-link:hover { color: var(--pink); }

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 16px;
}

.button {
  min-height: 52px;
  max-width: 100%;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink-dark);
  box-shadow: 0 6px 8px rgba(197, 14, 76, .20);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transform: translateY(0) scale(1);
  transition-property: transform, background-color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}

.button > span[aria-hidden="true"] { flex: 0 0 auto; }

.button:hover {
  background: var(--pink-deep);
  box-shadow: 0 8px 8px rgba(197, 14, 76, .24);
  transform: translateY(-2px) scale(1);
}

.button:active { transform: translateY(0) scale(.96); }

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: none;
}

.button-dark:hover {
  background: #30272B;
  box-shadow: none;
}

.button-light {
  color: var(--pink-dark);
  background: var(--white);
  box-shadow: none;
}

.button-light:hover {
  color: var(--white);
  background: var(--ink);
  box-shadow: none;
}

.hero {
  width: var(--content);
  min-height: min(820px, calc(100svh - 96px));
  margin: 20px auto 0;
  padding: clamp(42px, 5.6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(44px, 6vw, 86px);
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(23, 19, 21, .04);
}

.hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -180px;
  top: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 37, 108, .22), rgba(250, 37, 108, 0) 68%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-status {
  width: max-content;
  max-width: 100%;
  margin: 0 0 24px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  color: #6B1240;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-short);
  font-size: 12px;
  font-weight: 800;
  animation: heroEnter 700ms 60ms var(--ease-out) both;
}

.hero-status span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(250, 37, 108, .12);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .94;
  letter-spacing: -.04em;
  animation: heroEnter 720ms 150ms var(--ease-out) both;
}

.hero h1 em {
  display: block;
  color: var(--pink);
  font-style: normal;
  font-weight: inherit;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 22px;
  color: var(--muted-dark);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.62;
  animation: heroEnter 720ms 230ms var(--ease-out) both;
}

.hero-rate {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
  color: var(--ink);
  animation: heroEnter 720ms 300ms var(--ease-out) both;
}

.hero-rate strong {
  color: var(--pink);
  font-size: clamp(52px, 6vw, 78px);
  line-height: .86;
  letter-spacing: -.045em;
  font-variant-numeric: tabular-nums;
}

.hero-rate span {
  padding-left: 15px;
  border-left: 1px solid rgba(23, 19, 21, .16);
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.25;
}

.hero-rate b {
  color: var(--ink);
  font-size: 18px;
}

.email-form {
  max-width: 650px;
  animation: heroEnter 720ms 380ms var(--ease-out) both;
}

.email-control {
  padding: 6px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(53, 31, 39, .13), 0 2px 5px rgba(53, 31, 39, .08);
}

.email-control input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
}

.email-control input::placeholder { color: #70676B; opacity: 1; }

.email-control:focus-within {
  box-shadow: 0 0 0 3px rgba(250, 37, 108, .24), 0 12px 32px rgba(53, 31, 39, .13);
}

.email-form > p {
  margin: 10px 0 0 16px;
  color: var(--muted-dark);
  font-size: 12px;
}

.email-form > p span { color: var(--teal-dark); font-weight: 900; }

.hero-trust {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 700;
}

.hero-trust li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--teal-dark);
  font-weight: 950;
}

.hero-visual {
  height: 650px;
  position: relative;
  z-index: 1;
  animation: visualEnter 900ms 180ms var(--ease-out) both;
}

.creator-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink);
  outline: 1px solid rgba(0, 0, 0, .1);
  box-shadow: var(--shadow-float);
}

.creator-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-main {
  z-index: 3;
  left: 50%;
  top: 28px;
  width: min(310px, 62%);
  height: 552px;
  transform: translateX(-50%) rotate(1.5deg);
}

.shot-main::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(14, 10, 12, .86));
  pointer-events: none;
}

.shot-main figcaption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 21px;
  color: var(--white);
}

.shot-main figcaption span {
  display: block;
  margin-bottom: 6px;
  color: #FFD5E4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}

.shot-main figcaption strong { font-size: 18px; }

.shot-back {
  z-index: 1;
  left: 2px;
  top: 104px;
  width: 230px;
  height: 420px;
  transform: rotate(-8deg);
}

.shot-side {
  z-index: 2;
  right: 0;
  top: 96px;
  width: 225px;
  height: 430px;
  transform: rotate(8deg);
}

.floating-earning {
  position: absolute;
  z-index: 5;
  right: 10px;
  bottom: 12px;
  width: 245px;
  padding: 17px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow-float);
  transform: rotate(-2deg);
}

.floating-earning > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .68);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
}

.floating-earning > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(79, 209, 197, .12);
}

.floating-earning > strong {
  display: block;
  margin: 10px 0 12px;
  font-size: 27px;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}

.floating-earning > div {
  padding-top: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.floating-earning b { flex: 0 0 auto; color: var(--teal); font-size: 14px; white-space: nowrap; }
.floating-earning small { color: rgba(255, 255, 255, .56); font-size: 8px; }

.floating-playbook {
  position: absolute;
  z-index: 5;
  left: 4px;
  bottom: 60px;
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--amber);
  box-shadow: var(--shadow-short);
  transform: rotate(2deg);
}

.floating-playbook span { font-size: 9px; font-weight: 800; }
.floating-playbook strong { font-size: 13px; }

@keyframes heroEnter {
  from { opacity: 1; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes visualEnter {
  from { opacity: 1; transform: translateY(24px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition-property: opacity, transform;
  transition-duration: 620ms;
  transition-delay: var(--reveal-delay, 0ms);
  transition-timing-function: var(--ease-out);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal="scale"] { transform: translateY(14px) scale(.975); }

.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.rate-ribbon {
  margin-top: 18px;
  min-height: 84px;
  padding: 18px max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  color: var(--white);
  background: var(--pink-dark);
}

.rate-ribbon span {
  flex: 1 0 auto;
  text-align: center;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 650;
  white-space: nowrap;
}

.rate-ribbon span + span {
  border-left: 1px solid rgba(255, 255, 255, .28);
}

.rate-ribbon b { font-weight: 950; }

.programme,
.formats-section,
.playbook-section,
.dashboard-section,
.steps-section,
.faq-section {
  width: var(--content);
  margin: clamp(96px, 12vw, 160px) auto 0;
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-marker {
  margin: 0 0 16px;
  color: var(--pink-dark);
  font-size: 13px;
  font-weight: 850;
}

.section-marker.light { color: #FFC5D9; }

.section-intro h2,
.formats-heading h2,
.playbook-copy h2,
.dashboard-heading h2,
.steps-heading h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.04em;
}

.section-intro > p:last-child,
.formats-heading p,
.playbook-copy > p:last-of-type,
.dashboard-heading > p:last-child,
.faq-heading p {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.mission-board {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 28px 60px rgba(55, 31, 40, .12), 0 4px 8px rgba(55, 31, 40, .08);
}

.mission-board > header {
  min-height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  background: var(--ink);
}

.mission-board > header div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-board > header b { min-width: 0; text-wrap: pretty; }

.mission-board > header span:last-child {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
}

.today-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(79, 209, 197, .14);
}

.mission-content {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.mission-title {
  padding: clamp(28px, 5vw, 54px);
  background: var(--pink-soft);
}

.mission-title > span {
  color: var(--pink-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.mission-title h3 {
  margin: 18px 0 20px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.mission-title p {
  margin: 0;
  color: #5B4A51;
  line-height: 1.65;
}

.mission-steps {
  margin: 0;
  padding: 28px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
}

.mission-steps li {
  min-height: 88px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.mission-steps li:last-child { border-bottom: 0; }

.mission-steps li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--pink-dark);
  font-size: 13px;
  font-weight: 900;
}

.mission-steps div { display: flex; flex-direction: column; gap: 4px; }
.mission-steps b { font-size: 14px; }
.mission-steps small { color: var(--muted); font-size: 12px; }
.mission-steps i { color: var(--muted); font-size: 11px; font-style: normal; font-variant-numeric: tabular-nums; }

.mission-board > footer {
  min-height: 58px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--cream-light);
}

.mission-board > footer span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted-dark);
  background: var(--white);
  box-shadow: 0 1px 3px rgba(23, 19, 21, .09);
  font-size: 10px;
  font-weight: 750;
}

.mission-board > footer strong {
  margin-left: auto;
  color: var(--teal-dark);
  font-size: 12px;
}

.earnings-section {
  margin-top: clamp(96px, 12vw, 160px);
  padding: clamp(64px, 9vw, 120px) max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  color: var(--ink);
  background: #F8E7ED;
}

.earnings-visual h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(38px, 4.3vw, 60px);
  line-height: 1.02;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.earnings-visual h2 span { color: var(--pink-dark); }

.momentum-chart {
  margin: 30px 0 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 36px rgba(104, 28, 57, .11), 0 2px 6px rgba(104, 28, 57, .06);
}

.momentum-chart figcaption {
  min-height: 78px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 1px 0 rgba(23, 19, 21, .08);
}

.momentum-chart figcaption > span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--pink-deep);
  background: var(--pink-soft);
  font-size: 11px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.momentum-chart figcaption > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.momentum-chart figcaption small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
}

.momentum-chart figcaption strong {
  color: var(--pink-deep);
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.momentum-stage {
  height: 310px;
  position: relative;
  overflow: hidden;
}

.momentum-stage svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.momentum-grid {
  fill: none;
  stroke: rgba(23, 19, 21, .07);
  stroke-width: 1;
}

.momentum-area { fill: url(#momentum-fill); }

.momentum-line {
  fill: none;
  stroke: var(--pink);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.momentum-chart.is-animating .momentum-area {
  opacity: 0;
  transition: opacity 700ms 260ms var(--ease-out);
}

.momentum-chart.is-animating .momentum-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1100ms 100ms var(--ease-out);
}

.momentum-chart.is-animating .momentum-end {
  opacity: 0;
  scale: .6;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 180ms 980ms ease-out, scale 260ms 940ms var(--ease-out);
}

.momentum-chart.is-animating.is-visible .momentum-area { opacity: 1; }
.momentum-chart.is-animating.is-visible .momentum-line { stroke-dashoffset: 0; }
.momentum-chart.is-animating.is-visible .momentum-end { opacity: 1; scale: 1; }

.momentum-end {
  fill: var(--white);
  stroke: var(--pink);
  stroke-width: 6;
}

.momentum-post {
  width: 58px;
  position: absolute;
  z-index: 2;
}

.momentum-chart.is-animating .momentum-post {
  opacity: 0;
  translate: 0 12px;
  transition: opacity 320ms var(--ease-out), translate 450ms var(--ease-out);
}

.momentum-chart.is-animating.is-visible .momentum-post { opacity: 1; translate: 0 0; }
.momentum-chart.is-animating .post-one { transition-delay: 240ms; }
.momentum-chart.is-animating .post-two { transition-delay: 430ms; }
.momentum-chart.is-animating .post-three { transition-delay: 630ms; }
.momentum-chart.is-animating .post-four { transition-delay: 850ms; }

.momentum-post img {
  width: 58px;
  height: 92px;
  border-radius: 9px;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 0 7px 12px rgba(45, 25, 33, .16);
}

.momentum-post b {
  min-width: 42px;
  min-height: 23px;
  padding: 0 7px;
  position: absolute;
  left: 50%;
  bottom: -10px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  transform: translateX(-50%);
}

.post-one { left: 6%; bottom: 22px; transform: rotate(-4deg); }
.post-two { left: 32%; bottom: 74px; transform: rotate(3deg); }
.post-three { left: 58%; bottom: 124px; transform: rotate(-2deg); }
.post-four { right: 5%; top: 12px; transform: rotate(3deg); }

.momentum-axis {
  min-height: 42px;
  padding: 0 20px 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.calculator {
  padding: clamp(26px, 4vw, 44px);
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 36px rgba(104, 28, 57, .13), 0 2px 6px rgba(104, 28, 57, .07);
}

.posting-rhythm {
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.posting-rhythm > span {
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 800;
}

.posting-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.posting-buttons button {
  min-width: 82px;
  min-height: 44px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  color: var(--muted-dark);
  background: #F2EEF0;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
  transform: scale(1);
  transition-property: color, background-color, transform;
  transition-duration: 160ms;
  transition-timing-function: var(--ease-out);
}

.posting-buttons button:hover,
.posting-buttons button.is-active {
  color: var(--white);
  background: var(--ink);
}

.posting-buttons button:active { transform: scale(.96); }

.calculator-label {
  margin-top: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.calculator-label span { color: var(--muted); font-size: 13px; font-weight: 750; }
.calculator-label output { font-size: clamp(24px, 3vw, 38px); font-weight: 900; letter-spacing: -.035em; font-variant-numeric: tabular-nums; }

.calculator input[type="range"] {
  width: 100%;
  height: 44px;
  margin: 10px 0 0;
  border-radius: 999px;
  outline: none;
  background: linear-gradient(to right, var(--pink) 0%, var(--pink) var(--progress, 33.333%), #E7E1E4 var(--progress, 33.333%), #E7E1E4 100%) center / 100% 8px no-repeat;
  appearance: none;
  cursor: pointer;
}

.calculator input[type="range"]::-webkit-slider-thumb {
  width: 26px;
  height: 26px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 2px 6px rgba(23, 19, 21, .25);
  appearance: none;
}

.calculator input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 2px 6px rgba(23, 19, 21, .25);
}

.range-labels {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.calculator-result {
  margin-top: 26px;
  padding: 25px 26px 22px;
  border-radius: 12px;
  color: var(--white);
  background: var(--pink-dark);
}

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

.result-topline span {
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.result-topline b {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--amber);
  font-size: 9px;
  font-weight: 900;
}

.projection-metrics {
  margin-top: 23px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
}

.projection-metrics > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.projection-metrics > div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.projection-metrics span {
  color: var(--white);
  font-size: 10px;
  font-weight: 750;
}

.projection-metrics strong {
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.earnings-metric strong {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.earnings-metric strong b { white-space: nowrap; font-size: clamp(40px, 4.3vw, 54px); }
.earnings-metric strong small { padding-bottom: 7px; font-size: 20px; }

.cap-track {
  height: 8px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
}

.cap-track i {
  width: var(--cap-progress, 100%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--amber);
  transition: width 220ms var(--ease-out);
}

.cap-milestones {
  margin-top: 7px;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.cap-milestones span { flex: 1; line-height: 1.35; }
.cap-milestones span:nth-child(2) { text-align: center; }
.cap-milestones span:last-child { text-align: right; }

.calculator-cap-note {
  margin: 16px 2px 0;
  color: var(--muted-dark);
  font-size: 10px;
  line-height: 1.55;
}

.calculator-cap-note strong { color: var(--ink); }

.formats-heading {
  max-width: 900px;
  margin-bottom: 48px;
}

.formats-heading p { margin-left: 0; }

.benchmark-note {
  width: max-content;
  max-width: 100%;
  margin-top: 26px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow-short);
}

.benchmark-note strong {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.benchmark-note span {
  min-width: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 11px;
}

.benchmark-disclaimer {
  max-width: 720px;
  margin-top: 10px;
  display: block;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

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

.format-card {
  aspect-ratio: 4 / 5;
  min-width: 0;
  min-height: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  color: var(--white);
  background: var(--ink);
  outline: 1px solid rgba(0, 0, 0, .1);
}

.format-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96);
  transform: scale(1.015);
  transition-property: transform, filter;
  transition-duration: 500ms;
  transition-timing-function: var(--ease-out);
}

.format-card:hover img { filter: saturate(1.1); transform: scale(1.05); }

.format-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(15, 10, 12, .9));
  pointer-events: none;
}

.format-card figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 2vw, 26px);
  right: clamp(18px, 2vw, 26px);
  bottom: clamp(18px, 2vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.format-card figcaption strong,
.format-card figcaption small { text-wrap: pretty; }

.format-card figcaption span { color: #FFD0E0; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.format-card figcaption strong { font-size: clamp(18px, 2vw, 26px); }
.format-card figcaption small { color: rgba(255, 255, 255, .72); font-size: 11px; }
.format-card:nth-child(4) img { object-position: center 30%; }

.playbook-section {
  padding: clamp(50px, 7vw, 88px);
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
  overflow: hidden;
  border-radius: 16px;
  background: var(--cream);
}

.playbook-copy > p:last-of-type { margin-left: 0; }

.text-button {
  min-height: 48px;
  margin-top: 24px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  color: var(--pink-dark);
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.text-button span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink-dark);
  transform: translateX(0) scale(1);
  transition-property: transform, background-color;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}

.text-button:hover span { background: var(--pink-dark); transform: translateX(4px) scale(1); }
.text-button:active span { transform: translateX(4px) scale(.96); }

.playbook-stack {
  min-height: 610px;
  position: relative;
}

.playbook-page {
  width: min(520px, 92%);
  margin-left: auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(50, 28, 37, .16), 0 4px 8px rgba(50, 28, 37, .08);
  transform: rotate(2deg);
}

.playbook-page > header {
  min-height: 62px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  background: var(--ink);
}

.playbook-page > header span { color: #FFC1D7; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.playbook-page > header b { min-width: 0; font-size: 14px; text-align: center; text-wrap: pretty; }
.playbook-page > header i { color: rgba(255, 255, 255, .6); font-size: 10px; font-style: normal; }

.script-hook {
  padding: 28px;
  background: var(--pink-soft);
}

.script-hook span { color: var(--pink-dark); font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.script-hook strong { display: block; margin-top: 10px; font-size: 21px; line-height: 1.3; }

.script-line {
  margin: 0 24px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.script-line span { color: var(--pink-dark); font-size: 11px; font-weight: 850; font-variant-numeric: tabular-nums; }
.script-line p { margin: 0; color: var(--muted-dark); font-size: 13px; line-height: 1.55; }

.playbook-page > footer {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  background: #F8F5F6;
  font-size: 9px;
}

.playbook-page > footer span { padding-right: 8px; border-right: 1px solid var(--line); }
.playbook-page > footer b { margin-left: auto; color: var(--teal-dark); text-align: right; }

.asset-drawer {
  width: min(460px, 86%);
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  padding: 20px;
  border-radius: 12px;
  color: var(--white);
  background: var(--pink-dark);
  box-shadow: var(--shadow-float);
  transform: rotate(-3deg);
}

.asset-drawer > header { display: flex; justify-content: space-between; gap: 12px; font-size: 12px; }
.asset-drawer > header span { font-weight: 850; }
.asset-drawer > header strong { color: #FFD1E1; font-size: 10px; }

.asset-previews {
  height: 190px;
  margin: 16px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}

.asset-previews img {
  width: 98px;
  height: 190px;
  border-radius: 9px;
  object-fit: cover;
  object-position: top;
  outline: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 7px 8px rgba(100, 0, 35, .18);
}

.asset-previews img:nth-child(1) { transform: translateY(10px) rotate(-2deg); }
.asset-previews img:nth-child(3) { transform: translateY(10px) rotate(2deg); }
.asset-drawer > p { margin: 0; color: rgba(255, 255, 255, .84); font-size: 11px; line-height: 1.55; }

.dashboard-section {
  padding: clamp(64px, 8vw, 104px) 0;
  width: 100%;
  background: var(--ink);
}

.dashboard-heading,
.dashboard-showcase,
.dashboard-benefits,
.dashboard-disclaimer {
  width: var(--content);
  margin-inline: auto;
}

.dashboard-heading {
  max-width: 820px;
  margin-bottom: 46px;
  color: var(--white);
  text-align: center;
}

.dashboard-heading > p:last-child { color: rgba(255, 255, 255, .68); }

.dashboard-showcase {
  min-height: 700px;
  position: relative;
}

.dashboard-showcase figure {
  margin: 0;
}

.dashboard-browser-frame {
  width: 100%;
  aspect-ratio: 1440 / 1000;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #F7F2EB;
  box-shadow: 0 34px 70px rgba(0, 0, 0, .38);
}

.dashboard-browser-frame img,
.dashboard-browser-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  outline: 1px solid rgba(255, 255, 255, .1);
  outline-offset: -1px;
}

.dashboard-browser-frame iframe {
  border: 0;
  pointer-events: none;
}

.dashboard-showcase figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  text-align: center;
}

.dashboard-desktop-shot {
  width: calc(100% - 90px);
}

.dashboard-mobile-shot {
  width: 238px;
  position: absolute;
  right: 0;
  bottom: -42px;
  z-index: 2;
}

.dashboard-mobile-shot .dashboard-browser-frame {
  aspect-ratio: 390 / 844;
  border-radius: 18px;
  box-shadow: 0 0 0 7px #171315, 0 26px 54px rgba(0, 0, 0, .36);
}

.dashboard-proof-badge {
  min-width: 210px;
  padding: 18px 20px;
  position: absolute;
  z-index: 3;
  top: 44px;
  left: -24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  color: var(--white);
  background: rgba(32, 23, 27, .92);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .3);
  backdrop-filter: blur(12px);
}

.dashboard-proof-badge span {
  color: var(--teal);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}

.dashboard-proof-badge strong {
  font-size: 28px;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.dashboard-proof-badge small {
  color: rgba(255, 255, 255, .6);
  font-size: 9px;
}

.dashboard-benefits {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dashboard-benefits span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
}

.dashboard-window {
  min-height: 640px;
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  border-radius: 16px;
  background: #F8F4EE;
  box-shadow: 0 34px 70px rgba(0, 0, 0, .36);
  outline: 1px solid rgba(255, 255, 255, .1);
}

.dashboard-window > aside {
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 1px 0 0 rgba(23, 19, 21, .08);
}

.mini-brand img { width: 28px; height: 28px; border-radius: 7px; }
.mini-brand b { font-size: 17px; }
.mini-brand span { padding-left: 7px; border-left: 1px solid var(--line); color: var(--pink-dark); font-size: 10px; font-weight: 850; }

.dashboard-window aside nav {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dashboard-window aside nav span,
.dashboard-window aside nav strong {
  min-height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  font-size: 11px;
}

.dashboard-window aside nav span { color: var(--muted); }
.dashboard-window aside nav strong { color: var(--pink-dark); background: var(--pink-soft); }

.dashboard-window > aside > a:last-child {
  min-height: 44px;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-dark);
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.dashboard-window > aside > a:last-child span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink-dark);
  background: var(--pink-soft);
}

.dashboard-main { padding: clamp(24px, 4vw, 48px); }

.dashboard-main > header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.dashboard-main > header span { color: var(--muted); font-size: 11px; }
.dashboard-main > header h3 { margin: 5px 0 0; font-size: 26px; letter-spacing: -.03em; }
.dashboard-main > header small { padding: 7px 10px; border-radius: 999px; color: var(--muted-dark); background: var(--white); box-shadow: var(--shadow-short); font-size: 8px; font-weight: 850; }

.dashboard-summary {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(120deg, #20171B, #5C1933 65%, #8C1C4C);
  box-shadow: 0 10px 18px rgba(44, 17, 28, .16);
}

.dashboard-summary > div {
  min-width: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dashboard-summary > div + div { box-shadow: -1px 0 0 rgba(255, 255, 255, .14); }
.dashboard-summary span { color: rgba(255, 255, 255, .66); font-size: 10px; }
.dashboard-summary strong { margin: 8px 0; font-size: clamp(22px, 3vw, 34px); letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.dashboard-summary small { color: rgba(255, 255, 255, .56); font-size: 9px; }
.dashboard-summary .next-payment { margin: 12px; padding: 18px; border-radius: 9px; background: rgba(255, 255, 255, .12); }
.dashboard-summary .next-payment b { margin: 8px 0; font-size: 22px; font-variant-numeric: tabular-nums; }
.dashboard-summary .next-payment small { color: #A9E9E3; }

.dashboard-lower {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 205px;
  gap: 18px;
}

.chart-panel,
.top-video {
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-short);
}

.chart-panel { padding: 22px; }

.chart-panel > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.chart-panel > header div { display: flex; flex-direction: column; gap: 4px; }
.chart-panel > header span { color: var(--muted); font-size: 10px; }
.chart-panel > header b { font-size: 15px; }
.chart-panel > header > strong { color: var(--teal-dark); font-size: 11px; }
.chart-panel svg { width: 100%; height: 240px; margin-top: 10px; overflow: visible; }
.chart-grid { fill: none; stroke: rgba(23, 19, 21, .08); stroke-width: 1; }
.chart-area { fill: url(#chart-fill); }
.chart-line { fill: none; stroke: var(--pink); stroke-linecap: round; stroke-width: 5; }
.chart-panel > div:last-child { display: flex; justify-content: space-between; color: var(--muted); font-size: 8px; }

.top-video {
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.top-video > span { color: var(--muted); font-size: 10px; font-weight: 750; }
.top-video > div { height: 270px; margin: 12px 0; position: relative; overflow: hidden; border-radius: 9px; outline: 1px solid rgba(0, 0, 0, .1); }
.top-video img { width: 100%; height: 100%; object-fit: cover; }
.top-video > div b { position: absolute; right: 8px; bottom: 8px; padding: 5px 7px; border-radius: 999px; color: var(--white); background: rgba(23, 19, 21, .78); font-size: 10px; font-variant-numeric: tabular-nums; }
.top-video > strong { font-size: 12px; }
.top-video > small { margin-top: 5px; color: var(--pink-dark); font-size: 9px; }

.dashboard-disclaimer {
  margin-top: 18px;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.steps-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.steps-heading h2 { max-width: 760px; }

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

.steps-list li {
  min-height: 156px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  transition-property: background-color, padding-left, padding-right;
  transition-duration: 220ms;
  transition-timing-function: var(--ease-out);
}

.steps-list li:hover { padding-inline: 18px; background: var(--cream-light); }
.steps-list li > span { color: var(--pink); font-size: 34px; font-weight: 900; font-variant-numeric: tabular-nums; }
.steps-list h3 { margin: 0 0 8px; font-size: 24px; letter-spacing: -.025em; }
.steps-list p { max-width: 650px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.steps-list small { color: var(--muted-dark); font-size: 9px; font-weight: 850; letter-spacing: .08em; line-height: 1.35; text-align: right; }

.proof-section {
  width: var(--content);
  margin: clamp(96px, 12vw, 160px) auto 0;
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--pink-dark);
  border-radius: 14px;
}

.proof-section > div {
  padding: 8px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}

.proof-section > div + div { box-shadow: -1px 0 0 rgba(255, 255, 255, .25); }
.proof-section strong { font-size: clamp(24px, 3vw, 38px); letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.proof-section span { color: rgba(255, 255, 255, .78); font-size: 11px; line-height: 1.35; text-wrap: balance; overflow-wrap: anywhere; }

.faq-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.faq-heading { position: sticky; top: 110px; }
.faq-heading h2 { font-size: clamp(40px, 5vw, 62px); }
.faq-heading p { margin-left: 0; font-size: 14px; }
.faq-heading a { color: var(--pink-dark); font-weight: 800; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  min-height: 78px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
}

.faq-list summary { overflow-wrap: anywhere; }

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--pink-dark);
  background: var(--pink-soft);
  font-size: 22px;
  font-weight: 500;
  transform: rotate(0) scale(1);
  transition-property: transform, color, background-color;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}

.faq-list details[open] summary span { color: var(--white); background: var(--pink-dark); transform: rotate(45deg) scale(1); }
.faq-list details p { max-width: 680px; margin: 0 52px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.final-cta {
  width: var(--content);
  margin: clamp(96px, 12vw, 160px) auto 0;
  padding: clamp(50px, 7vw, 86px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  color: var(--white);
  background: var(--pink-dark);
}

.final-cta::after {
  content: "1$";
  position: absolute;
  right: -10px;
  top: -82px;
  color: rgba(255, 255, 255, .1);
  font-size: 300px;
  font-weight: 950;
  letter-spacing: -.08em;
  pointer-events: none;
}

.final-cta > div,
.final-cta > button { position: relative; z-index: 1; }
.final-cta > div { max-width: 760px; }
.final-cta > div > span { color: #FFD1E1; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.final-cta h2 { margin: 18px 0 20px; font-size: clamp(40px, 5.2vw, 72px); line-height: .98; letter-spacing: -.04em; }
.final-cta p { max-width: 650px; margin: 0; color: rgba(255, 255, 255, .82); font-size: 16px; line-height: 1.65; }
.final-cta .button { flex: 0 0 auto; }

.site-footer {
  width: var(--content);
  min-height: 190px;
  margin: 38px auto 0;
  padding: 28px 0 38px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px 40px;
  color: var(--muted-dark);
  border-top: 1px solid var(--line);
}

.footer-brand img { box-shadow: none; }
.site-footer p { margin: 0; font-size: 13px; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 22px; }
.site-footer nav a { min-height: 44px; display: inline-flex; align-items: center; font-size: 12px; font-weight: 750; text-decoration: none; }
.site-footer nav a:hover { color: var(--pink-dark); }
.site-footer small { grid-column: 1 / -1; color: var(--muted); font-size: 10px; line-height: 1.5; text-wrap: pretty; }

.mobile-cta { display: none; }

.apply-dialog {
  width: min(590px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(20, 9, 13, .34);
}

.apply-dialog::backdrop {
  background: rgba(20, 10, 14, .68);
  backdrop-filter: blur(5px);
}

.apply-dialog[open] { animation: dialogIn 260ms var(--ease-out) both; }
.apply-dialog.is-closing { animation: dialogOut 170ms ease-in both; }

@keyframes dialogIn {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes dialogOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(8px) scale(.99); }
}

.apply-form { padding: clamp(24px, 5vw, 40px); }

.apply-form > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.apply-form > header > div { min-width: 0; }

.apply-form > header span { color: var(--pink-dark); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.apply-form > header h2 { margin: 8px 0 0; font-size: clamp(28px, 5vw, 42px); line-height: 1; letter-spacing: -.035em; }

.dialog-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  color: var(--muted-dark);
  background: #F2EEF0;
  cursor: pointer;
  transform: scale(1);
  transition-property: color, background-color, transform;
  transition-duration: 160ms;
  transition-timing-function: var(--ease-out);
}

.dialog-close span { color: inherit !important; font-size: 25px !important; font-weight: 400 !important; line-height: 1; letter-spacing: 0 !important; }
.dialog-close:hover { color: var(--white); background: var(--pink-dark); }
.dialog-close:active { transform: scale(.96); }

.apply-progress {
  margin: 28px 0 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.apply-progress i { height: 5px; border-radius: 999px; background: #EAE4E7; }
.apply-progress i:first-child,
.apply-progress.is-step-two i { background: var(--pink); }

.apply-error {
  margin: -8px 0 20px;
  padding: 12px 14px;
  border: 1px solid rgba(250, 37, 108, .2);
  border-radius: 9px;
  color: #8B173F;
  background: #FFF0F5;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.apply-error[hidden] { display: none; }
.apply-context {
  margin: -8px 0 20px;
  padding: 13px 14px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid rgba(16, 148, 160, .2);
  border-radius: 10px;
  color: #176B72;
  background: rgba(79, 209, 197, .1);
}
.apply-context[hidden] { display: none; }
.apply-context svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.apply-context span { min-width: 0; display: grid; gap: 3px; }
.apply-context b { color: var(--ink); font-size: 12px; line-height: 1.35; }
.apply-context small { color: var(--muted-dark); font-size: 11px; line-height: 1.45; }
.apply-step [aria-invalid="true"] { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(250, 37, 108, .13); }

.apply-step > p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.apply-step label:not(.check-row) {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.apply-step input:not([type="checkbox"]),
.apply-step select {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(23, 19, 21, .18);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  font-weight: 500;
  transition-property: border-color, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: var(--ease-out);
}

.apply-step input::placeholder { color: #70676B; opacity: 1; }
.apply-step input:focus,
.apply-step select:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(250, 37, 108, .16); }
.apply-step .button { width: 100%; margin-top: 24px; }
.apply-step > small { display: block; margin-top: 12px; color: var(--muted); font-size: 10px; text-align: center; }

.check-row {
  min-height: 52px;
  margin-top: 18px;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  color: var(--muted-dark);
  background: var(--cream-light);
  font-size: 12px;
  line-height: 1.5;
  cursor: pointer;
}

.check-row input { width: 18px; height: 18px; margin: 1px 0 0; flex: 0 0 auto; accent-color: var(--pink); }

.apply-step > .application-privacy {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.application-privacy a {
  color: var(--ink-soft);
  font-weight: 750;
  text-underline-offset: 2px;
}

.back-button {
  min-height: 44px;
  margin: 10px auto 0;
  display: block;
  border: 0;
  color: var(--muted-dark);
  background: transparent;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.back-button:hover { color: var(--pink-dark); }

.apply-success { padding: 12px 0 4px; text-align: center; }
.apply-success > div { width: 58px; height: 58px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal-dark); font-size: 25px; font-weight: 900; }
.apply-success h3 { margin: 0; font-size: 30px; letter-spacing: -.03em; }
.apply-success p { max-width: 440px; margin: 14px auto 22px; color: var(--muted); line-height: 1.6; }
.apply-success .button { width: 100%; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(370px, .82fr); gap: 30px; }
  .hero-visual { transform: scale(.9); transform-origin: center; }
  .shot-main { width: 270px; height: 500px; }
  .shot-back { width: 200px; height: 380px; }
  .shot-side { width: 195px; height: 390px; }
  .floating-earning { right: -10px; }
  .dashboard-window { grid-template-columns: 150px 1fr; }
  .dashboard-window aside { padding-inline: 12px; }
  .dashboard-main { padding: 28px; }
  .dashboard-summary > div { padding: 20px; }
}

@media (max-width: 900px) {
  :root { --content: min(100% - 32px, 720px); }
  .login-link { font-size: 12px; }
  .hero {
    min-height: auto;
    padding: 50px 34px 30px;
    grid-template-columns: 1fr;
  }
  .hero-copy { text-align: center; }
  .hero-status,
  .hero-rate { margin-inline: auto; }
  .hero-lead,
  .email-form { margin-inline: auto; }
  .hero-trust { justify-content: center; }
  .hero-visual { width: min(570px, 100%); height: 620px; margin: -6px auto 0; transform: none; }
  .shot-main { width: 290px; height: 520px; }
  .shot-back { left: 10px; width: 215px; height: 400px; }
  .shot-side { right: 10px; width: 210px; height: 410px; }
  .floating-playbook { left: 14px; }
  .floating-earning { right: 10px; }
  .rate-ribbon { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .rate-ribbon::-webkit-scrollbar { display: none; }
  .rate-ribbon span { min-width: 240px; }
  .mission-content { grid-template-columns: 1fr; }
  .earnings-section { grid-template-columns: 1fr; }
  .earnings-visual { width: min(620px, 100%); margin-inline: auto; text-align: center; }
  .earnings-visual h2 { margin-inline: auto; }
  .calculator { width: min(620px, 100%); margin-inline: auto; }
  .format-gallery { grid-template-columns: 1fr 1fr; }
  .playbook-section { padding: 54px 34px; grid-template-columns: 1fr; }
  .playbook-copy { max-width: 620px; }
  .playbook-stack { width: min(620px, 100%); margin: 0 auto; }
  .dashboard-showcase { min-height: 570px; }
  .dashboard-desktop-shot { width: calc(100% - 64px); }
  .dashboard-mobile-shot { width: 190px; }
  .dashboard-summary { grid-template-columns: 1fr 1fr; }
  .dashboard-summary .next-payment { grid-column: 1 / 3; }
  .dashboard-lower { grid-template-columns: 1fr 180px; }
  .top-video > div { height: 240px; }
  .proof-section { grid-template-columns: 1fr 1fr; }
  .proof-section > div:nth-child(3) { box-shadow: 0 -1px 0 rgba(255, 255, 255, .25); }
  .proof-section > div:nth-child(4) { box-shadow: -1px -1px 0 rgba(255, 255, 255, .25); }
  .faq-section { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
  .site-footer small { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --content: calc(100% - 24px); }
  html { scroll-padding-top: 72px; }
  body { padding-bottom: 76px; }
  .site-header { min-height: 68px; padding-inline: 12px; gap: 12px; }
  .brand img { width: 34px; height: 34px; }
  .brand-lean { font-size: 20px; }
  .brand-product { font-size: 12px; }
  .header-actions .button { display: none; }
  .hero { margin-top: 10px; padding: 34px 20px 18px; border-radius: 12px; }
  .hero-status { margin-bottom: 19px; font-size: 10px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-lead { margin-top: 20px; font-size: 15px; line-height: 1.55; }
  .hero-rate { margin-block: 20px; }
  .hero-rate strong { font-size: 56px; }
  .hero-rate span { text-align: left; }
  .email-control { padding: 7px; grid-template-columns: 1fr; border-radius: 13px; }
  .email-control input { min-height: 50px; text-align: center; }
  .email-control .button { width: 100%; }
  .email-form > p { margin-left: 0; }
  .hero-trust { gap: 8px 14px; font-size: 10px; }
  .hero-visual { height: 500px; }
  .shot-main { top: 18px; width: 230px; height: 414px; }
  .shot-back { left: -36px; top: 88px; width: 174px; height: 328px; }
  .shot-side { right: -36px; top: 82px; width: 170px; height: 334px; }
  .floating-earning { right: -5px; bottom: 3px; width: 205px; padding: 14px; }
  .floating-earning > strong { font-size: 23px; }
  .floating-playbook { left: -5px; bottom: 126px; }
  .rate-ribbon { min-height: 70px; padding-inline: 12px; }
  .rate-ribbon span { min-width: 215px; font-size: 15px; }
  .programme,
  .formats-section,
  .playbook-section,
  .dashboard-section,
  .steps-section,
  .faq-section { margin-top: 88px; }
  .section-intro { margin-bottom: 34px; }
  .section-intro h2,
  .formats-heading h2,
  .playbook-copy h2,
  .dashboard-heading h2,
  .steps-heading h2,
  .faq-heading h2 { font-size: clamp(34px, 10.5vw, 40px); }
  .section-intro > p:last-child,
  .formats-heading p,
  .playbook-copy > p:last-of-type,
  .dashboard-heading > p:last-child { font-size: 15px; }
  .mission-board { border-radius: 12px; }
  .mission-board > header { padding-inline: 16px; }
  .mission-title { padding: 30px 22px; }
  .mission-title h3 { font-size: 30px; }
  .mission-steps { padding: 16px 20px; }
  .mission-steps li { min-height: 94px; }
  .mission-steps i { display: none; }
  .mission-board > footer { align-items: flex-start; flex-wrap: wrap; }
  .mission-board > footer strong { width: 100%; margin: 5px 0 0; }
  .earnings-section { margin-top: 88px; padding: 72px 18px; }
  .earnings-visual h2 { font-size: clamp(35px, 10.8vw, 42px); }
  .momentum-chart { margin-top: 26px; border-radius: 12px; }
  .momentum-chart figcaption { min-height: 70px; padding: 14px 15px; }
  .momentum-chart figcaption > div { align-items: flex-end; flex-direction: column; gap: 1px; }
  .momentum-chart figcaption strong { font-size: 30px; }
  .momentum-stage { height: 280px; }
  .momentum-post, .momentum-post img { width: 48px; }
  .momentum-post img { height: 77px; border-radius: 8px; }
  .momentum-post b { min-width: 40px; min-height: 22px; font-size: 10px; }
  .post-one { left: 5%; bottom: 20px; }
  .post-two { left: 30%; bottom: 63px; }
  .post-three { left: 56%; bottom: 108px; }
  .post-four { right: 4%; top: 14px; }
  .momentum-axis { min-height: 38px; padding-inline: 14px; }
  .calculator { padding: 22px 18px; border-radius: 12px; }
  .posting-rhythm { align-items: flex-start; flex-direction: column; }
  .posting-buttons { width: 100%; }
  .posting-buttons button { min-width: 0; padding-inline: 8px; }
  .calculator-label { align-items: flex-start; flex-direction: column; }
  .calculator-result { padding: 22px 18px; }
  .result-topline { align-items: flex-start; flex-direction: column; }
  .projection-metrics { grid-template-columns: .92fr 1.08fr; gap: 12px; }
  .projection-metrics > div + div { padding-left: 12px; }
  .projection-metrics strong { font-size: 24px; }
  .earnings-metric strong b { font-size: 42px; }
  .benchmark-note { align-items: flex-start; flex-direction: column; gap: 5px; }
  .format-gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .format-card { border-radius: 10px; }
  .format-card figcaption { left: 12px; right: 12px; bottom: 12px; }
  .format-card figcaption small { display: none; }
  .format-card figcaption strong { font-size: 15px; line-height: 1.15; }
  .format-card figcaption span { font-size: 7px; }
  .playbook-section { width: var(--content); padding: 38px 20px; border-radius: 12px; }
  .playbook-stack { min-height: 540px; }
  .playbook-page { width: 96%; }
  .script-hook { padding: 22px; }
  .script-hook strong { font-size: 17px; }
  .script-line { margin-inline: 18px; padding-block: 16px; }
  .playbook-page > footer span:nth-child(2) { display: none; }
  .asset-drawer { width: 94%; padding: 16px; }
  .asset-previews { height: 150px; }
  .asset-previews img { width: 78px; height: 150px; }
  .dashboard-section { padding-block: 72px; }
  .dashboard-heading { padding-inline: 10px; }
  .dashboard-showcase { min-height: auto; }
  .dashboard-desktop-shot { display: none; }
  .dashboard-mobile-shot { width: min(310px, 88%); position: static; margin-inline: auto !important; }
  .dashboard-mobile-shot .dashboard-browser-frame { border-radius: 18px; box-shadow: 0 0 0 6px #171315, 0 18px 36px rgba(0, 0, 0, .32); }
  .dashboard-proof-badge { display: none; }
  .dashboard-benefits { margin-top: 28px; flex-wrap: wrap; gap: 7px; }
  .dashboard-benefits span { padding: 8px 10px; font-size: 9px; }
  .steps-heading { align-items: flex-start; flex-direction: column; }
  .steps-heading .button { width: 100%; }
  .steps-list { margin-top: 34px; }
  .steps-list li { min-height: auto; padding: 28px 0; grid-template-columns: 58px 1fr; align-items: start; gap: 14px; }
  .steps-list li:hover { padding-inline: 10px; }
  .steps-list li > span { font-size: 25px; }
  .steps-list h3 { font-size: 21px; }
  .steps-list small { grid-column: 2; }
  .steps-list small { text-align: left; }
  .proof-section { margin-top: 88px; grid-template-columns: 1fr 1fr; padding-block: 18px; border-radius: 12px; }
  .proof-section > div { min-height: 110px; justify-content: center; padding: 15px 10px; }
  .proof-section strong { font-size: 24px; }
  .faq-list summary { min-height: 72px; font-size: 15px; }
  .faq-list details p { margin-right: 0; font-size: 13px; }
  .final-cta { margin-top: 88px; padding: 42px 24px; border-radius: 12px; }
  .final-cta h2 { font-size: clamp(36px, 11vw, 42px); }
  .final-cta .button { width: 100%; }
  .final-cta::after { top: -30px; font-size: 190px; }
  .site-footer { min-height: 250px; margin-top: 20px; padding-bottom: 38px; grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
  .mobile-cta {
    position: fixed;
    z-index: var(--z-sticky);
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 58px;
    padding: 8px 9px 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 10px 30px rgba(23, 19, 21, .3);
    cursor: pointer;
    transform: scale(1);
    transition-property: transform;
    transition-duration: 150ms;
    transition-timing-function: var(--ease-out);
  }
  .mobile-cta:active { transform: scale(.96); }
  .mobile-cta > span { display: flex; align-items: baseline; gap: 4px; font-size: 10px; }
  .mobile-cta > span { min-width: 0; flex-wrap: wrap; line-height: 1.2; overflow-wrap: anywhere; }
  .mobile-cta > span b { color: var(--teal); font-size: 17px; }
  .mobile-cta > strong { padding: 12px 17px; flex: 0 0 auto; border-radius: 999px; background: var(--pink-dark); font-size: 12px; }
  .apply-dialog { width: calc(100% - 20px); max-height: calc(100svh - 20px); border-radius: 13px; }
  .apply-form { padding: 24px 18px; }
}

@media (max-width: 360px) {
  .site-header { gap: 10px; }
  .header-actions { gap: 6px; }
  .login-link { font-size: 11px; }
  .login-link > span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .format-card img,
  .format-card:hover img { transform: none; }
}
