:root {
  color-scheme: dark;
  --bg: #070806;
  --surface: #10120e;
  --surface-2: #171a14;
  --text: #f3f5ef;
  --muted: #b8c0b1;
  --line: rgba(243, 245, 239, 0.13);
  --line-strong: rgba(243, 245, 239, 0.26);
  --accent: #b6ff4d;
  --accent-soft: rgba(182, 255, 77, 0.12);
  --silver: #d9dfd2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 8%, rgba(182, 255, 77, 0.13), transparent 25rem),
    radial-gradient(circle at 86% 18%, rgba(217, 223, 210, 0.11), transparent 22rem),
    linear-gradient(180deg, #070806 0%, #0c0f0a 48%, #050605 100%);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
  opacity: 0.42;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 6, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100dvh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(36px, 6vw, 76px) 0 clamp(40px, 6vw, 80px);
}

.hero-copy {
  display: grid;
  justify-items: start;
}

.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 78px;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 62ch;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.social-grid a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:active,
.social-grid a:active {
  transform: translateY(1px);
}

.button.primary {
  color: #10120e;
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.2);
}

.button.secondary,
.social-grid a {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--line);
}

.button:hover,
.button:focus-visible,
.social-grid a:hover,
.social-grid a:focus-visible {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.hero-media {
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--silver), #8fffd7);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: clamp(52px, 8vw, 98px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.stats div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px;
  background: rgba(14, 17, 12, 0.86);
}

.stats strong {
  font-size: 36px;
  line-height: 1;
}

.stats span,
.section-head p,
.product-types p,
.work-card p,
.proof-card p,
.review-copy p,
.review-list span,
.payment-copy p,
.payment-grid p,
.video-copy p,
.info-copy p,
.info-grid p,
.creator-copy p,
.steps-grid p {
  color: var(--muted);
}

.pro-streamers-band {
  display: grid;
  gap: 14px;
  margin: calc(clamp(52px, 8vw, 98px) * -0.58) 0 clamp(52px, 8vw, 98px);
  padding: 18px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pro-streamers-band[hidden] {
  display: none;
}

.pro-streamers-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pro-streamers-title {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pro-streamers-heading span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.pro-streamers-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.pro-streamers-marquee::before,
.pro-streamers-marquee::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 56px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 8, 6, 0.96), rgba(7, 8, 6, 0));
}

.pro-streamers-marquee::after {
  inset: 0 0 0 auto;
  background: linear-gradient(270deg, rgba(7, 8, 6, 0.96), rgba(7, 8, 6, 0));
}

.pro-streamers-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  min-width: max-content;
  animation: pro-streamers-marquee 14s linear infinite;
  will-change: transform;
}

.pro-streamers-marquee:hover .pro-streamers-track {
  animation-play-state: paused;
}

@keyframes pro-streamers-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 7px), 0, 0);
  }
}

.pro-streamer-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.pro-streamer-avatar[data-provider="twitch"] {
  border-color: rgba(168, 85, 247, 0.46);
}

.pro-streamer-avatar[data-provider="kick"] {
  border-color: rgba(182, 255, 77, 0.52);
}

.pro-streamer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: clamp(48px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

h2 {
  margin-bottom: 0;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head p:last-child {
  margin-top: 14px;
  font-size: 17px;
}

.info-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.creator-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.creator-copy p {
  max-width: 66ch;
  margin-top: 18px;
  font-size: 17px;
}

.creator-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.creator-facts article {
  min-height: 128px;
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 20px;
}

.creator-facts span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-facts strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 20px;
  line-height: 1.18;
}

.payment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.payment-copy p {
  margin-top: 18px;
  font-size: 17px;
}

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

.payment-grid article {
  min-height: 170px;
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 20px;
}

.payment-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.12;
}

.payment-grid p {
  margin-bottom: 0;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.video-copy p {
  margin-top: 18px;
  font-size: 17px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.info-copy p {
  margin-top: 18px;
  font-size: 17px;
}

.info-grid,
.steps-grid {
  display: grid;
  gap: 12px;
}

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

.info-grid article,
.steps-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 20px;
}

.info-grid span,
.steps-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.12;
}

.info-grid p,
.steps-grid p {
  margin-bottom: 0;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.proof-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.proof-card:hover,
.proof-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.065);
}

.proof-card:active {
  transform: translateY(1px);
}

.proof-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
  background: #050605;
}

.proof-card div {
  padding: 18px;
}

.proof-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.proof-card p {
  margin-bottom: 0;
}

.product-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-types article,
.work-card,
.review-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.product-types article {
  padding: 20px;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.1;
}

.product-types p,
.work-card p {
  margin-bottom: 0;
}

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

.work-card {
  overflow: hidden;
}

.work-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  background: #050605;
  border-bottom: 1px solid var(--line);
}

.work-card.featured img {
  aspect-ratio: 16 / 9;
}

.work-card div {
  padding: 18px;
}

.work-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.review-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.review-copy p {
  margin-top: 18px;
  font-size: 17px;
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-list div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.review-list span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-list strong {
  font-size: 17px;
  line-height: 1.35;
}

.contact-section {
  padding-bottom: 92px;
}

.legal-section {
  max-width: 860px;
  min-height: calc(100dvh - 72px);
  margin: 0 auto;
  padding-bottom: 92px;
}

.legal-section h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(44px, 6vw, 72px);
}

.legal-updated {
  margin-bottom: 34px;
  color: var(--muted);
  font-weight: 750;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content h2 {
  margin-top: 16px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.legal-content a {
  color: var(--accent);
  font-weight: 850;
}

.social-grid a img {
  width: 18px;
  height: 18px;
}

.site-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(182, 255, 77, 0.58);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .pro-streamers-track {
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .payment-section,
  .video-section,
  .info-section,
  .creator-section,
  .review-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .stats,
  .product-types,
  .payment-grid,
  .creator-facts,
  .proof-grid,
  .work-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pro-streamers-band {
    margin-top: -28px;
  }

  .work-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  main,
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .brand span {
    font-size: 15px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .stats strong {
    font-size: 30px;
  }

  .hero-lead,
  .payment-copy p,
  .video-copy p,
  .info-copy p,
  .creator-copy p,
  .review-copy p,
  .section-head p:last-child {
    font-size: 15px;
  }

  .stats,
  .product-types,
  .payment-grid,
  .creator-facts,
  .proof-grid,
  .work-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .pro-streamers-band {
    margin-top: -18px;
    gap: 12px;
  }

  .pro-streamers-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .pro-streamer-avatar {
    width: 52px;
    height: 52px;
  }

  .work-card.featured {
    grid-column: auto;
  }

  .button,
  .social-grid a {
    width: 100%;
  }
}
