@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #070708;
  --bg-soft: #101014;
  --bg-panel: #141217;
  --ink: #f8f4ee;
  --muted: #bbb4bc;
  --line: rgba(255, 255, 255, 0.14);
  --fuchsia: #ff2bd6;
  --orange: #ff5a1f;
  --lime: #b9ff20;
  --cyan: #00ecff;
  --red: #ff2348;
  --max: 1180px;
  --shadow-hot: 0 0 22px rgba(255, 43, 214, 0.34), 0 0 58px rgba(255, 90, 31, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 90, 31, 0.12) 0, transparent 22rem),
    linear-gradient(135deg, #070708 0%, #0c0b0e 38%, #120d10 100%);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::selection {
  color: #070708;
  background: var(--lime);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(7, 7, 8, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #0e0e12;
  isolation: isolate;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  background: linear-gradient(120deg, var(--lime), var(--cyan), var(--fuchsia), var(--orange), var(--lime));
  background-size: 300% 100%;
  filter: blur(12px);
  opacity: 0.88;
  animation: neonFlow 4.4s linear infinite;
}

.brand-mark span {
  color: var(--ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.36);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 24px);
  color: rgba(248, 244, 238, 0.78);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.top-nav a,
.nav-action,
.site-footer a {
  transition: color 180ms ease, text-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.top-nav a:hover,
.site-footer a:hover {
  color: var(--lime);
  text-shadow: 0 0 18px rgba(185, 255, 32, 0.5);
}

.nav-action {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(185, 255, 32, 0.62);
  border-radius: 4px;
  color: var(--lime);
  background: rgba(185, 255, 32, 0.08);
  box-shadow: 0 0 24px rgba(185, 255, 32, 0.18);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-action:hover {
  border-color: var(--fuchsia);
  color: var(--fuchsia);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: clamp(680px, 56.25vw, 92svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(80px, 10vw, 136px) clamp(20px, 5vw, 70px);
}

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

.hero-media {
  z-index: -3;
  background-image: url("assets/alice/hero-main.webp");
  background-position: 34% 42%;
  background-size: 136% auto;
  background-repeat: no-repeat;
  transform: scale(1.01);
  filter: saturate(1.08) contrast(1.05);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.96) 0%, rgba(7, 7, 8, 0.78) 38%, rgba(7, 7, 8, 0.18) 66%, rgba(7, 7, 8, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.1) 0%, rgba(7, 7, 8, 0.88) 100%);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(185, 255, 32, 0.38);
}

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

figure {
  margin: 0;
}

h1,
h2 {
  letter-spacing: 0;
}

.hero-title-wrap {
  position: relative;
  width: fit-content;
  isolation: isolate;
}

.hero-title-wrap::before {
  content: none;
}

h1 {
  max-width: 9ch;
  margin-bottom: 18px;
  background: linear-gradient(96deg, #fff7ef, var(--orange), var(--fuchsia), var(--lime), #fff7ef);
  background-size: 260% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(5.6rem, 18vw, 13rem);
  line-height: 0.78;
  text-transform: uppercase;
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.32))
    drop-shadow(0 0 14px rgba(255, 43, 214, 0.44))
    drop-shadow(0 0 24px rgba(255, 90, 31, 0.28));
  animation: textAura 8s ease-in-out infinite;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(248, 244, 238, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 650;
}

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

.button,
.contact-actions a,
.contact-actions button,
.email-pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 4px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.button-primary {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  color: #09090b;
  background: var(--lime);
  box-shadow: 0 0 26px rgba(185, 255, 32, 0.34);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -70%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: translateX(-62%);
  animation: sheen 3.8s ease-in-out infinite;
}

.button-ghost,
.contact-actions a,
.contact-actions button,
.email-pill {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.065);
}

.button-neon {
  position: relative;
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--ink);
  background: #0d0d12;
  box-shadow: var(--shadow-hot);
  isolation: isolate;
}

.button-neon::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(90deg, var(--orange), var(--fuchsia), var(--cyan), var(--lime), var(--orange));
  background-size: 260% 100%;
  filter: blur(10px);
  opacity: 0.72;
  animation: neonFlow 5s linear infinite;
}

