@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --bg: #f6fbf8;
  --bg-deep: #0d1713;
  --bg-panel: rgba(9, 19, 15, 0.74);
  --surface: #ffffff;
  --surface-soft: #eff7f2;
  --surface-strong: #0f221a;
  --line: rgba(15, 49, 34, 0.08);
  --line-strong: rgba(123, 219, 166, 0.18);
  --text: #112219;
  --text-soft: #4f6359;
  --text-muted: #7b8f85;
  --white: #f7fbf9;
  --white-soft: rgba(247, 251, 249, 0.72);
  --green-1: #80c56b;
  --green-2: #1fb36c;
  --green-3: #0d8b57;
  --green-4: #0b6a43;
  --shadow-lg: 0 24px 70px rgba(8, 21, 15, 0.12);
  --shadow-md: 0 16px 42px rgba(10, 26, 19, 0.08);
  --shadow-sm: 0 8px 24px rgba(7, 18, 13, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-bg: #008859;
  --header-v2-text: #eeeeee;
  --header-v2-btn-bg: #00c85344;
  --header-v2-btn-bg-menu: #406e42;
  --header-v2-btn-hover: rgba(210, 230, 220, 0.15);
  --header-v2-btn-hover-menu: rgba(210, 230, 220, 0.1);
  --header-v2-accent: #2f7a50;
  --hr-color: #dadbdd88;
  --box-shadow-header: 0 4px 34px hsla(156, 10%, 59%, 0.8);
  --header-back-img: linear-gradient(to right, rgba(48, 103, 67, 0.9), rgba(44, 96, 62, 0.9), rgba(41, 88, 57, 0.9), rgba(37, 81, 53, 0.9), rgba(34, 74, 48, 1));
  --logo-fill: #ffffffee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(125, 202, 149, 0.15), transparent 28%),
    linear-gradient(180deg, #f8fcfa 0%, #f1f8f4 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.logo path {
  fill: var(--logo-fill);
}

.creators-section {
  padding: 80px 0;
}

.creators-hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 36px;
  background:
    radial-gradient(circle at top left, rgba(123, 219, 166, 0.18), transparent 20%),
    radial-gradient(circle at right 12% bottom 10%, rgba(16, 122, 77, 0.3), transparent 30%),
    linear-gradient(135deg, #0d1713 0%, #13271d 48%, #0d1d16 100%);
}

.creators-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern_mat.webp");
  background-size: 240px;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
}

.creators-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.hero-copy,
.hero-side {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 28px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-brand .logo {
  width: auto;
  height: 18px;
}

.section-kicker,
.fee-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
}

.section-kicker,
.fee-kicker {
  color: #98dfb7;
}

.hero-copy h1,
.section-heading h2,
.fee-panel h2,
.final-cta-card h2 {
  margin: 14px 0 0;
  font-family: "Sora", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 8vw, 4.9rem);
  color: var(--white);
  max-width: 12ch;
}

.hero-copy h1 span {
  color: #9ff0a9;
}

.hero-rotator {
  position: relative;
  display: inline-block;
  min-width: 9.6ch;
  vertical-align: baseline;
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.hero-rotator.is-changing {
  opacity: 0;
  transform: translateY(0.18em);
}

.hero-lead,
.section-heading p,
.fee-panel-head p,
.final-cta-card p {
  font-size: 18px;
  line-height: 1.65;
}

.hero-lead {
  color: var(--white-soft);
  margin: 22px 0 0;
  max-width: 42rem;
}

.hero-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.hero-social-avatars {
  display: flex;
  align-items: center;
}

.hero-social-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(13, 27, 20, 0.9);
  object-fit: cover;
  margin-left: -10px;
  background: #fff;
}

.hero-social-avatars img:first-child {
  margin-left: 0;
}

