:root {
  --bg: #070907;
  --surface: #0d120f;
  --surface-2: #121713;
  --text: #f4f7f1;
  --muted: #aab4a8;
  --line: rgba(255, 255, 255, .13);
  --green: #12b866;
  --green-light: #65eca0;
  --amber: #e3b54c;
  --red: #e36558;
  --blue: #46a3e9;
  --max: 1200px;
  --shadow: 0 26px 70px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .035;
  background-image:
    linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
  background-size: 58px 58px;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.creator-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 9, 7, .76);
  box-shadow: 0 16px 52px rgba(0, 0, 0, .3);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background .2s ease, min-height .2s ease;
}

.creator-header.is-scrolled {
  min-height: 56px;
  background: rgba(7, 9, 7, .94);
}

.creator-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  font-weight: 900;
  white-space: nowrap;
}

.creator-brand img {
  width: 34px;
  height: 34px;
}

.creator-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.creator-nav a {
  transition: color .2s ease;
}

.creator-nav a:hover,
.creator-nav a:focus-visible {
  color: #fff;
}

.header-apply,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  touch-action: manipulation;
}

.header-apply,
.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 34px rgba(18, 184, 102, .25);
}

.header-apply svg,
.button svg {
  width: 19px;
  height: 19px;
}

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

.header-apply:focus-visible,
.button:focus-visible,
.reward-switch button:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(101, 236, 160, .62);
  outline-offset: 3px;
}

.creator-hero {
  position: relative;
  min-height: 88svh;
  padding: 116px 20px 118px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.creator-hero-media,
.creator-hero-shade {
  position: absolute;
  inset: 0;
}

.creator-hero-media {
  z-index: -3;
  background: url("/assets/editor-restored-20260714b/command-visual.png") 60% 47% / cover no-repeat;
  transform: scale(1.015);
}

.creator-hero-shade {
  z-index: -2;
  background: rgba(3, 5, 4, .6);
  box-shadow:
    inset 0 -180px 160px rgba(7, 9, 7, .95),
    inset 720px 0 280px rgba(5, 7, 5, .62);
}

.creator-hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: min(50vw, 620px);
}

.eyebrow,
.section-kicker {
  color: var(--green-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(18, 184, 102, .14);
}

.creator-hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: .88;
  text-transform: uppercase;
  text-shadow: 0 12px 42px rgba(0, 0, 0, .75);
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #dfe6dc;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .95);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button-secondary {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(7, 9, 7, .66);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(101, 236, 160, .54);
  background: rgba(18, 184, 102, .13);
}

.creator-hero-stats {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 40px), var(--max));
  min-height: 94px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: rgba(9, 13, 10, .9);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.creator-hero-stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 28px;
}

.creator-hero-stats div + div {
  border-left: 1px solid var(--line);
}

.creator-hero-stats strong {
  font-size: 22px;
  line-height: 1.2;
}

.creator-hero-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 780px;
  margin-bottom: 38px;
}

.section-number {
  padding-top: 7px;
  color: var(--green-light);
  font-weight: 900;
}

.section-number::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 9px;
  background: var(--green);
}

.section-kicker {
  margin: 0 0 10px;
}

.section-heading h2,
.performance-content h2,
.ideas-heading h2,
.final-content h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 66px);
  line-height: .98;
}

.section-heading p:last-child,
.ideas-heading > p:last-child {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.rewards {
  padding-bottom: 120px;
}

.reward-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  width: min(100%, 520px);
  margin-bottom: 18px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.reward-switch button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.reward-switch button svg {
  width: 21px;
  height: 21px;
}

.reward-switch button[aria-selected="true"] {
  border-color: rgba(101, 236, 160, .42);
  background: rgba(18, 184, 102, .14);
  color: #fff;
}

.reward-panel {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(520px, 1.2fr);
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.reward-panel[hidden] {
  display: none;
}

.reward-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 60px);
  border-right: 1px solid var(--line);
  background: #101712;
}

.format-label {
  align-self: flex-start;
  padding: 5px 9px;
  border: 1px solid rgba(227, 181, 76, .36);
  border-radius: 6px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.reward-panel-copy h3 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.reward-panel-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.reward-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #d7dfd4;
  font-size: 13px;
}

.reward-note svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--green-light);
}

.reward-table {
  display: grid;
  align-content: stretch;
  padding: 14px 28px;
}

.reward-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 62px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}

.reward-row:last-child {
  border-bottom: 0;
}

.reward-row span:nth-child(n+2),
.reward-row b,
.reward-row em {
  text-align: right;
}

.reward-row b,
.reward-row em,
.reward-row strong {
  font-size: 17px;
}

.reward-row em {
  color: var(--green-light);
  font-style: normal;
  font-weight: 900;
}

.reward-head {
  min-height: 48px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.performance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  border-block: 1px solid var(--line);
  background: var(--surface-2);
}

.performance-image {
  min-height: 620px;
  background: url("/assets/editor-restored-20260714b/command-visual.png") 48% 52% / cover no-repeat;
}

.performance-content {
  align-self: center;
  width: min(100%, 620px);
  padding: 72px clamp(28px, 6vw, 84px);
}

.performance-lead {
  margin: 20px 0 34px;
  color: var(--muted);
  font-size: 17px;
}

.performance-list {
  display: grid;
}

.performance-list article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.performance-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(101, 236, 160, .34);
  border-radius: 8px;
  background: rgba(18, 184, 102, .1);
  color: var(--green-light);
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.performance-list strong {
  display: block;
  font-size: 18px;
}

