:root {
  --yellow: #ffca13;
  --orange: #e89c23;
  --black: #0a0a0a;
  --ink: #111111;
  --muted: #6b6b6b;
  --line: rgba(255, 255, 255, 0.12);
  --card: #141414;
  --white: #f5f5f0;
  --text-soft: rgba(245, 245, 240, 0.78);
  --text-softer: rgba(245, 245, 240, 0.72);
  --text-faint: rgba(245, 245, 240, 0.68);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --surface-softer: rgba(255, 255, 255, 0.03);
  --surface-input: rgba(255, 255, 255, 0.04);
  --header-bg: rgba(10, 10, 10, 0.82);
  --section-muted-bg: #0f0f0f;
  --hero-top: #121212;
  --brands-marquee-bg: rgba(255, 255, 255, 0.02);
  --photo-bg: #1a1a1a;
  --photo-bg-alt: #252525;
  --modal-backdrop: rgba(0, 0, 0, 0.72);
  --modal-close-bg: rgba(0, 0, 0, 0.5);
  --grain-opacity: 0.04;
  --nav-link: rgba(245, 245, 240, 0.82);
  --on-yellow: #111111;
  --brand-blue: #1f56c6;
  --radius: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --font: "Archivo", system-ui, sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

[data-theme="light"] {
  --black: #f6f5f0;
  --ink: #ffffff;
  --muted: #666666;
  --line: rgba(17, 17, 17, 0.1);
  --card: #ffffff;
  --white: #111111;
  --text-soft: rgba(17, 17, 17, 0.78);
  --text-softer: rgba(17, 17, 17, 0.68);
  --text-faint: rgba(17, 17, 17, 0.62);
  --surface-soft: rgba(17, 17, 17, 0.04);
  --surface-softer: rgba(17, 17, 17, 0.03);
  --surface-input: rgba(17, 17, 17, 0.04);
  --header-bg: rgba(246, 245, 240, 0.92);
  --section-muted-bg: #eceae3;
  --hero-top: #fffdf6;
  --brands-marquee-bg: rgba(17, 17, 17, 0.03);
  --photo-bg: #e8e6df;
  --photo-bg-alt: #dedbd2;
  --modal-backdrop: rgba(17, 17, 17, 0.45);
  --modal-close-bg: rgba(255, 255, 255, 0.92);
  --grain-opacity: 0.025;
  --nav-link: rgba(17, 17, 17, 0.82);
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.brand {
  display: inline-grid;
  grid-template-columns: max-content;
  line-height: 1;
}
.brand-mark {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  line-height: 0.95;
  justify-self: start;
}
.brand-sub {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-blue);
  margin-top: 0.04rem;
  justify-self: center;
  margin-right: -0.14em;
  transform: translateX(-0.08em);
  line-height: 1;
}
.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--nav-link);
  transition: color 0.2s;
}
.nav a:hover {
  color: var(--yellow);
}
.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--yellow);
  color: #111111 !important;
  font-weight: 700;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.theme-toggle:hover {
  border-color: rgba(255, 202, 19, 0.45);
  color: var(--yellow);
}
.theme-toggle:focus-visible {
  outline: 2px solid rgba(255, 202, 19, 0.55);
  outline-offset: 2px;
}
.theme-icon {
  width: 18px;
  height: 18px;
  display: block;
}
.theme-icon--on {
  display: none;
}
[data-theme="light"] .theme-icon--off {
  display: none;
}
[data-theme="light"] .theme-icon--on {
  display: block;
}
[data-theme="light"] .theme-toggle {
  background: rgba(255, 202, 19, 0.18);
  border-color: rgba(255, 202, 19, 0.45);
  color: #9a7200;
  box-shadow: 0 0 0 3px rgba(255, 202, 19, 0.12);
}
.theme-toggle--mobile {
  display: none;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.55;
  transition:
    opacity 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.lang-btn:hover {
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.06);
}
.lang-btn.is-active {
  opacity: 1;
  background: rgba(255, 202, 19, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 202, 19, 0.35);
}
.lang-btn:focus-visible {
  outline: 2px solid rgba(255, 202, 19, 0.55);
  outline-offset: 2px;
}
[data-theme="light"] .lang-switch {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .lang-btn.is-active {
  background: rgba(255, 202, 19, 0.28);
}
.header-tools {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1rem 1.5rem;
  border-top: 1px solid var(--line);
}
.mobile-nav a {
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 202, 19, 0.18), transparent 35%),
    linear-gradient(180deg, var(--hero-top) 0%, var(--black) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 202, 19, 0.08), transparent 60%);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 1rem;
}
.eyebrow-light {
  color: var(--yellow);
}
.brand-mark--text {
  font-weight: 800;
  color: var(--yellow);
}
.brand-sub--text {
  font-weight: 800;
  color: var(--brand-blue);
}
.eyebrow .brand-mark--text {
  color: var(--yellow);
}
.about-grid h2 .brand-mark--text {
  color: var(--yellow);
}
.about-grid h2 .brand-sub--text {
  color: var(--brand-blue);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  max-width: 12ch;
}
.lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 46ch;
  margin: 0 0 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero-visual {
  width: 100%;
}
.hero-roster {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.hero-roster::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.88) 0%,
    rgba(8, 8, 8, 0.35) 55%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}
