:root {
  --page-bg: #ffffff;
  --surface: #f5f5f5;
  --text: #1a1209;
  --text-soft: #5a4e3a;
  --line: rgba(26, 18, 9, 0.1);
  --pill-shadow: 0 16px 20px rgba(0, 0, 0, 0.07);
  --card-shadow: 0 30px 60px rgba(255, 104, 0, 0.18);
  --card-bg: rgba(255, 255, 255, 0.72);
  --gradient: linear-gradient(
    90deg,
    #ff6b00 13.614%,
    #ff2d78 53.475%,
    #8b5cf6 91.832%
  );
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --page-bg: #100e0b;
  --surface: #1a1612;
  --text: #ede8dc;
  --text-soft: #8a7f6e;
  --line: rgba(237, 232, 220, 0.09);
  --pill-shadow: 0 16px 20px rgba(0, 0, 0, 0.45);
  --card-shadow: 0 30px 60px rgba(255, 104, 0, 0.28);
  --card-bg: rgba(28, 22, 16, 0.82);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background: var(--page-bg);
  overflow-x: hidden;
  transition: background-color 280ms ease, color 280ms ease;
}

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

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

button,
input {
  font: inherit;
}

.landing-page {
  min-height: 100vh;
}

.hero-section {
  position: relative;
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
  min-height: 1813px;
  padding: 42px 0 0;
  background: var(--page-bg);
}

.hero-gradients,
.hero-guides,
.orbit-stage {
  position: absolute;
  inset: 0;
}

.hero-gradients {
  pointer-events: none;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  width: min(68vw, 1020px);
  aspect-ratio: 1;
  opacity: 1;
  animation: gradientFloat 11s ease-in-out infinite;
  will-change: transform;
}

.hero-gradient--left {
  left: max(-30vw, -460px);
  top: 80px;
  animation-direction: alternate;
}

.hero-gradient--right {
  right: max(-30vw, -460px);
  top: 60px;
  animation-duration: 13s;
  animation-direction: alternate-reverse;
}

.hero-guides {
  pointer-events: none;
  z-index: 1;
}

.hero-guides span,
.section-guides span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.hero-guides span:nth-child(1) {
  left: 18.72%;
}

.hero-guides span:nth-child(2) {
  left: 50%;
}

.hero-guides span:nth-child(3) {
  left: 81.28%;
}

.section-guides {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-guides span:nth-child(1) {
  left: 18.72%;
}

.section-guides span:nth-child(2) {
  left: 50%;
}

.section-guides span:nth-child(3) {
  left: 81.28%;
}

.hero-nav,
.hero-content {
  position: relative;
  z-index: 6;
}

.hero-nav {
  width: min(1280px, calc(100vw - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.brand-group__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-group__foom {
  display: flex;
  text-decoration: none;
}

.brand-group__foom-logo {
  height: 52px;
  width: auto;
}

.brand-group__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0.7;
}

.brand-group__divider {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-soft);
  opacity: 0.35;
  line-height: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  flex-shrink: 0;
}

.hero-nav__links {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
}

.hero-nav__links a {
  position: relative;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.hero-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease-out);
}

.hero-nav__links a:hover,
.hero-nav__links a:focus-visible {
  opacity: 0.85;
  transform: translateY(-1px);
}

.hero-nav__links a:hover::after,
.hero-nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.hero-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 23px;
  border: 0;
  border-radius: 999px;
  background: var(--gradient);
  background-size: 180% 100%;
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 72, 112, 0.18);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background-position 260ms ease,
    filter 220ms ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 32%,
    rgba(255, 255, 255, 0.56) 50%,
    rgba(255, 255, 255, 0.18) 68%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-160%);
  transition: transform 620ms var(--ease-out);
}