.hero-social-proof p {
  margin: 0;
  color: rgba(247, 251, 249, 0.78);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.cta-primary,
.cta-secondary,
.sticky-cta-button {
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.cta-primary,
.sticky-cta-button {
  color: #0d1b14;
  background: linear-gradient(135deg, #b7f87b 0%, #70dd8f 100%);
  box-shadow: 0 18px 40px rgba(47, 194, 117, 0.2);
}

.cta-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.cta-primary:hover,
.cta-secondary:hover,
.sticky-cta-button:hover {
  transform: translateY(-2px);
}

.fee-panel {
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(16, 35, 26, 0.95) 0%, rgba(12, 24, 19, 0.95) 100%);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.fee-panel-head h2 {
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  color: var(--white);
}

.fee-panel-head p {
  margin: 16px 0 0;
  color: rgba(247, 251, 249, 0.72);
}

.fee-table {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.fee-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.fee-row-strong {
  background: linear-gradient(135deg, rgba(122, 216, 116, 0.18), rgba(27, 182, 113, 0.12));
  border-color: rgba(146, 236, 157, 0.18);
}

.fee-name {
  font-size: 15px;
  font-weight: 800;
}

.fee-note {
  color: rgba(247, 251, 249, 0.68);
  font-size: 13px;
  line-height: 1.4;
}

.fee-row strong {
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.fee-warning {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.fee-warning-kicker {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 900;
  color: #ffcf8c;
}

.fee-warning strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.fee-warning p {
  margin: 8px 0 0;
  color: rgba(247, 251, 249, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--text);
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--text-soft);
}

.benefits-section {
  position: relative;
}

.benefits-grid {
  display: grid;
  gap: 16px;
}

.benefit-card,
.step-card,
.creator-card,
.final-cta-card,
.earnings-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.benefit-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(128, 197, 107, 0.18), rgba(31, 179, 108, 0.12));
  color: var(--green-4);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3,
.step-card h3 {
  margin: 18px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.benefit-card p,
.step-card p,
.final-cta-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
}

.earnings-section {
  background:
    radial-gradient(circle at top right, rgba(31, 179, 108, 0.09), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.7));
}

.earnings-grid {
  display: grid;
  gap: 24px;
}

.earnings-card {
  padding: 24px;
  background: #fdfefd;
  border: 1px solid rgba(15, 49, 34, 0.07);
}

.example-head strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.earnings-results {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.earnings-result {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 49, 34, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.earnings-result span,
.earnings-result strong,
.earnings-result p {
  display: block;
}

.earnings-result span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.earnings-result strong {
  margin-top: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.earnings-result p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.earnings-result-good {
  background: linear-gradient(180deg, rgba(191, 251, 170, 0.32), rgba(255, 255, 255, 0.92));
  border-color: rgba(31, 179, 108, 0.18);
}

.earnings-result-good span {
  color: var(--green-3);
}

.earnings-result-other {
  background: linear-gradient(180deg, rgba(209, 78, 78, 0.12), rgba(255, 245, 245, 0.96));
  border-color: rgba(209, 78, 78, 0.18);
}

.earnings-result-other span {
  color: #9f3e3e;
}

.earnings-result-other strong {
  color: #7f2727;
}

.earnings-result-other p {
  color: #8f5757;
}

.steps-section {
  background:
    linear-gradient(180deg, rgba(248, 252, 250, 0.92), rgba(244, 250, 246, 0.92)),
    url("../images/pattern_mat.webp");
  background-size: auto, 190px;
}

.steps-grid {
  display: grid;
  gap: 16px;
}

.step-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1fb36c 0%, #0d8b57 100%);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.section-inline-cta {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, rgba(15, 36, 27, 0.96), rgba(18, 45, 31, 0.9));
  border: 1px solid rgba(146, 236, 157, 0.12);
  box-shadow: var(--shadow-md);
}

.section-inline-cta strong {
  display: block;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.section-inline-cta p {
  margin: 8px 0 0;
  color: rgba(247, 251, 249, 0.76);
  font-size: 15px;
  line-height: 1.6;
  max-width: 42rem;
}

.creator-meta strong {
  color: var(--text);
}

.social-section {
  overflow: hidden;
}

.social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: -4px 0 22px;
}

.social-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(123, 219, 166, 0.1);
  border: 1px solid rgba(123, 219, 166, 0.14);
  color: var(--green-4);
  font-size: 14px;
  font-weight: 800;
}

.creator-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  overflow: visible;
}

.creator-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 49, 34, 0.06);
}

.creator-cover {
  position: relative;
  z-index: 0;
  height: 76px;
  overflow: hidden;
  background: var(--creator-cover-bg, linear-gradient(135deg, #80c56b, #6ebf77));
}

.creator-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern_mat.webp");
  background-size: 160px;
  background-repeat: repeat;
  opacity: 0.16;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.creator-cover-a { --creator-cover-bg: linear-gradient(135deg, #8fce74, #78c684); }
.creator-cover-b { --creator-cover-bg: linear-gradient(135deg, #f4c56f, #efb864); }
.creator-cover-c { --creator-cover-bg: linear-gradient(135deg, #9bd4d0, #86c8d1); }
.creator-cover-d { --creator-cover-bg: linear-gradient(135deg, #cdb1e6, #c3ace0); }
.creator-cover-e { --creator-cover-bg: linear-gradient(135deg, #f6b2c1, #eea6bc); }
.creator-cover-f { --creator-cover-bg: linear-gradient(135deg, #f8fafb, #edf2f5); }

.creator-cover-f::before {
  opacity: 0.08;
  mix-blend-mode: darken;
}

.creator-card img {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: -38px auto 0;
  border: 4px solid #fff;
  object-fit: cover;
  background: #fff;
}

.creator-meta {
  position: relative;
  z-index: 1;
  padding: 12px 18px 18px;
  text-align: center;
}

.final-cta-section {
  padding-bottom: 56px;
}

.final-cta-card {
  padding: 28px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(18, 45, 31, 0.96), rgba(13, 27, 20, 0.96)),
    url("../images/pattern_mat.webp");
  background-size: cover, 210px;
  border: 1px solid rgba(146, 236, 157, 0.12);
}

.final-cta-card h2,
.final-cta-card p {
  color: var(--white);
}

.final-cta-card p {
  color: rgba(247, 251, 249, 0.76);
  max-width: 40rem;
}

.creators-footer {
  padding: 20px 0 calc(32px + env(safe-area-inset-bottom));
  background: transparent;
}

.creators-footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
}

.creators-footer-row a {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-soft);
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(11, 24, 18, 0.92);
  border: 1px solid rgba(146, 236, 157, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-cta span {
  color: rgba(247, 251, 249, 0.74);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .creators-hero {
    padding-top: 28px;
  }

  .benefits-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creator-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-cta {
    left: auto;
    right: 22px;
    width: min(420px, calc(100vw - 44px));
  }
}

@media (min-width: 980px) {
  .creators-hero-grid,
  .earnings-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .creators-hero {
    padding-top: 34px;
    padding-bottom: 52px;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .creator-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    overflow: visible;
  }
}

@media (max-width: 699px) {
  .creators-section {
    padding: 58px 0;
  }

  .hero-actions,
  .final-cta-actions,
  .section-inline-cta {
    flex-direction: column;
  }

  .hero-topbar {
    margin-bottom: 22px;
  }

  .hero-brand {
    padding: 11px 14px;
  }

  .cta-primary,
  .cta-secondary,
  .sticky-cta-button {
    width: 100%;
  }

  .sticky-cta {
    align-items: stretch;
  }

  .sticky-cta span {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }

  .section-inline-cta {
    align-items: stretch;
  }

  .hero-social-proof {
    align-items: flex-start;
  }

}

@media (min-width: 980px) {
  .sticky-cta {
    display: none;
  }
}