.button:hover,
.contact-actions a:hover,
.contact-actions button:hover,
.email-pill:hover {
  border-color: rgba(185, 255, 32, 0.72);
  transform: translateY(-1px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span,
.signal-strip span {
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(7, 7, 8, 0.5);
  color: rgba(248, 244, 238, 0.82);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-meta span {
  padding: 8px 11px;
}

.hero-portals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(900px, 100%);
  margin-top: 24px;
}

.portal-card {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  padding: 18px;
  border: 2px solid rgba(185, 255, 32, 0.4);
  background:
    linear-gradient(135deg, rgba(255, 43, 214, 0.14), rgba(7, 7, 8, 0.78) 46%, rgba(185, 255, 32, 0.13)),
    rgba(7, 7, 8, 0.82);
  box-shadow:
    0 0 0 1px rgba(255, 43, 214, 0.18),
    0 0 42px rgba(185, 255, 32, 0.2),
    0 22px 70px rgba(0, 0, 0, 0.42);
  isolation: isolate;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.portal-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 43, 214, 0.38), transparent 35%),
    radial-gradient(circle at 78% 78%, rgba(185, 255, 32, 0.24), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(255, 90, 31, 0.2), transparent 42%);
  opacity: 0.98;
  filter: blur(8px) saturate(1.25);
  transition: transform 350ms ease, opacity 350ms ease;
}

.portal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.24) 42%, transparent 50%);
  mix-blend-mode: screen;
  opacity: 0.68;
  pointer-events: none;
  transform: translateX(-130%);
  transition: transform 650ms ease;
}

.portal-card:hover {
  border-color: rgba(255, 43, 214, 0.72);
  box-shadow:
    0 0 0 1px rgba(185, 255, 32, 0.26),
    0 0 58px rgba(255, 43, 214, 0.28),
    0 26px 82px rgba(0, 0, 0, 0.48);
  transform: translateY(-4px);
}

.portal-card:hover::after {
  transform: translateX(130%);
}

.portal-card:hover::before {
  opacity: 1;
  transform: scale(1.06);
}

.portal-card span {
  display: inline-flex;
  padding: 5px 7px;
  color: #050507;
  background: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(185, 255, 32, 0.55);
}

.portal-card strong {
  display: block;
  margin: 8px 0 6px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 43, 214, 0.26);
}

.portal-card small {
  color: rgba(248, 244, 238, 0.9);
  font-weight: 700;
}

.portal-collects {
  border-color: rgba(185, 255, 32, 0.66);
}

.portal-collects::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(185, 255, 32, 0.7), transparent 34%),
    radial-gradient(circle at 75% 22%, rgba(255, 90, 31, 0.48), transparent 32%),
    radial-gradient(circle at 72% 78%, rgba(255, 43, 214, 0.34), transparent 34%);
}

.portal-kickstarter {
  border-color: rgba(255, 90, 31, 0.58);
}

.portal-fanvue {
  border-color: rgba(255, 43, 214, 0.56);
}

.portal-fanvue::before {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 43, 214, 0.62), transparent 35%),
    radial-gradient(circle at 78% 82%, rgba(0, 236, 255, 0.36), transparent 32%);
}

.portal-kickstarter::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 90, 31, 0.68), transparent 35%),
    radial-gradient(circle at 75% 75%, rgba(185, 255, 32, 0.34), transparent 32%);
}

.motion-backdrop {
  position: relative;
  min-height: clamp(230px, 31vw, 520px);
  overflow: hidden;
  isolation: isolate;
  background: #050507;
  border-block: 1px solid rgba(255, 255, 255, 0.11);
}

.motion-backdrop::before,
.motion-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.motion-backdrop::before {
  background:
    radial-gradient(circle at 24% 34%, rgba(255, 90, 31, 0.26), transparent 34%),
    radial-gradient(circle at 74% 58%, rgba(255, 43, 214, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(7, 7, 8, 0.62), rgba(7, 7, 8, 0.03), rgba(7, 7, 8, 0.66));
}

.motion-backdrop::after {
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.01), rgba(7, 7, 8, 0.42)),
    linear-gradient(90deg, transparent, rgba(185, 255, 32, 0.12), transparent);
  mix-blend-mode: screen;
}