.performance-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.steps li {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 138px;
  border-bottom: 1px solid var(--line);
}

.steps > li > span {
  color: var(--green-light);
  font-size: 14px;
  font-weight: 900;
}

.steps strong {
  font-size: clamp(22px, 3vw, 34px);
}

.steps p {
  max-width: 720px;
  margin: 6px 0 0;
  color: var(--muted);
}

.content-ideas {
  padding: 100px max(20px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background: #0a0d0b;
}

.ideas-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.ideas-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 14px;
}

.idea-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.idea-main {
  grid-row: span 2;
}

.idea-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 3, .28);
  box-shadow: inset 0 -170px 120px rgba(3, 5, 4, .92);
}

.idea-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.idea-card:hover img {
  transform: scale(1.035);
}

.idea-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.idea-card span {
  color: var(--green-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.idea-card strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(20px, 2.5vw, 34px);
  line-height: 1.1;
}

.rules-layout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: start;
}

.rules-summary {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.rules-summary div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  color: #dce5da;
  font-weight: 750;
}

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

.rules-summary svg {
  width: 21px;
  height: 21px;
  color: var(--green-light);
  stroke-width: 2.6;
}

.rules-summary .is-forbidden svg {
  color: var(--red);
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: center;
  min-height: 78px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary svg {
  width: 22px;
  height: 22px;
  color: var(--muted);
  transition: transform .2s ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list p {
  max-width: 720px;
  margin: -4px 44px 24px 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  padding: 90px 20px;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
}

.final-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/assets/editor-restored-20260714b/gallery-09.jpg") center / cover no-repeat;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(3, 5, 4, .74);
  box-shadow: inset 0 0 180px 60px rgba(3, 5, 4, .68);
}

.final-content {
  width: min(100%, 820px);
  text-align: center;
}

.final-content p:not(.section-kicker) {
  max-width: 650px;
  margin: 20px auto 30px;
  color: #d8e0d5;
  font-size: 17px;
}

.creator-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 34px 0 42px;
  color: var(--muted);
}

.creator-footer > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
}

.creator-footer > div a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.creator-footer a:hover {
  color: #fff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}

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

@media (max-width: 980px) {
  .creator-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .creator-nav {
    display: none;
  }

  .creator-hero-content {
    padding-right: 36%;
  }

  .reward-panel {
    grid-template-columns: 1fr;
  }

  .reward-panel-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .performance-image {
    min-height: 540px;
    background-position: center 48%;
  }

  .performance-content {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
    padding: 72px 0 90px;
  }
}

@media (max-width: 720px) {
  .creator-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding-left: 12px;
  }

  .creator-brand span {
    display: none;
  }

  .header-apply {
    min-height: 42px;
    padding: 0 13px;
    font-size: 14px;
  }

  .creator-hero {
    min-height: 88svh;
    padding: 102px 16px 160px;
    align-items: flex-end;
  }

  .creator-hero-media {
    background-position: 54% 48%;
  }

  .creator-hero-shade {
    background: rgba(3, 5, 4, .57);
    box-shadow: inset 0 -420px 220px rgba(3, 5, 4, .88);
  }

  .creator-hero-content {
    padding-right: 0;
  }

  .creator-hero h1 {
    font-size: clamp(45px, 16vw, 72px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .creator-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 20px);
    min-height: 106px;
  }

  .creator-hero-stats div {
    padding: 14px 10px;
  }

  .creator-hero-stats strong {
    font-size: 16px;
  }

  .creator-hero-stats span {
    font-size: 10px;
    line-height: 1.25;
  }

  .section {
    width: calc(100% - 32px);
    padding: 76px 0;
  }

  .section-heading {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }

  .section-number::after {
    width: 28px;
  }

  .section-heading h2,
  .performance-content h2,
  .ideas-heading h2,
  .final-content h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .reward-switch {
    width: 100%;
  }

  .reward-switch button {
    min-height: 52px;
    padding: 0 8px;
    font-size: 13px;
  }

  .reward-panel {
    min-height: 0;
  }

  .reward-panel-copy {
    padding: 28px 22px;
  }

  .reward-table {
    padding: 8px 10px;
  }

  .reward-row {
    min-height: 58px;
    padding: 0 6px;
  }

  .reward-row b,
  .reward-row em,
  .reward-row strong {
    font-size: 14px;
  }

  .reward-head {
    font-size: 10px;
  }

  .performance-image {
    min-height: 470px;
    background-position: 52% 48%;
  }

  .performance-content {
    width: calc(100% - 32px);
    padding: 58px 0 72px;
  }

  .steps li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    min-height: 126px;
  }

  .content-ideas {
    padding: 76px 16px;
  }

  .ideas-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .idea-main {
    grid-row: auto;
  }

  .idea-card {
    min-height: 300px;
  }

  .rules-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .rules-summary {
    position: static;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 16px;
  }

  .faq-list p {
    margin-right: 0;
  }

  .final-cta {
    min-height: 540px;
    padding-inline: 16px;
  }

  .final-content .button {
    width: 100%;
  }

  .creator-footer {
    align-items: flex-start;
  }

  .creator-footer > div {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .header-apply svg {
    display: none;
  }

  .creator-hero-stats strong {
    font-size: 14px;
  }

  .creator-hero-stats span {
    font-size: 9px;
  }

  .reward-switch button svg {
    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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
