:root {
  --ink: #070708;
  --ink-2: #101114;
  --ink-3: #18191d;
  --paper: #efeae2;
  --paper-2: #f7f3ec;
  --white: #f8f6f3;
  --spark: #ff531a;
  --spark-2: #ff7a3d;
  --spark-deep: #c63a0d;
  --data: #7d8c9c;
  --data-2: #9aa7b4;
  --mute: #a7a8ad;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 78px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  font-family: "Sora", sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  overflow: visible;
  border-bottom: 1px solid transparent;
  background: rgba(7, 7, 8, 0.42);
  backdrop-filter: blur(18px);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.header.is-scrolled {
  background: rgba(7, 7, 8, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 88px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--data-2);
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--spark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-spark {
  background: linear-gradient(135deg, var(--spark) 0%, #ff7a2e 100%);
  color: #1a0904;
  box-shadow: 0 10px 28px rgba(255, 83, 26, 0.32);
}

.btn-spark:hover {
  box-shadow: 0 16px 36px rgba(255, 83, 26, 0.42);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  padding: 10px 18px;
  font-size: 0.86rem;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: end;
  padding: 48px 0 72px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.28) 0%, rgba(7, 7, 8, 0.55) 42%, rgba(7, 7, 8, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 7, 8, 0.72) 0%, rgba(7, 7, 8, 0.18) 70%);
}

.hero-stripes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    -18deg,
    transparent 0 26px,
    rgba(255, 83, 26, 0.1) 26px 28px,
    transparent 28px 62px,
    rgba(125, 140, 156, 0.1) 62px 64px
  );
  mix-blend-mode: screen;
  animation: stripeDrift 22s linear infinite;
}

.hero-slash {
  position: absolute;
  right: -8%;
  top: -20%;
  width: 42vw;
  height: 140%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 83, 26, 0.22), rgba(125, 140, 156, 0.08) 60%, transparent);
  transform: rotate(18deg);
  clip-path: polygon(35% 0, 100% 0, 65% 100%, 0 100%);
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--spark-2);
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebrow i {
  width: 28px;
  height: 2px;
  background: var(--spark);
  display: inline-block;
}

.hero h1 {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
  font-size: clamp(3.1rem, 9vw, 7.2rem);
  max-width: 14ch;
  margin-bottom: 22px;
}

.hero h1 span {
  color: var(--spark);
}

.hero-lead {
  max-width: 36rem;
  color: #d5d2cc;
  font-size: 1.08rem;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 46px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 18px;
}

.stat {
  border-top: 2px solid var(--spark);
  padding-top: 12px;
}

.stat b {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.stat span {
  color: var(--mute);
  font-size: 0.82rem;
}

.stripe-band {
  height: 38px;
  background: repeating-linear-gradient(
    135deg,
    var(--spark) 0 11px,
    #070708 11px 22px,
    var(--data) 22px 33px,
    #070708 33px 52px
  );
  background-size: 74px 74px;
  animation: stripeRun 16s linear infinite;
}

.ticker {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  border-bottom: 8px solid var(--spark);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-family: "Unbounded", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  white-space: nowrap;
}

.ticker-track span em {
  font-style: normal;
  color: var(--spark-deep);
}

.section {
  padding: 108px 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 420px);
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--spark);
  font-weight: 600;
  margin-bottom: 12px;
}

h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-head p {
  color: var(--mute);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 83, 26, 0.45);
}

.card-media {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.card:hover .card-media img {
  transform: scale(1.07);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 70px;
  background: linear-gradient(transparent, var(--ink-2));
}

.card-body {
  padding: 22px 22px 26px;
}

.card-body h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.card-body p {
  color: var(--mute);
  font-size: 0.95rem;
}

.how {
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(255, 83, 26, 0.12), transparent 60%),
    var(--ink);
}

.how-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.how-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
}

.how-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.how-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 7, 8, 0.78));
}