.motion-backdrop-video {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  object-fit: cover;
  filter: blur(5px) saturate(1.7) contrast(1.16) brightness(1.06);
  transform: scale(1.025);
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 24px clamp(18px, 4vw, 52px);
  background: linear-gradient(90deg, rgba(255, 90, 31, 0.16), rgba(255, 43, 214, 0.12), rgba(185, 255, 32, 0.12));
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-strip span {
  padding: 8px 12px;
  background: rgba(7, 7, 8, 0.72);
}

.signal-strip .signal-hot {
  border-color: rgba(185, 255, 32, 0.78);
  background: linear-gradient(135deg, rgba(185, 255, 32, 0.98), rgba(255, 90, 31, 0.92) 48%, rgba(255, 43, 214, 0.9));
  color: #050507;
  box-shadow:
    0 0 24px rgba(185, 255, 32, 0.46),
    0 0 38px rgba(255, 43, 214, 0.32);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

h2 {
  margin-bottom: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.08;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p {
  margin-bottom: 0;
  color: rgba(248, 244, 238, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  font-weight: 560;
}

.vibe-note {
  margin-top: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 43, 214, 0.28);
  background:
    linear-gradient(120deg, rgba(255, 90, 31, 0.14), rgba(255, 43, 214, 0.08), rgba(185, 255, 32, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 34px rgba(255, 43, 214, 0.12);
}

.vibe-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.9;
  text-transform: uppercase;
  filter: drop-shadow(0 0 12px rgba(185, 255, 32, 0.24));
}

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

.proof-card,
.visual-card,
.service-card,
.gallery-group,
.product-panel,
.contact-shell,
.reel-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.proof-card,
.visual-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  cursor: zoom-in;
}

.proof-card:focus-visible,
.visual-card:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.proof-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.proof-card:hover img,
.visual-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.proof-large {
  grid-column: span 2;
  grid-row: span 2;
}

.proof-large img {
  min-height: 560px;
}

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

.service-card {
  position: relative;
  min-height: 260px;
  padding: clamp(20px, 3vw, 30px);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--fuchsia), var(--lime));
}

.service-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--lime);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.8rem;
  line-height: 0.82;
  text-shadow: 0 0 20px rgba(185, 255, 32, 0.28);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 600;
}

.service-card a {
  color: var(--lime);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.service-card-wide {
  grid-column: 1 / -1;
  min-height: 190px;
}

.service-card-featured {
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.18), rgba(255, 43, 214, 0.12), rgba(185, 255, 32, 0.1)),
    rgba(255, 255, 255, 0.055);
  border-color: rgba(185, 255, 32, 0.28);
}

.service-card-featured h3 {
  max-width: 10ch;
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.82;
  text-shadow: 0 0 24px rgba(255, 43, 214, 0.26), 0 0 34px rgba(185, 255, 32, 0.18);
  text-transform: uppercase;
}

.service-card-featured p {
  max-width: 900px;
  font-size: 1.02rem;
}

.collects-section,
.fanvue-section {
  width: min(1320px, calc(100% - 40px));
}

.collects-section {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 72px);
  border: 2px solid rgba(185, 255, 32, 0.28);
  background:
    radial-gradient(circle at 10% 12%, rgba(185, 255, 32, 0.22), transparent 30%),
    radial-gradient(circle at 76% 18%, rgba(255, 43, 214, 0.22), transparent 28%),
    radial-gradient(circle at 24% 86%, rgba(255, 90, 31, 0.24), transparent 32%),
    linear-gradient(135deg, #170910, #050507 48%, #121b09);
  box-shadow:
    0 0 0 1px rgba(255, 43, 214, 0.15),
    0 0 70px rgba(185, 255, 32, 0.15),
    0 28px 100px rgba(0, 0, 0, 0.38);
}

.collects-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.08) 42%, transparent 50%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.collects-section > * {
  position: relative;
  z-index: 1;
}

.section-heading-dark {
  margin-bottom: clamp(24px, 4vw, 42px);
}

.collects-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.collects-copy {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(185, 255, 32, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(7, 7, 8, 0.5)),
    rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 0 42px rgba(255, 43, 214, 0.08);
}

.collects-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(185, 255, 32, 0.72);
  background: var(--lime);
  color: #050507;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(185, 255, 32, 0.5);
}

.collects-copy p {
  color: rgba(248, 244, 238, 0.84);
  font-weight: 650;
}