[data-theme="light"] .hero-roster::after {
  background: linear-gradient(
    to top,
    rgba(246, 245, 240, 0.96) 0%,
    rgba(246, 245, 240, 0.55) 55%,
    transparent 100%
  );
}
.hero-roster-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  display: block;
}
.hero-stats {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 0;
}
.stat-card {
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
}
[data-theme="light"] .stat-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 0, 0, 0.08);
}
.stat-card.accent {
  background: linear-gradient(145deg, rgba(255, 202, 19, 0.28), rgba(232, 156, 35, 0.14));
  border-color: rgba(255, 202, 19, 0.45);
}
[data-theme="light"] .stat-card.accent {
  background: linear-gradient(145deg, rgba(255, 202, 19, 0.42), rgba(255, 202, 19, 0.18));
}
.stat-card.wide {
  grid-column: 1 / -1;
  padding: 0.8rem 0.95rem;
}
.stat-card.wide p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-soft);
}
.stat-value {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}
.stat-label {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.35;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.2s,
    background 0.2s;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--yellow);
  color: var(--on-yellow);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--white);
}
.btn-lg {
  padding: 1rem 1.5rem;
}
.marquee {
  margin-top: 3.5rem;
  border-block: 1px solid var(--line);
  background: var(--yellow);
  color: var(--on-yellow);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  padding: 0.85rem 0;
  animation: marquee-scroll var(--marquee-duration, 28s) linear infinite;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  will-change: transform;
}
.marquee-set {
  display: flex;
  gap: 2.5rem;
  flex-shrink: 0;
  padding-right: 2.5rem;
}
@keyframes marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(var(--marquee-end, -50%), 0, 0);
  }
}