.how-chip {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  background: rgba(7, 7, 8, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
}

.how-chip b {
  color: var(--spark);
}

.how-title {
  margin-bottom: 28px;
}

.req-title {
  margin-bottom: 24px;
}

.contact-lead {
  color: #a7a8ad;
  max-width: 28rem;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 18px 18px 16px;
  border-radius: 18px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Unbounded", sans-serif;
  background: linear-gradient(135deg, var(--spark), #ff8a4a);
  color: #1a0904;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.step p {
  color: var(--mute);
  font-size: 0.92rem;
}

.earn {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.earn .kicker {
  color: var(--spark-deep);
}

.earn .section-head p,
.earn .mute {
  color: #5b5a57;
}

.earn-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.pay {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(4.2rem, 10vw, 7.4rem);
  letter-spacing: -0.06em;
  line-height: 0.86;
  color: var(--ink);
}

.pay em {
  font-style: normal;
  color: var(--spark-deep);
}

.earn-note {
  margin: 22px 0 28px;
  max-width: 38rem;
  color: #4f4e4b;
  font-size: 1.05rem;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid rgba(7, 7, 8, 0.12);
  background: var(--paper-2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
}

.earn-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 430px;
  box-shadow: var(--shadow);
}

.earn-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.earn-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  background: var(--spark);
  color: #1a0904;
  font-family: "Unbounded", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 12px;
}

.req {
  background:
    linear-gradient(180deg, rgba(255, 83, 26, 0.05), transparent 28%),
    var(--ink);
}

.req-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.req-visual {
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
  position: relative;
}

.req-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.req-list {
  display: grid;
  gap: 12px;
}

.req-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 16px 16px;
  border-radius: 16px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}

.tick {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 83, 26, 0.16);
  color: var(--spark);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.req-item strong {
  display: block;
  margin-bottom: 2px;
}

.req-item p {
  color: var(--mute);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--ink-2);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--white);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
}

.faq-item button span {
  color: var(--spark);
  font-family: "Unbounded", sans-serif;
  transition: transform 0.3s var(--ease);
}

.faq-item.is-open button span {
  transform: rotate(45deg);
}

.faq-item .answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--mute);
}

.faq-item.is-open .answer {
  display: block;
}

.contact {
  background: var(--ink-2);
}

.contact-frame {
  width: min(720px, 100%);
  margin-inline: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e02020;
  background: #fff;
  padding: 28px 24px 8px;
}

.contact-frame iframe {
  display: block;
  width: 100%;
  min-height: 1140px;
  height: 1140px;
  border: 0;
  overflow: hidden;
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.footer {
  padding: 42px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-logo {
  height: 92px;
  width: auto;
  object-fit: contain;
}

.footer-meta {
  color: var(--data-2);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-meta a {
  color: var(--data-2);
}

.footer-meta a:hover {
  color: var(--spark);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.footer-nav a {
  color: var(--data-2);
  font-size: 0.88rem;
}

.footer-nav a:hover {
  color: var(--spark);
}

.footer-copy {
  color: #6d6e73;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

@keyframes stripeDrift {
  to {
    background-position: 180px 0;
  }
}

@keyframes stripeRun {
  to {
    background-position: 74px 0;
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header) 16px auto;
    background: rgba(16, 17, 20, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 10px 8px;
  }

  .header-cta {
    display: none;
  }

  .section-head,
  .how-layout,
  .earn-layout,
  .req-grid,
  .contact-top {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-visual,
  .req-visual,
  .earn-visual {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 80px;
  }

  .footer-logo {
    height: 76px;
  }

  .footer-brand {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .wrap,
  .header-inner {
    width: min(1180px, calc(100% - 28px));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding-bottom: 48px;
    min-height: auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 16vw, 4.2rem);
  }

  .pay {
    font-size: clamp(3.2rem, 18vw, 4.6rem);
  }

  .contact-frame {
    padding: 20px 16px 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