.collects-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.collects-hero-shot {
  display: block;
  min-height: 360px;
  overflow: hidden;
  border: 2px solid rgba(255, 90, 31, 0.34);
  box-shadow:
    0 0 44px rgba(255, 90, 31, 0.18),
    0 24px 88px rgba(0, 0, 0, 0.36);
}

.collects-hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.collects-hero-shot:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.collects-tab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.collects-tab {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(185, 255, 32, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.14), rgba(255, 43, 214, 0.08), rgba(185, 255, 32, 0.08)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 26px rgba(255, 43, 214, 0.1);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.collects-tab:hover {
  border-color: rgba(185, 255, 32, 0.55);
  box-shadow: 0 0 36px rgba(185, 255, 32, 0.18), 0 20px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

.collects-tab:first-child {
  border-color: rgba(185, 255, 32, 0.58);
  box-shadow:
    0 0 0 1px rgba(185, 255, 32, 0.18),
    0 0 40px rgba(185, 255, 32, 0.18);
}

.collects-tab span {
  display: inline-flex;
  padding: 4px 6px;
  background: var(--orange);
  color: #050507;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255, 90, 31, 0.42);
}

.collects-tab:first-child span {
  background: var(--lime);
  box-shadow: 0 0 18px rgba(185, 255, 32, 0.46);
}

.collects-tab strong {
  display: block;
  margin: 8px 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 43, 214, 0.24);
}

.collects-tab small {
  color: rgba(248, 244, 238, 0.86);
  font-weight: 700;
}

.collects-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 18px;
}

.collects-gallery .visual-card {
  aspect-ratio: 4 / 5;
}

.collects-gallery .wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.fanvue-section {
  padding-top: 0;
}

.fanvue-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 43, 214, 0.3), transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(0, 236, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #160710, #070708 58%, #121414);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.fanvue-copy p:not(.section-kicker) {
  color: rgba(248, 244, 238, 0.82);
  font-size: 1.05rem;
  font-weight: 650;
}

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

.fanvue-main {
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}

.fanvue-collage .visual-card:not(.fanvue-main) {
  aspect-ratio: 1 / 1;
}

.fanvue-collage-duo {
  align-items: stretch;
}

.fanvue-collage-duo .fanvue-main {
  grid-row: auto;
  aspect-ratio: 4 / 5;
}

.fanvue-collage-duo .visual-card:not(.fanvue-main) {
  aspect-ratio: 4 / 5;
}

.fanvue-collage-duo .visual-card img {
  object-position: 50% 34%;
}

.showcase-stack {
  display: grid;
  gap: 18px;
}

.gallery-group {
  max-width: 100%;
  overflow: hidden;
  padding: clamp(14px, 2vw, 18px);
  background:
    linear-gradient(130deg, rgba(255, 90, 31, 0.08), rgba(255, 43, 214, 0.05), rgba(185, 255, 32, 0.045)),
    rgba(255, 255, 255, 0.045);
}

.gallery-group h3 {
  margin-bottom: 14px;
  color: rgba(248, 244, 238, 0.94);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  align-items: stretch;
}

.visual-grid-cars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-grid-pair {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-card {
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 5;
  background: rgba(7, 7, 8, 0.42);
}

.visual-card.wide {
  grid-column: auto;
  aspect-ratio: 4 / 5;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
  align-items: start;
}

.reel-card {
  grid-column: span 4;
  aspect-ratio: 9 / 16;
  min-height: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 43, 214, 0.12), rgba(185, 255, 32, 0.05)),
    rgba(255, 255, 255, 0.055);
}

.reel-card-portrait {
  grid-column: span 4;
  aspect-ratio: 9 / 16;
}