.cta-button span {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cta-button:hover,
.cta-button:focus-visible {
  background-position: 100% 50%;
  box-shadow: 0 18px 34px rgba(255, 76, 102, 0.26);
  filter: saturate(1.08);
  transform: translateY(-2px) scale(1.01);
}

.cta-button:hover::before,
.cta-button:focus-visible::before {
  transform: translateX(160%);
}

.cta-button--nav {
  min-width: 184px;
}

.cta-button--signup {
  min-width: 172px;
}

.cta-button--hero {
  background: linear-gradient(90deg, #000000 13.61%, #FF2D78 53.47%, #381A7D 91.83%);
  box-shadow: none;
  padding: 18px 36px;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.hero-content {
  width: min(931px, calc(100vw - 2rem));
  margin: 120px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.hero-eyebrow {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-kicker {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 14px;
  text-transform: uppercase;
}

.hero-title__line {
  display: flex;
  justify-content: center;
  gap: 0.14em;
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
}

.hero-title__line:first-child {
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

.hero-title__line--gradient {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 110px;
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.04em;
}

.hero-title__line--offset {
  gap: 0;
}

.hero-description {
  width: min(760px, 100%);
  margin: 0;
  color: var(--text-soft);
  font-size: 24px;
  line-height: 1.7;
}

.signup-form {
  width: min(760px, 100%);
  margin-top: 47px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.signup-form__row {
  display: flex;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--pill-shadow);
}

.signup-form input {
  width: 250px;
  min-height: 48px;
  padding: 17px 27px;
  border: 0;
  border-radius: 999px 0 0 999px;
  background: var(--page-bg);
  color: var(--text);
  outline: none;
}

.signup-form input::placeholder {
  color: var(--text-soft);
}

.signup-form__note {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  transition: color 0.2s;
}

.signup-form__note--success {
  color: #1a9e5c;
}

.orbit-stage {
  top: auto;
  bottom: 0;
  z-index: 3;
  height: 920px;
  overflow: visible;
  pointer-events: none;
}

.orbit-stat {
  position: absolute;
  left: 50%;
  bottom: 80px;
  z-index: 1;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
}

.orbit-stat__value {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(120px, 16vw, 210px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.orbit-stat__suffix {
  display: block;
  font-size: 0.3em;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 0.15em;
  text-transform: uppercase;
}

.orbit-stat__scroll {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0.35;
}

.orbit-stat__scroll svg {
  width: 36px;
  height: 56px;
  flex-shrink: 0;
  overflow: visible;
}

.orbit-stat__scroll-dot {
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(8px); opacity: 0.3; }
}

.orbit-track {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.community-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 222px;
  padding: 16px;
  border: 3px solid #fff;
  border-radius: 24px;
  background-color: var(--card-bg);
  box-shadow: var(--card-shadow);
  isolation: isolate;
  transform-origin: center center;
  will-change: transform;
  transition: transform 900ms cubic-bezier(0.65, 0, 0.35, 1),
              background-color 400ms ease,
              box-shadow 400ms ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.community-card--front {
  background-color: #ffffff;
  box-shadow: 0 40px 80px rgba(255, 104, 0, 0.32), 0 0 0 2px rgba(255,255,255,0.9);
}

[data-theme="dark"] .community-card--front {
  background-color: #1e1914;
  box-shadow: 0 40px 80px rgba(255, 104, 0, 0.45), 0 0 0 2px rgba(255,255,255,0.12);
}

.community-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  pointer-events: none;
}

.community-card__media {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 262px;
  border-radius: 12px;
  overflow: hidden;
}

.community-card__media > img,
.community-card__media > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

.community-card__meta {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.community-card__heart {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

.community-card__author {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.community-card__avatar {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.community-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ticker {
  position: relative;
  z-index: 12;
  overflow: hidden;
  background: #d6ff56;
}

.ticker__viewport {
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 22s linear infinite;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 0;
}

.ticker__item {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker__dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #000;
  flex: 0 0 auto;
}

.payout-section {
  position: relative;
  z-index: 11;
  overflow: hidden;
  background: var(--page-bg);
}

.metrics-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(4, max-content);
  column-gap: clamp(3.5rem, 8vw, 10.8125rem);
  row-gap: 2rem;
  justify-content: center;
}

.metric-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
}

.metric-card__value {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.metric-card__label {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.payout-section {
  min-height: 813px;
}

.payout-section__inner {
  position: relative;
  z-index: 1;
  width: min(848px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 21px 0 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payout-visual {
  margin-top: 80px;
  width: min(592px, 100%);
}

.payout-title {
  width: 100%;
  margin: 40px 0 0;
  color: var(--text-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
}

.payout-title span {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.payout-subcopy {
  margin: 40px 0 0;
  color: var(--text-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
  text-transform: uppercase;
}

.payout-subcopy__emphasis {
  position: relative;
  display: inline-block;
  margin-left: 0.3ch;
  font-weight: 700;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.payout-subcopy__emphasis img {
  position: absolute;
  left: 50%;
  top: calc(100% - 4px);
  width: 102px;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-button--center {
  margin-top: 48px;
  min-width: 184px;
}

.community-proof {
  margin-top: 98px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.community-proof__row {
  overflow: hidden;
}

.community-proof__avatars {
  display: flex;
  align-items: center;
}

.community-proof__avatar {
  width: 38px;
  height: 38px;
  margin-left: -10px;
  border: 2px solid var(--page-bg);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(255, 112, 66, 0.14);
  flex-shrink: 0;
}

.community-proof__avatar:first-child {
  margin-left: 0;
}

.community-proof__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-proof p {
  margin: 0;
  color: var(--text-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.workflow-section,
.ways-section,
.audience-section,
.round-numbers-section,
.crew-section,
.launch-section,
.faq-section,
.site-footer {
  position: relative;
  z-index: 11;
  overflow: hidden;
}

.workflow-section {
  padding: 93px 0 44px;
  background: var(--surface);
}

.workflow-section__curve {
  position: absolute;
  pointer-events: none;
  opacity: 0.92;
  height: auto;
}

.workflow-section__curve--left {
  left: -38px;
  top: -30px;
  width: min(69vw, 1049px);
}

.workflow-section__curve--right {
  right: -265px;
  bottom: 48px;
  width: min(69vw, 1049px);
}

.workflow-section__header,
.ways-section__header,
.audience-section__header,
.round-numbers-section__header,
.launch-section__inner,
.faq-section__heading {
  position: relative;
  z-index: 1;
}

.workflow-section__header {
  width: min(550px, calc(100vw - 2rem));
  margin: 0 auto 0 116px;
}

.section-title {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.18em;
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.section-title--center {
  justify-content: center;
  text-align: center;
}

.section-title--stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.section-title--stacked.section-title--center {
  align-items: center;
}

.section-title__gradient {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-subtitle {
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: 24px;
  line-height: 1.7;
}

.section-subtitle--center {
  text-align: center;
}

.workflow-slider {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin: 87px 0 0 calc(50% - 50vw);
}

.workflow-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding-left: max(32px, calc((100vw - 1360px) / 2));
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.workflow-slider__viewport::-webkit-scrollbar {
  display: none;
}

.workflow-slider__track {
  display: flex;
  gap: 27px;
  width: max-content;
  padding: 0 max(32px, calc((100vw - 1360px) / 2)) 12px;
}

.workflow-card {
  width: 404px;
  min-height: 467px;
  padding: 32px;
  border-radius: 26px;
  background: var(--card-bg);
  scroll-snap-align: start;
  box-shadow: 0 16px 30px rgba(18, 18, 18, 0.04);
}

.workflow-card__stage {
  height: 252px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.06) 0%, rgba(255, 255, 255, 0) 100%),
    var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.workflow-card__stage-img {
  width: auto;
  height: 85%;
  max-width: 85%;
  object-fit: contain;
  display: block;
}

.workflow-card h3 {
  width: min(262px, 100%);
  margin: 32px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.workflow-card__divider {
  width: 53.5px;
  height: 1px;
  margin-top: 52px;
  background: var(--gradient);
}

.workflow-card p {
  width: min(336px, 100%);
  margin: 17px 0 0;
  font-size: 16px;
  line-height: 1.6;
}

.workflow-slider__controls {
  width: min(1320px, calc(100vw - 2rem));
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.workflow-slider__arrows {
  display: flex;
  gap: 16px;
}

.workflow-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 180ms ease, transform 180ms ease;
  padding: 0;
}

.workflow-slider__arrow:hover,
.workflow-slider__arrow:focus-visible {
  opacity: 1;
  transform: translateX(2px);
  background: transparent;
  border-color: transparent;
}

.workflow-slider__arrow[data-workflow-prev]:hover,
.workflow-slider__arrow[data-workflow-prev]:focus-visible {
  transform: translateX(-2px);
}

.workflow-slider__progress {
  display: flex;
  align-items: center;
  gap: 10px;
}

.workflow-slider__progress-line {
  width: 40px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
}

.workflow-slider__progress-line--active {
  width: 64px;
  background: var(--text);
}

.ways-section {
  padding: 93px 0 120px;
  background: var(--page-bg);
}

.ways-section__gradient {
  position: absolute;
  width: min(54vw, 818px);
  pointer-events: none;
  opacity: 0.9;
}

.ways-section__gradient--right {
  right: max(-31vw, -470px);
  top: 287px;
}

.ways-section__gradient--left {
  left: max(-35vw, -520px);
  bottom: 75px;
}

.ways-section__header {
  width: min(658px, calc(100vw - 2rem));
  margin: 0 auto;
}

.ways-grid {
  position: relative;
  z-index: 1;
  width: min(1048px, calc(100vw - 2rem));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 62px;
}

/* Collapse: hide everything beyond the first row (3 cards on desktop) */
.ways-grid.is-collapsed .prize-card:nth-child(n+4) {
  display: none;
}

.ways-toggle {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 32px auto 0;
  padding: 12px 24px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.ways-toggle:hover {
  border-color: rgba(255, 107, 0, 0.45);
  background: rgba(255, 107, 0, 0.04);
}

.ways-toggle svg {
  transition: transform 280ms var(--ease-out);
  flex-shrink: 0;
}

.ways-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.prize-card {
  min-height: 354px;
  padding: 23px;
  border: 2px solid rgba(142, 142, 142, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
  text-align: center;
}

.prize-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.prize-card__head h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.prize-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 23px;
  padding: 4px 10px;
  border: 1px solid #2c7e00;
  border-radius: 38px;
  background: #eaffdf;
  color: #2c7e00;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.prize-card__pill--soft {
  border-color: #c77dff;
  background: #f6ebff;
  color: #8b5cf6;
}

.prize-card__pill--outline {
  border-color: rgba(255, 107, 0, 0.35);
  background: rgba(255, 255, 255, 0.86);
  color: #ff6b00;
}

.prize-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 123px;
  height: 123px;
  margin: 27px auto 30px;
}

.prize-card__icon img {
  max-width: 100%;
  max-height: 100%;
}

.prize-card__icon--glyph span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.prize-card p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
}

.ways-more {
  position: relative;
  z-index: 1;
  width: min(1096px, calc(100vw - 2rem));
  margin: 80px auto 0;
  padding-top: 56px;
  border-top: 1px solid rgba(7, 7, 7, 0.08);
  display: grid;
  grid-template-columns: 1fr 489px;
  gap: 40px;
  align-items: start;
}

.ways-more__count {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.ways-more__copy {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 24px;
  line-height: 1.7;
}

.audience-section {
  padding: 150px 80px 140px;
  background: var(--page-bg);
}

.audience-section__header {
  width: min(714px, 100%);
  margin: 0 auto;
  text-align: center;
}

.audience-section__eyebrow,
.round-numbers-section__eyebrow {
  margin: 0 0 26px;
  color: #ff6b00;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.audience-section__copy {
  width: min(714px, 100%);
  margin-inline: auto;
}

.audience-timeline {
  position: relative;
  width: min(902px, 100%);
  margin: 122px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 86px;
  column-gap: 84px;
}

.audience-timeline__line {
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #ff6b00 0%, #ff2d78 54%, #8b5cf6 100%);
  transform: translateX(-50%);
}

.audience-timeline__item {
  position: relative;
  width: 100%;
  max-width: 409px;
}

.audience-timeline__item::before {
  content: "";
  position: absolute;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--page-bg);
  border: 4px solid #ff6b00;
}

.audience-timeline__item--left {
  margin-left: auto;
  text-align: right;
}

.audience-timeline__item--left::before {
  right: -52px;
}

.audience-timeline__item--right::before {
  left: -52px;
}

.audience-timeline__item h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.audience-timeline__item p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.45;
}

.round-numbers-section {
  padding: 80px 80px 120px;
  background: var(--surface);
}

.round-numbers-section__header {
  width: min(714px, 100%);
  margin: 0 auto;
  text-align: center;
}

.round-stats {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 80px auto 0;
  padding-top: 56px;
  border-top: 1px solid rgba(7, 7, 7, 0.08);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 86px 78px;
}

.round-stat {
  text-align: center;
}

.round-stat__value {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.round-stat__value--days {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.14em;
}

.round-stat__value--days small {
  margin-bottom: 18px;
  font-size: 31px;
  line-height: 1;
}

.round-stat__copy {
  width: min(409px, 100%);
  margin: 20px auto 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.45;
}

.crew-section {
  padding: 169px 80px 85px;
  background: var(--page-bg);
}

.crew-section__inner {
  position: relative;
  z-index: 1;
  width: min(1315px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 472px) minmax(0, 714px);
  gap: 129px;
  align-items: start;
}

.crew-section__content {
  min-width: 0;
}

.crew-section__visual-card {
  position: relative;
  overflow: hidden;
  height: 571px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 255, 255, 0) 100%),
    var(--surface);
}

.crew-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms ease-in-out;
  border-radius: inherit;
}

.crew-video.is-active {
  opacity: 1;
}

.crew-section__copy {
  width: min(676px, 100%);
}

.crew-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 62px;
}

.crew-benefit {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 229px;
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid rgba(7, 7, 7, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
}

[data-theme="dark"] .crew-benefit {
  background: rgba(40, 32, 24, 0.82);
  border-color: rgba(237, 232, 220, 0.1);
}

.crew-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  flex: 0 0 auto;
}

.crew-benefit__icon img {
  max-width: 100%;
  max-height: 100%;
}

.crew-benefit p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.crew-section__marquee {
  grid-column: 1 / -1;
  width: min(920px, 100%);
  margin: 174px auto 0;
  padding-top: 36px;
  border-top: 1px solid rgba(7, 7, 7, 0.08);
  text-align: center;
}

.crew-section__marquee p {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.crew-section__marquee span,
.crew-section__marquee small {
  display: block;
  margin-top: 12px;
  color: var(--text-soft);
}

.crew-section__marquee span {
  font-size: 18px;
  line-height: 1.45;
}

.crew-section__marquee small {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.launch-section {
  padding: 80px 0 120px;
  background:
    radial-gradient(circle at 85% 28%, rgba(255, 114, 92, 0.18), transparent 28%),
    radial-gradient(circle at 16% 84%, rgba(139, 92, 246, 0.12), transparent 26%),
    var(--page-bg);
}

.launch-section__ghost {
  position: absolute;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(180px, 19vw, 320px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  opacity: 0.08;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  pointer-events: none;
}

.launch-section__ghost--left {
  left: -2vw;
  top: 8px;
}

.launch-section__ghost--right {
  right: -1vw;
  bottom: -10px;
}

.launch-section__inner {
  width: min(714px, calc(100vw - 2rem));
  margin: 0 auto;
  text-align: center;
}

.launch-section__copy {
  width: min(640px, 100%);
  margin-inline: auto;
}

.signup-form--compact {
  width: min(422px, 100%);
  margin: 60px auto 0;
}

.signup-form--hero {
  margin-top: 36px;
}

.faq-section {
  position: relative;
  overflow: hidden;
  padding: 93px 80px 140px;
  background:
    url("./assets/figma/faq-vector-4.svg") no-repeat calc(50% - 63px) -2px / 1284px 1646px,
    url("./assets/figma/faq-vector-3.svg") no-repeat calc(50% - 96px) -13px / 1295px 1714px,
    url("./assets/figma/faq-vector-2.svg") no-repeat calc(50% - 170px) -5px / 1219px 1757px,
    url("./assets/figma/faq-vector-1.svg") no-repeat calc(50% - 184px) -30px / 1228px 1853px,
    var(--page-bg);
}

.faq-section__heading {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto 36px;
}

.faq-section__inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px minmax(0, 856px);
  gap: 64px;
  align-items: start;
}

.faq-section__accent {
  min-height: 1px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 2px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, rgba(255, 107, 0, 0.72), rgba(255, 45, 120, 0.72), rgba(139, 92, 246, 0.72)) border-box;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

@media (max-width: 980px) {
  .faq-item {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

.faq-item.is-open {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) padding-box,
    linear-gradient(90deg, rgba(255, 107, 0, 1), rgba(255, 45, 120, 1), rgba(139, 92, 246, 1)) border-box;
}

.faq-item__button {
  width: 100%;
  padding: 29px 40px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text-soft);
  cursor: pointer;
}

.faq-item__button span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.faq-item.is-open .faq-item__button span {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.faq-item__button img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  transition: transform 240ms var(--ease-out);
}

.faq-item.is-open .faq-item__button img {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 40px 29px;
}

.faq-item__divider {
  height: 1px;
  margin-bottom: 31px;
  background: rgba(34, 40, 46, 0.12);
}

.faq-item__body p {
  width: min(689px, 100%);
  margin: 0;
  color: var(--text-soft);
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.019em;
}

.site-footer {
  padding: 71px 80px 36px;
  background: var(--surface);
  border-top: 11px solid #ff6b00;
}

.site-footer__top,
.site-footer__bottom {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__logo {
  margin: 0;
}

.site-footer__tagline {
  width: min(420px, 100%);
  margin: 32px 0 0;
  color: var(--text-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 167px;
}

.site-footer__socials {
  display: flex;
  gap: 8px;
}

.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #22282e;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  gap: 100px;
  color: var(--text-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.site-footer__bottom {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(34, 40, 46, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.4;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__views {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.site-footer__provider {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(34, 40, 46, 0.12);
  text-align: center;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.6;
}

.site-footer__provider p {
  margin: 0;
}

.site-footer__provider-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin-bottom: 6px !important;
}

.site-footer__provider-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px !important;
}

.site-footer__provider-address {
  opacity: 0.75;
}

.site-footer__provider-contact a {
  color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
}

.site-footer__provider-contact a:hover {
  color: var(--text-primary);
  opacity: 1;
}

.site-footer__provider-copy {
  margin-top: 10px !important;
  opacity: 0.55;
  font-size: 11px;
}

.intro-block {
  opacity: 1;
  transform: none;
  filter: none;
}

body.motion-enabled .intro-block {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.985);
  filter: blur(6px);
}

body.motion-enabled.is-ready .intro-block {
  animation: introReveal 620ms var(--ease-out) forwards;
  animation-delay: var(--intro-delay, 0ms);
}

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

body.motion-enabled [data-reveal],
body.motion-enabled [data-reveal-early] {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  filter: blur(6px);
  transition:
    opacity 520ms var(--ease-out),
    transform 520ms var(--ease-out),
    filter 520ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

body.motion-enabled [data-reveal].is-visible,
body.motion-enabled [data-reveal-early].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0px);
}

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

@keyframes introReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.985);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0px);
  }
}

@keyframes gradientFloat {
  0% {
    transform: translate3d(0, -18px, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 16px, 0) scale(1.02);
  }

  100% {
    transform: translate3d(0, -10px, 0) scale(0.99);
  }
}

@keyframes cardFloat {
  0%, 100% { transform: rotate(var(--tilt, 0deg)) translateY(0px); }
  50%       { transform: rotate(var(--tilt, 0deg)) translateY(-10px); }
}

@keyframes tickerScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1200px) {
  .hero-title__line:first-child {
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.2;
  }

  .hero-title__line--gradient {
    font-size: clamp(70px, 10vw, 110px);
  }

  .hero-description {
    font-size: clamp(18px, 2vw, 24px);
  }

  .orbit-stage {
    bottom: 0;
    height: 820px;
  }

  .orbit-stat {
    bottom: 138px;
    z-index: 3;
  }

  .metric-card__value {
    font-size: clamp(52px, 5.8vw, 72px);
  }

  .metric-card__label {
    font-size: 22px;
  }

  .payout-title {
    font-size: clamp(40px, 4.8vw, 54px);
  }
}

@media (max-width: 980px) {
  .hero-section {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-nav {
    width: calc(100vw - 1.5rem);
    flex-direction: column;
    justify-content: center;
  }

  .hero-nav__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 22px;
  }

  .hero-content {
    margin-top: 80px;
    width: calc(100vw - 1.5rem);
  }

  .signup-form,
  .hero-description {
    width: min(760px, 100%);
  }

  .signup-form__row {
    flex-direction: column;
    width: min(420px, 100%);
    border-radius: 28px;
    overflow: hidden;
  }

  .signup-form input,
  .cta-button--signup {
    width: 100%;
    min-width: 0;
    border-radius: 0;
  }

  .signup-form input {
    border-radius: 28px 28px 0 0;
  }

  .cta-button--signup {
    border-radius: 0 0 28px 28px;
  }

  .orbit-stage {
    position: relative;
    inset: auto;
    height: 680px;
    margin-top: 64px;
  }

  .orbit-stat {
    bottom: 72px;
  }

  .ticker__item {
    font-size: 17px;
  }



  .metrics-grid {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }

  .payout-section {
    min-height: auto;
  }

  .payout-section__inner {
    padding: 40px 0 48px;
  }

  .payout-title {
    margin-top: 28px;
  }

  .payout-subcopy {
    margin-top: 28px;
    font-size: 20px;
  }

  .cta-button--center {
    margin-top: 56px;
  }

  .community-proof {
    margin-top: 72px;
  }
}

@media (max-width: 720px) {
  .hero-gradient {
    width: 430px;
  }

  .hero-gradient--left {
    left: -220px;
    top: 240px;
  }

  .hero-gradient--right {
    right: -250px;
    top: 220px;
  }

  .hero-guides span:nth-child(1) {
    left: 10%;
  }

  .hero-guides span:nth-child(2) {
    left: 50%;
  }

  .hero-guides span:nth-child(3) {
    left: 90%;
  }

  .section-guides span:nth-child(1) {
    left: 10%;
  }

  .section-guides span:nth-child(2) {
    left: 50%;
  }

  .section-guides span:nth-child(3) {
    left: 90%;
  }

  .brand-group__row {
    gap: 6px;
  }

  .brand-group__foom-logo {
    height: 40px;
  }

  .brand-group__label {
    font-size: 7px;
  }

  .brand-group__divider {
    font-size: 18px;
  }

  .brand {
    font-size: 20px;
  }

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

  .hero-title__line {
    gap: 0.08em;
    flex-wrap: wrap;
  }

  .hero-title__line:first-child {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-title__line--gradient {
    font-size: clamp(52px, 14vw, 72px);
    line-height: 0.9;
  }

  .hero-description {
    font-size: 17px;
    line-height: 1.55;
  }

  .orbit-stage {
    height: 600px;
    margin-top: 44px;
  }

  .orbit-stat {
    bottom: 80px;
  }

  .orbit-stat__value {
    font-size: clamp(60px, 20vw, 100px);
  }

  .community-card--float {
    animation: cardFloat 3.2s ease-in-out infinite;
  }

  .orbit-track .community-card--float:nth-child(2) {
    animation-duration: 3.8s;
    animation-delay: -1.3s;
  }

  .orbit-track .community-card--float:nth-child(3) {
    animation-duration: 2.9s;
    animation-delay: -0.6s;
  }

  .community-card {
    width: 168px;
    padding: 12px;
    border-radius: 20px;
  }

  .community-card__media {
    width: 142px;
    height: 194px;
  }

  .community-card__meta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 16px;
  }

  .community-card__heart {
    width: 18px;
    height: 18px;
  }

  .community-card__author {
    margin-top: 8px;
    gap: 8px;
    font-size: 11px;
  }

  .community-card__avatar {
    width: 22px;
    height: 22px;
  }

  .ticker__group {
    gap: 20px;
    padding: 12px 0;
  }

  .ticker__item {
    font-size: 15px;
  }

  .metrics-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .metric-card {
    align-items: center;
    text-align: center;
  }

  .metric-card__value {
    font-size: clamp(44px, 12vw, 60px);
  }

  .metric-card__label {
    font-size: 18px;
  }

  .payout-title {
    font-size: clamp(34px, 9vw, 46px);
  }

  .payout-subcopy {
    font-size: 17px;
  }

  .payout-subcopy__emphasis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .payout-subcopy__emphasis img {
    top: calc(100% - 2px);
    width: 82px;
  }

  .cta-button--center {
    width: 100%;
    max-width: 280px;
  }

  .community-proof {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 1200px) {
  .workflow-section__header {
    margin-left: 40px;
  }

  .workflow-slider__track {
    padding-inline: 40px;
  }

  .ways-grid {
    gap: 32px;
  }

  .prize-card {
    min-height: 330px;
  }

  .prize-card__head h3 {
    font-size: 21px;
  }

  .ways-more {
    width: min(1048px, calc(100vw - 2rem));
    grid-template-columns: 1fr 420px;
  }

  .ways-more__count {
    font-size: clamp(54px, 6vw, 72px);
  }

  .audience-section,
  .round-numbers-section,
  .crew-section,
  .faq-section,
  .site-footer {
    padding-inline: 40px;
  }

  .crew-section__inner {
    gap: 72px;
  }
}

@media (max-width: 980px) {
  .workflow-section,
  .ways-section,
  .audience-section,
  .round-numbers-section,
  .crew-section,
  .launch-section,
  .faq-section,
  .site-footer {
    padding-inline: 24px;
  }

  .workflow-section {
    padding-top: 72px;
  }

  .workflow-section__header {
    width: calc(100vw - 1.5rem);
    margin-left: 0;
  }

  .section-title {
    font-size: clamp(44px, 7vw, 60px);
  }

  .section-subtitle,
  .ways-more__copy,
  .launch-section__copy {
    font-size: 20px;
  }

  .workflow-slider {
    width: 100%;
    margin-left: 0;
    margin-top: 56px;
  }

  .workflow-slider__track {
    padding-inline: 24px;
  }

  .workflow-card {
    width: min(78vw, 404px);
  }

  .workflow-slider__controls {
    width: calc(100vw - 1.5rem);
    margin-top: 24px;
  }

  .ways-section {
    padding-top: 72px;
  }

  .ways-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* On mobile collapse after 1 card */
  .ways-grid.is-collapsed .prize-card:nth-child(n+2) {
    display: none;
  }

  .ways-more {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ways-more__copy {
    margin-top: 0;
  }

  .audience-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .audience-timeline {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 72px;
  }

  .audience-timeline__line {
    left: 0;
    top: 0;
    bottom: 0;
    transform: none;
  }

  .audience-timeline__item,
  .audience-timeline__item--left {
    max-width: none;
    margin-left: 44px;
    text-align: left;
  }

  .audience-timeline__item::before,
  .audience-timeline__item--left::before,
  .audience-timeline__item--right::before {
    left: -44px;
    right: auto;
  }

  .round-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 32px;
  }

  .crew-section {
    padding-top: 120px;
  }

  .crew-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .crew-section__visual {
    order: 2;
  }

  .crew-section__content {
    order: 1;
  }

  .crew-section__marquee {
    width: min(920px, 100%);
    margin-top: 72px;
  }

  .crew-section__marquee p {
    font-size: clamp(34px, 6vw, 48px);
  }

  .faq-section {
    background: var(--page-bg);
  }

  .faq-section__heading {
    width: min(721px, 100%);
    margin-bottom: 28px;
  }

  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-section__accent {
    display: none;
  }

  .faq-item__button,
  .faq-item__body {
    padding-inline: 24px;
  }

  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__meta {
    width: 100%;
    align-items: flex-start;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .workflow-section,
  .ways-section,
  .audience-section,
  .round-numbers-section,
  .crew-section,
  .launch-section,
  .faq-section,
  .site-footer {
    padding-inline: 16px;
  }

  .section-title {
    font-size: clamp(36px, 12vw, 48px);
  }

  .section-subtitle,
  .ways-more__copy,
  .launch-section__copy {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.55;
  }

  .workflow-slider__track {
    gap: 16px;
    padding-inline: 16px;
  }

  .workflow-card {
    width: min(86vw, 330px);
    min-height: 410px;
    padding: 22px;
  }

  .workflow-card__stage {
    height: 210px;
  }

  .workflow-card h3 {
    margin-top: 22px;
    font-size: 20px;
  }

  .workflow-card__divider {
    margin-top: 28px;
  }

  .workflow-card p {
    font-size: 14px;
  }

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

  .ways-grid,
  .round-stats {
    grid-template-columns: 1fr;
  }

  .prize-card {
    min-height: auto;
  }

  .prize-card__head h3 {
    font-size: 20px;
  }

  .prize-card__icon {
    width: 88px;
    height: 88px;
    margin: 20px auto;
  }

  .ways-more__count {
    font-size: clamp(38px, 12vw, 52px);
  }

  .audience-section__eyebrow,
  .round-numbers-section__eyebrow {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .audience-timeline {
    margin-top: 48px;
  }

  .audience-timeline__item {
    margin-left: 30px;
  }

  .audience-timeline__item::before {
    left: -30px;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .audience-timeline__item h3 {
    font-size: 22px;
  }

  .audience-timeline__item p,
  .round-stat__copy,
  .crew-section__copy,
  .crew-section__marquee span {
    font-size: 16px;
  }

  .round-stat__value {
    font-size: 72px;
  }

  .round-stat__value--days small {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .crew-section__visual-card {
    height: 360px;
  }

  .crew-benefits {
    margin-top: 36px;
  }

  .crew-benefit {
    width: 100%;
  }

  .crew-section__marquee {
    width: 100%;
    margin-top: 48px;
  }

  .launch-section {
    padding-top: 64px;
    padding-bottom: 88px;
  }

  .launch-section__ghost {
    font-size: clamp(120px, 24vw, 180px);
  }

  .faq-item__button {
    padding: 22px 18px;
    gap: 16px;
  }

  .faq-item__button span {
    font-size: 18px;
  }

  .faq-item__body {
    padding: 0 18px 20px;
  }

  .faq-item__body p {
    font-size: 16px;
  }

  .site-footer {
    padding-top: 56px;
    padding-bottom: 28px;
  }

  .site-footer__tagline {
    margin-top: 20px;
    font-size: 16px;
  }

  .site-footer__links {
    gap: 24px;
    flex-wrap: wrap;
  }
}

/* ── Theme toggle ─────────────────────────────────────────── */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 200ms ease,
    background 200ms ease,
    color 280ms ease;
}

.theme-toggle:hover {
  border-color: rgba(255, 107, 0, 0.45);
  background: rgba(255, 107, 0, 0.07);
}

.theme-toggle__sun { display: none; }
.theme-toggle__moon { display: block; }
[data-theme="dark"] .theme-toggle__sun { display: block; }
[data-theme="dark"] .theme-toggle__moon { display: none; }

/* ── Dark mode overrides ──────────────────────────────────── */
[data-theme="dark"] .hero-section {
  background: var(--page-bg);
}

[data-theme="dark"] .payout-section,
[data-theme="dark"] .ways-section {
  background: var(--surface);
}

[data-theme="dark"] .workflow-section {
  background: #1c1712;
}

[data-theme="dark"] .workflow-card {
  background: #231d16;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  color: var(--text);
}

[data-theme="dark"] .workflow-slider__arrow {
  color: var(--text);
}

[data-theme="dark"] .workflow-slider__progress-line {
  background: rgba(237, 232, 220, 0.2);
}

[data-theme="dark"] .workflow-slider__progress-line--active {
  background: var(--text);
}

[data-theme="dark"] .community-card {
  border-color: rgba(237, 232, 220, 0.12);
}

[data-theme="dark"] .community-card::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
}

[data-theme="dark"] .signup-form input {
  background: #1e1812;
  color: var(--text);
}

[data-theme="dark"] .prize-card {
  background: rgba(26, 22, 18, 0.78);
  border-color: rgba(237, 232, 220, 0.14);
  color: var(--text);
}

[data-theme="dark"] .prize-card__head h3 {
  color: var(--text);
}

[data-theme="dark"] .prize-card p {
  color: var(--text-soft);
}

[data-theme="dark"] .prize-card__pill {
  background: rgba(44, 126, 0, 0.15);
  border-color: rgba(44, 126, 0, 0.5);
  color: #7ddf64;
}

[data-theme="dark"] .prize-card__pill--soft {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}

[data-theme="dark"] .prize-card__pill--outline {
  background: rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.4);
  color: #ff9e4f;
}

[data-theme="dark"] .prize-card__icon--glyph span {
  color: var(--text);
}

[data-theme="dark"] .faq-item {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(90deg, rgba(255,107,0,.25), rgba(255,45,120,.25), rgba(139,92,246,.25)) border-box;
}

[data-theme="dark"] .faq-item.is-open {
  background:
    linear-gradient(rgba(30, 24, 16, 0.95), rgba(30, 24, 16, 0.95)) padding-box,
    linear-gradient(90deg, rgba(255,107,0,1), rgba(255,45,120,1), rgba(139,92,246,1)) border-box;
}

[data-theme="dark"] .site-footer {
  background: #0b0906;
}

[data-theme="dark"] .site-footer__provider {
  border-top-color: rgba(237, 232, 220, 0.08);
}

[data-theme="dark"] .site-footer__provider-name {
  color: rgba(237, 232, 220, 0.9);
}

[data-theme="dark"] .site-footer__provider-contact a {
  color: rgba(237, 232, 220, 0.6);
}

[data-theme="dark"] .site-footer__provider-contact a:hover {
  color: rgba(237, 232, 220, 0.9);
}

[data-theme="dark"] .hero-guides span,
[data-theme="dark"] .section-guides span {
  background: rgba(237, 232, 220, 0.06);
}

[data-theme="dark"] .ticker {
  color: #000;
}

[data-theme="dark"] .ticker__dot {
  background: #000;
}

[data-theme="dark"] .community-proof__avatar {
  border-color: var(--surface);
}

[data-theme="dark"] .audience-timeline__item h3 {
  color: var(--text);
}

[data-theme="dark"] .crew-section__marquee span,
[data-theme="dark"] .crew-section__marquee small {
  color: var(--text);
}

[data-theme="dark"] .round-stat__label {
  color: var(--text);
}