.section {
  padding: 5rem 0;
}
.section-dark {
  background: var(--ink);
}
.section-muted {
  background: var(--section-muted-bg);
}
.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}
.section-head p {
  color: var(--text-softer);
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-height: 220px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.service-card:hover {
  border-color: rgba(255, 202, 19, 0.45);
  transform: translateY(-3px);
}
.service-card.highlight {
  background: linear-gradient(160deg, rgba(255, 202, 19, 0.12), var(--card));
  border-color: rgba(255, 202, 19, 0.3);
}
.service-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--yellow);
  display: block;
  margin-bottom: 1rem;
}
.service-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}
.service-card p {
  margin: 0;
  color: var(--text-softer);
  font-size: 0.95rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.about-grid p {
  color: var(--text-soft);
}
.about-list {
  margin: 1.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}
.about-panel {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.about-panel h3 {
  margin: 0 0 1rem;
}
.about-panel dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}
.about-panel dt {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.25rem;
}
.about-panel dd {
  margin: 0;
  color: var(--text-soft);
}
.about-note {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: var(--mono);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.is-active {
  background: var(--yellow);
  color: var(--on-yellow);
  border-color: var(--yellow);
}
.search input {
  width: min(280px, 70vw);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-input);
  color: var(--white);
}
.search input::placeholder {
  color: var(--muted);
}
.search input:focus {
  outline: 2px solid rgba(255, 202, 19, 0.5);
  border-color: transparent;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.creator-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  color: inherit;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.creator-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 202, 19, 0.5);
  box-shadow: var(--shadow);
}
.creator-card.is-hidden {
  display: none;
}
.creator-photo-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--photo-bg);
}
.creator-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.creator-photo.placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--photo-bg), var(--photo-bg-alt));
}
.creator-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 9.5rem;
}
.creator-body h3 {
  margin: 0;
  font-size: 1.2rem;
}
.creator-body p {
  margin: 0;
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-faint);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.creator-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
}
.creator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.creator-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 202, 19, 0.12);
  color: var(--yellow);
}
.reach {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  flex-shrink: 0;
}
.platform-dots {
  display: flex;
  gap: 0.3rem;
}
.platform-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}
.platform-dot[data-p="twitch"] {
  background: #9146ff;
}
.platform-dot[data-p="youtube"] {
  background: #ff0000;
}
.platform-dot[data-p="instagram"] {
  background: #e1306c;
}
.platform-dot[data-p="tiktok"] {
  background: #25f4ee;
}
.platform-dot[data-p="twitter"] {
  background: #1da1f2;
}
.platform-dot[data-p="facebook"] {
  background: #1877f2;
}
.platform-dot[data-p="website"] {
  background: var(--yellow);
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.brands-grid span {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-softer);
  font-weight: 600;
  font-size: 0.88rem;
}

.section-head-center {
  text-align: center;
  margin-inline: auto;
}

.brands-marquee {
  margin-top: 2rem;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--brands-marquee-bg);
  padding: 1.5rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.brands-track {
  display: flex;
  width: max-content;
  animation: brands-scroll 75s linear infinite;
  will-change: transform;
}

.brands-set {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  flex-shrink: 0;
  padding-right: 1.25rem;
}

.brand-slide {
  flex: 0 0 auto;
  width: 168px;
  height: 72px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: #ffffff;
}

.brand-slide img {
  max-height: 40px;
  max-width: 136px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0 auto;
  transform-origin: center center;
}

@keyframes brands-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands-track,
  .marquee-track {
    animation: none;
  }
}

.site-footer .brand {
  margin-bottom: 0.35rem;
}
.site-footer .brand-sub {
  color: var(--brand-blue);
}

.footer-legal {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-softer);
}
.footer-legal strong {
  color: var(--yellow);
  font-weight: 600;
}

.cta {
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 202, 19, 0.15), transparent 40%), var(--ink);
}
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.cta p {
  margin: 0;
  color: var(--text-softer);
  max-width: 42ch;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: end;
}
.footer-inner p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-note {
  font-family: var(--mono);
  font-size: 0.72rem !important;
}