.reel-card-landscape {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.reel-card-cinema {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.reel-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #050507;
}

.product-panel,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(22px, 5vw, 68px);
  align-items: center;
  padding: clamp(24px, 5vw, 46px);
  background:
    linear-gradient(120deg, rgba(255, 90, 31, 0.16), rgba(255, 43, 214, 0.08), rgba(185, 255, 32, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.product-panel p,
.contact-shell p {
  margin-bottom: 0;
  color: rgba(248, 244, 238, 0.78);
  font-weight: 600;
}

.contact-actions {
  justify-content: flex-start;
}

.email-pill {
  max-width: 100%;
  text-transform: none;
}

.email-pill span {
  overflow-wrap: anywhere;
}

.email-pill strong {
  color: var(--lime);
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 54px);
  color: rgba(248, 244, 238, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 50;
  max-width: calc(100% - 32px);
  padding: 12px 16px;
  border: 1px solid rgba(185, 255, 32, 0.45);
  border-radius: 4px;
  color: var(--lime);
  background: rgba(7, 7, 8, 0.9);
  box-shadow: 0 0 28px rgba(185, 255, 32, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-weight: 900;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.is-lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(3, 3, 5, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: min(100%, 1180px);
  max-height: 88svh;
  object-fit: contain;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.62), 0 0 40px rgba(255, 43, 214, 0.14);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(185, 255, 32, 0.54);
  border-radius: 4px;
  color: var(--lime);
  background: rgba(7, 7, 8, 0.82);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lightbox-close:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

@keyframes neonFlow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 300% 50%;
  }
}

@keyframes textAura {
  0%,
  100% {
    background-position: 0% 50%;
    filter:
      drop-shadow(0 0 4px rgba(255, 255, 255, 0.28))
      drop-shadow(0 0 14px rgba(255, 43, 214, 0.38))
      drop-shadow(0 0 24px rgba(255, 90, 31, 0.24));
  }

  50% {
    background-position: 100% 50%;
    filter:
      drop-shadow(0 0 5px rgba(255, 255, 255, 0.32))
      drop-shadow(0 0 16px rgba(185, 255, 32, 0.34))
      drop-shadow(0 0 26px rgba(0, 236, 255, 0.24));
  }
}

@keyframes sheen {
  0%,
  38% {
    transform: translateX(-62%);
  }

  64%,
  100% {
    transform: translateX(62%);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-media {
    background-position: 58% center;
    background-size: auto 100%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 7, 8, 0.96), rgba(7, 7, 8, 0.68), rgba(7, 7, 8, 0.34)),
      linear-gradient(180deg, rgba(7, 7, 8, 0.16), rgba(7, 7, 8, 0.92));
  }

  .section-heading,
  .about-layout,
  .product-panel,
  .contact-shell,
  .collects-layout,
  .fanvue-shell {
    grid-template-columns: 1fr;
  }

  .hero-portals,
  .collects-tab-grid {
    grid-template-columns: 1fr;
  }

  .collects-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .reel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reel-card,
  .reel-card-portrait,
  .reel-card-landscape,
  .reel-card-cinema {
    grid-column: auto;
  }

  .visual-grid,
  .visual-grid-cars,
  .visual-grid-pair {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    gap: 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .nav-action {
    min-height: 40px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 70px;
    padding-bottom: 74px;
  }

  .hero-media {
    background-position: 60% center;
    background-size: auto 100%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 7, 8, 0.96), rgba(7, 7, 8, 0.72), rgba(7, 7, 8, 0.46)),
      linear-gradient(180deg, rgba(7, 7, 8, 0.2), rgba(7, 7, 8, 0.95));
  }

  h1 {
    font-size: clamp(5rem, 26vw, 7.5rem);
  }

  h2 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .button,
  .contact-actions a,
  .contact-actions button,
  .email-pill {
    width: 100%;
    justify-content: center;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 58px 0;
  }

  .proof-grid,
  .service-grid,
  .reel-grid,
  .visual-grid,
  .visual-grid-cars,
  .visual-grid-pair,
  .collects-gallery,
  .fanvue-collage {
    grid-template-columns: 1fr;
  }

  .collects-section,
  .fanvue-section {
    width: min(100% - 28px, 1320px);
  }

  .collects-section {
    padding: 28px 14px;
  }

  .collects-hero-shot {
    min-height: 260px;
  }

  .collects-gallery .wide {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .fanvue-shell {
    padding: 22px;
  }

  .motion-backdrop {
    min-height: 220px;
  }

  .proof-large,
  .visual-card.wide,
  .reel-card,
  .reel-card-portrait,
  .reel-card-landscape {
    grid-column: auto;
    grid-row: auto;
  }

  .reel-card-portrait {
    width: min(100%, 430px);
    justify-self: center;
  }

  .proof-card,
  .visual-card,
  .visual-card:not(.wide),
  .visual-card.wide {
    aspect-ratio: 4 / 5;
  }

  .proof-large img,
  .visual-card img {
    min-height: 0;
  }

  .service-card {
    min-height: 230px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