.creator-modal {
  width: min(920px, calc(100% - 1rem));
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: var(--card);
  color: var(--white);
  box-shadow: var(--shadow);
}
.creator-modal::backdrop {
  background: var(--modal-backdrop);
  backdrop-filter: blur(4px);
}
.modal-inner {
  position: relative;
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--modal-close-bg);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}
.modal-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}
.modal-media {
  background: #000;
  min-height: 320px;
  overflow: hidden;
}
.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.modal-body {
  padding: 1.5rem 1.5rem 1.75rem;
  overflow: auto;
  max-height: 80vh;
}
.modal-body h2 {
  margin: 0 0 0.75rem;
  font-size: 1.8rem;
}
.modal-body > p {
  color: var(--text-soft);
  margin: 0 0 1.25rem;
}
.modal-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 84px;
  max-width: 108px;
  padding: 0.8rem 0.65rem 0.7rem;
  border-radius: 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.platform-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 202, 19, 0.45);
  background: rgba(255, 202, 19, 0.08);
}
.platform-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.platform-link-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}
.platform-link-icon .platform-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}
.platform-link-icon .platform-icon--dark {
  display: block;
}
.platform-link-icon .platform-icon--light {
  display: none;
}
[data-theme="light"] .platform-link-icon .platform-icon--dark {
  display: none;
}
[data-theme="light"] .platform-link-icon .platform-icon--light {
  display: block;
}
.platform-link[data-p="twitch"] .platform-link-icon {
  color: #9146ff;
}
.platform-link[data-p="youtube"] .platform-link-icon {
  color: #ff0000;
}
.platform-link[data-p="facebook"] .platform-link-icon {
  color: #1877f2;
}
.platform-link[data-p="website"] .platform-link-icon {
  color: var(--yellow);
}
.platform-link-caption {
  font-size: 0.68rem;
  line-height: 1.25;
  text-align: center;
  color: var(--text-soft);
  font-weight: 600;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.modal-demo {
  padding: 1rem;
  border-radius: 12px;
  border: 1px dashed rgba(255, 202, 19, 0.35);
  background: rgba(255, 202, 19, 0.06);
}
.modal-demo h4 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
}
.modal-demo p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .header-tools {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  .mobile-nav.is-open {
    display: flex;
  }
  .hero-grid,
  .about-grid,
  .services-grid,
  .modal-layout {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 3rem;
  }
  .hero h1 {
    max-width: none;
  }
}
@media (max-width: 540px) {
  .hero-roster {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
  }
  .hero-roster::after {
    display: none;
  }
  .hero-roster-photo {
    aspect-ratio: 4 / 5;
    height: auto;
  }
  .hero-stats {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0.85rem;
    background: var(--surface-soft);
    border-top: 1px solid var(--line);
  }
  .stat-card {
    background: var(--surface-soft);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: var(--line);
  }
  [data-theme="light"] .stat-card {
    background: var(--surface-soft);
  }
  .stat-card.accent {
    background: linear-gradient(145deg, rgba(255, 202, 19, 0.18), rgba(232, 156, 35, 0.08));
    border-color: rgba(255, 202, 19, 0.35);
  }
}

/* Maintenance / preview gate */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html.maintenance-locked,
html.maintenance-locked body {
  overflow: hidden;
  height: 100%;
}

html.maintenance-locked body > *:not(#maintenance-gate) {
  display: none !important;
}

.maintenance-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 202, 19, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(31, 86, 198, 0.18), transparent 45%), var(--black);
}

html.maintenance-locked .maintenance-gate {
  display: grid;
}

.maintenance-gate[hidden] {
  display: none !important;
}

.maintenance-card {
  width: min(100%, 420px);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  text-align: center;
  box-shadow: var(--shadow);
}

.maintenance-brand {
  margin: 0 0 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.maintenance-brand span {
  color: var(--yellow);
}

.maintenance-card h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  letter-spacing: -0.02em;
}

.maintenance-copy {
  margin: 0 0 1.5rem;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.maintenance-form {
  display: grid;
  gap: 0.75rem;
}

.maintenance-form input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface-input);
  color: var(--white);
  font: inherit;
  font-size: 1rem;
}

.maintenance-form input:focus {
  outline: 2px solid rgba(255, 202, 19, 0.45);
  outline-offset: 1px;
}

.maintenance-form .btn {
  width: 100%;
  cursor: pointer;
}

.maintenance-error {
  margin: 0;
  color: #ff6b6b;
  font-size: 0.88rem;
}
