/* ═══════════════════════════════════════════════════════════════
   LUCID LIVESTREAM — TikTok Creator Network
   Theme: Luminous, dreamy, clarity
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Logo v2 — black field, violet aura, electric cyan core, chrome type */
  --lucid-bg: #020204;
  --lucid-surface: #0c0a12;
  --lucid-surface-elevated: #14121c;
  --lucid-border: rgba(168, 85, 247, 0.14);
  --lucid-text: #ffffff;
  --lucid-text-muted: #9ca3af;
  /* Primary brand gradient anchors */
  --lucid-purple: #a855f7;
  --lucid-purple-soft: rgba(168, 85, 247, 0.22);
  --lucid-cyan: #06b6d4;
  --lucid-cyan-soft: rgba(6, 182, 212, 0.28);
  /* Interactive highlight — cyan (logo inner glow) */
  --lucid-accent: #22d3ee;
  --lucid-accent-soft: rgba(34, 211, 238, 0.22);
  --lucid-glow: rgba(168, 85, 247, 0.5);
  --lucid-sky: #38bdf8;
  --lucid-sky-soft: rgba(56, 189, 248, 0.22);
  --lucid-powder: #7dd3fc;
  --lucid-powder-soft: rgba(125, 211, 252, 0.2);
  --lucid-azure: #06b6d4;
  --lucid-azure-soft: rgba(6, 182, 212, 0.2);
  /* Aura accents */
  --lucid-magenta: #d946ef;
  --lucid-magenta-soft: rgba(217, 70, 239, 0.16);
  --lucid-dream-pink: #e9d5ff;
  --lucid-dream-pink-soft: rgba(233, 213, 255, 0.16);
  --lucid-periwinkle: #c4b5fd;
  --lucid-mint: #06b6d4;
  --lucid-mint-soft: rgba(6, 182, 212, 0.18);
  --lucid-gold: #ddd6fe;
  --lucid-gold-soft: rgba(221, 214, 254, 0.14);
  /* Ambient orbs — steel + deep violet */
  --lucid-orb-steel: #6b7280;
  --lucid-orb-pearl: #d1d5db;
  --lucid-orb-plum: #581c87;
  /* Lucida — the L U C I D font: clear, readable, classic */
  --font-display: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  --font-body: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--lucid-text);
  background: var(--lucid-bg);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Glow orbs — ambient background, electric blue prominence */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.glow-orb--1 {
  width: 600px;
  height: 600px;
  background: var(--lucid-accent);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.glow-orb--2 {
  width: 400px;
  height: 400px;
  background: var(--lucid-cyan);
  bottom: 20%;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

.glow-orb--3 {
  width: 300px;
  height: 300px;
  background: var(--lucid-sky);
  bottom: -100px;
  right: 20%;
  animation: float 18s ease-in-out infinite 2s;
}

.glow-orb--4 {
  width: 340px;
  height: 340px;
  background: var(--lucid-orb-steel);
  top: 35%;
  left: 5%;
  animation: float 22s ease-in-out infinite 1s;
}

.glow-orb--5 {
  width: 280px;
  height: 280px;
  background: var(--lucid-orb-pearl);
  top: 8%;
  left: 25%;
  animation: float 24s ease-in-out infinite reverse 4s;
}

.glow-orb--6 {
  width: 380px;
  height: 380px;
  background: var(--lucid-purple);
  top: 45%;
  right: 8%;
  animation: float 21s ease-in-out infinite 3s;
}

.glow-orb--7 {
  width: 320px;
  height: 320px;
  background: var(--lucid-orb-plum);
  bottom: 35%;
  right: 35%;
  animation: float 26s ease-in-out infinite reverse 5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Stars & sparkle — cosmic overlay */
.sparkle__stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, var(--lucid-powder), transparent),
    radial-gradient(2px 2px at 40px 70px, var(--lucid-accent), transparent),
    radial-gradient(2px 2px at 50px 160px, var(--lucid-sky), transparent),
    radial-gradient(2px 2px at 90px 40px, var(--lucid-mint), transparent),
    radial-gradient(2px 2px at 130px 80px, var(--lucid-dream-pink), transparent),
    radial-gradient(2px 2px at 180px 120px, var(--lucid-powder), transparent),
    radial-gradient(2px 2px at 250px 50px, var(--lucid-accent), transparent);
  background-size: 280px 280px;
  opacity: 0.55;
  animation: sparkleTwinkle 5s ease-in-out infinite;
}
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.85; }
}

@keyframes sparkleTwinkleMobile {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.34; }
}

.sparkle__particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.sparkle__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--lucid-accent);
  border-radius: 50%;
  opacity: 0.35;
  animation: sparkleDrift 22s linear infinite;
}
.sparkle__particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 18s; }
.sparkle__particle:nth-child(2) { left: 85%; top: 15%; animation-delay: -5s; animation-duration: 24s; }
.sparkle__particle:nth-child(3) { left: 30%; top: 80%; animation-delay: -10s; animation-duration: 16s; }
.sparkle__particle:nth-child(4) { left: 70%; top: 70%; animation-delay: -3s; animation-duration: 26s; }
.sparkle__particle:nth-child(5) { left: 50%; top: 10%; animation-delay: -8s; animation-duration: 20s; }
.sparkle__particle:nth-child(6) { left: 15%; top: 60%; animation-delay: -12s; animation-duration: 21s; }
.sparkle__particle:nth-child(7) { left: 90%; top: 50%; animation-delay: -2s; animation-duration: 17s; }
.sparkle__particle:nth-child(8) { left: 45%; top: 85%; animation-delay: -7s; animation-duration: 23s; }
@keyframes sparkleDrift {
  0% { transform: translate(0, 0) scale(1); opacity: 0.35; }
  25% { transform: translate(30px, -50px) scale(1.2); opacity: 0.55; }
  50% { transform: translate(-20px, 40px) scale(0.8); opacity: 0.25; }
  75% { transform: translate(40px, 20px) scale(1.1); opacity: 0.45; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
}

@keyframes sparkleDriftMobile {
  0% { transform: translate(0, 0) scale(1); opacity: 0.12; }
  25% { transform: translate(30px, -50px) scale(1.2); opacity: 0.22; }
  50% { transform: translate(-20px, 40px) scale(0.8); opacity: 0.1; }
  75% { transform: translate(40px, 20px) scale(1.1); opacity: 0.18; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.12; }
}

/* Navigation — epic centered LUCID branding */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.25rem 2rem;
  background: rgba(2, 2, 6, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lucid-border);
  transition: background 0.3s ease;
}

.nav__logo {
  text-decoration: none;
  color: var(--lucid-text);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  justify-self: center;
}

.nav__logo-symbol {
  display: block;
  height: 3.15rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 0;
}

.nav__logo-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08rem;
}

/* Lockup matches mainlogov2: wide chrome “LUCID” + thin caps “LIVESTREAM” */
.nav__logo-text {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 2.45rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  line-height: 0.92;
  text-transform: uppercase;
  padding-left: 0.2em;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f1f5f9 22%,
    #94a3b8 58%,
    #475569 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.9));
}

.nav__logo-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.56rem;
  font-weight: 300;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: #d1d5db;
  font-variant: normal;
  padding-left: 0.52em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links--left { justify-content: flex-start; }
.nav__links--right { justify-content: flex-end; }

.nav__links a {
  color: var(--lucid-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--lucid-text);
}

.nav__cta {
  color: var(--lucid-text) !important;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(168, 85, 247, 0.55);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.08);
}

.nav__cta:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.22), rgba(6, 182, 212, 0.14));
  border-color: rgba(168, 85, 247, 0.85);
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.2), 0 0 20px rgba(6, 182, 212, 0.12);
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--lucid-text);
  border-radius: 1px;
}

/* Main content wrapper */
main {
  position: relative;
  z-index: 1;
}

.announcement {
  position: relative;
  z-index: 1;
  margin-top: 11rem;
  padding: 1rem 2rem 0;
}

.announcement--hidden {
  display: none;
}

.announcement__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lucid-text);
  background: linear-gradient(180deg, rgba(18, 14, 28, 0.94), rgba(8, 6, 14, 0.9));
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-full);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22), 0 0 28px rgba(168, 85, 247, 0.1), 0 0 20px rgba(6, 182, 212, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.announcement__inner strong {
  color: var(--lucid-accent);
  font-weight: 600;
}

/* Hero */
.hero {
  min-height: clamp(40rem, 84vh, 52rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 8rem 2rem 2.25rem;
}

@supports (min-height: 100lvh) {
  body {
    min-height: 100lvh;
  }

  .hero {
    min-height: clamp(40rem, 84lvh, 52rem);
  }
}

.hero__badge {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-variant: small-caps;
  letter-spacing: 0.2em;
  color: var(--lucid-accent);
  border: 1px solid var(--lucid-accent-soft);
  border-radius: var(--radius-full);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.hero__title-line {
  display: block;
}

.hero__title-line--word {
  min-height: 1.15em;
  overflow: visible;
}

.hero__title-line--word.is-animating {
  overflow: hidden;
}

.hero__title-word {
  display: inline-block;
}

.hero__title-word--candidate {
  font-style: italic;
}

.hero__title-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(70%);
  animation: heroDreamLetterIn 220ms ease forwards;
}

.hero__title-bang {
  display: inline-block;
  margin-left: 0.08em;
  color: #ffffff;
  opacity: 0;
  transform-origin: 35% 15%;
  transform: translateY(-38%) rotate(-88deg) scale(0.7);
  animation: heroBangFlopIn 420ms cubic-bezier(0.2, 0.85, 0.24, 1) forwards;
}

.hero__title-word--accent {
  color: var(--lucid-purple);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  text-shadow:
    0 0 50px rgba(168, 85, 247, 0.55),
    0 0 90px rgba(6, 182, 212, 0.22);
}

.hero__title-word--pulse {
  animation: heroDreamGlowPulseOnce 1.1s ease-out 1;
}

.hero__title-word.is-scroll-out {
  animation: heroWordScrollOut 260ms ease forwards;
}

.hero__title-word.is-scroll-in {
  animation: heroWordScrollIn 260ms ease forwards;
}

.hero__subtitle {
  max-width: 520px;
  margin: 0 0 2.5rem;
  font-size: 1.15rem;
  color: var(--lucid-text-muted);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero__cta-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}

.hero__cta-hint {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0 0.25rem;
  max-width: 18rem;
  font-size: 0.84rem;
  line-height: 1.35;
  color: var(--lucid-text-muted);
  text-align: left;
}

.hero__cta-hint-mark {
  flex-shrink: 0;
  width: 3px;
  height: 2.1rem;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--lucid-purple), var(--lucid-cyan));
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.45), 0 0 10px rgba(6, 182, 212, 0.35);
  animation: heroCtaHintMark 2.4s ease-in-out infinite;
}

.hero__cta-hint-text {
  text-wrap: balance;
}

@keyframes heroApplyGlowPulse {
  0%,
  100% {
    box-shadow:
      0 0 28px rgba(168, 85, 247, 0.38),
      0 0 40px rgba(6, 182, 212, 0.22),
      0 4px 20px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow:
      0 0 44px rgba(168, 85, 247, 0.52),
      0 0 56px rgba(6, 182, 212, 0.32),
      0 6px 24px rgba(0, 0, 0, 0.22);
  }
}

@keyframes heroCtaHintMark {
  0%,
  100% {
    opacity: 0.85;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.15);
  }
}

.hero__apply-btn {
  animation: heroApplyGlowPulse 2.8s ease-in-out infinite;
}

.hero__apply-btn:hover {
  animation: none;
  box-shadow:
    0 0 52px rgba(168, 85, 247, 0.45),
    0 0 72px rgba(6, 182, 212, 0.28);
}

@media (min-width: 769px) {
  .hero__cta-cluster {
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 1rem;
  }

  .hero__cta-hint {
    max-width: 11.5rem;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__apply-btn {
    animation: none;
  }

  .hero__cta-hint-mark {
    animation: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--lucid-purple) 0%, var(--lucid-cyan) 100%);
  color: #fff;
  box-shadow:
    0 0 36px rgba(168, 85, 247, 0.38),
    0 0 28px rgba(6, 182, 212, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 0 48px rgba(168, 85, 247, 0.5),
    0 0 40px rgba(6, 182, 212, 0.38);
}

.btn--ghost {
  background: transparent;
  color: var(--lucid-text);
  border: 1px solid var(--lucid-border);
}

.btn--ghost:hover {
  border-color: var(--lucid-text-muted);
  background: var(--lucid-surface-elevated);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.btn:disabled:hover {
  transform: none;
  box-shadow: 0 0 40px var(--lucid-accent-soft);
}

.hero__stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  position: relative;
  text-align: center;
}

.stat--obscured {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.stat--obscured .stat__value,
.stat--obscured .stat__label {
  filter: blur(7px);
  user-select: none;
}

.stat--obscured::after {
  content: "Coming soon";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--lucid-border);
  background: rgba(8, 6, 16, 0.82);
  color: var(--lucid-text);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--lucid-accent);
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--lucid-text-muted);
  font-variant: small-caps;
  letter-spacing: 0.1em;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header__tag {
  display: inline-block;
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
  font-variant: small-caps;
  letter-spacing: 0.2em;
  color: var(--lucid-accent);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.section-header__desc {
  max-width: 480px;
  margin: 0 auto;
  color: var(--lucid-text-muted);
  font-size: 1rem;
}

/* Creators section */
.creators {
  padding: 6rem 2rem;
}

.creators__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
/* Staggered 5-card layout: row 1 = 3 cards, row 2 = 2 cards centered */
.creator-card:nth-child(4) { grid-column: 1; }
.creator-card:nth-child(5) { grid-column: 3; }

.creator-card {
  background: var(--lucid-surface);
  border: 1px solid var(--lucid-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.creator-card:hover {
  background: var(--lucid-surface-elevated);
  border-color: var(--lucid-accent-soft);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.creator-card__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lucid-accent-soft), var(--lucid-gold-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--lucid-accent);
  overflow: hidden;
}

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

.creators__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--lucid-text-muted);
}

.creator-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 0.25rem;
}

.creator-card__handle {
  font-size: 0.9rem;
  color: var(--lucid-accent);
  margin: 0 0 0.5rem;
}

.creator-card__bio {
  font-size: 0.9rem;
  color: var(--lucid-text-muted);
  margin: 0;
}

.management-team {
  padding: 2rem 2rem 6rem;
}

.management-team__layout {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.management-team__lead {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Sort 2+ managers: horizontal strip + arrows (peek of next card = obvious overflow) */
.management-team__compact {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.management-team__compact--scrollable .management-team__strip-hint {
  color: var(--lucid-accent);
}

.management-team__strip-shell {
  position: relative;
  border-radius: var(--radius-lg);
  margin: 0 -0.25rem;
}

.management-team__strip {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 0.35rem 0.25rem 0.85rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(6, 182, 212, 0.35) transparent;
}

.management-team__strip::-webkit-scrollbar {
  height: 6px;
}

.management-team__strip::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.35);
  border-radius: 999px;
}

.management-team__strip:focus {
  outline: none;
}

.management-team__strip:focus-visible {
  outline: 2px solid var(--lucid-accent-soft);
  outline-offset: 4px;
}

.management-team__strip .management-card--compact {
  flex: 0 0 min(320px, calc(100vw - 3.5rem));
  max-width: 360px;
  scroll-snap-align: start;
  margin: 0;
}

.management-team__strip-edge {
  position: absolute;
  top: 0;
  bottom: 0.85rem;
  width: 56px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.management-team__strip-edge--start {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 8, 16, 0.97) 0%, rgba(10, 8, 16, 0.65) 45%, transparent 100%);
}

.management-team__strip-edge--end {
  right: 0;
  background: linear-gradient(270deg, rgba(10, 8, 16, 0.97) 0%, rgba(10, 8, 16, 0.65) 45%, transparent 100%);
}

.management-team__strip-shell.show-fade-left .management-team__strip-edge--start {
  opacity: 1;
}

.management-team__strip-shell.show-fade-right .management-team__strip-edge--end {
  opacity: 1;
}

.management-team__strip-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.25rem;
  padding: 0 0.5rem 0.25rem;
  flex-wrap: wrap;
}

.management-team__arrow {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.1);
  color: var(--lucid-accent);
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.management-team__arrow:hover:not(:disabled) {
  background: rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.65);
  color: var(--lucid-text);
}

.management-team__arrow:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.management-team__strip-hint {
  flex: 1;
  min-width: 12rem;
  max-width: 28rem;
  margin: 0;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--lucid-text-muted);
}

.management-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--lucid-border);
  background: rgba(15, 11, 24, 0.88);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.management-card:hover {
  transform: translateY(-3px);
  border-color: var(--lucid-accent-soft);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.management-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lucid-accent-soft), var(--lucid-gold-soft));
  color: var(--lucid-text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

.management-card__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.management-card__name {
  margin: 0 0 0.15rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
}

.management-card__title {
  margin: 0;
  color: var(--lucid-text);
  font-size: 0.92rem;
}

.management-card__location {
  margin: 0.5rem 0 0;
  color: var(--lucid-text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.management-card__location-pin {
  margin-right: 0.2rem;
}

.management-card__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  align-self: center;
  width: max-content;
  gap: 0.35rem;
  margin: 0.5rem 0 0;
  min-height: 1.85rem;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(6, 182, 212, 0.28) transparent;
  padding-bottom: 3px;
}

.management-card__tags::-webkit-scrollbar {
  height: 3px;
}

.management-card__tags::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.35);
  border-radius: 999px;
}

.management-card__tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 500;
  white-space: nowrap;
  color: var(--lucid-text-muted);
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: rgba(120, 100, 180, 0.12);
}

.management-card--lead {
  padding: 1.85rem 1.75rem;
  gap: 1.25rem;
}

.management-card--lead .management-card__avatar {
  width: 96px;
  height: 96px;
  font-size: 1.35rem;
}

.management-card--lead .management-card__name {
  font-size: 1.38rem;
}

.management-card--lead .management-card__title {
  font-size: 1rem;
}

.management-card--lead .management-card__location {
  font-size: 0.95rem;
}

.management-card--lead .management-card__tag {
  font-size: 0.82rem;
  padding: 0.32rem 0.72rem;
}

.management-card--compact {
  padding: 1.2rem 1.15rem;
  gap: 0.85rem;
}

.management-card--compact .management-card__avatar {
  width: 60px;
  height: 60px;
  font-size: 1rem;
}

.management-card--compact .management-card__name {
  font-size: 1.05rem;
}

.management-card--compact .management-card__title {
  font-size: 0.85rem;
}

.management-card--compact .management-card__location {
  font-size: 0.82rem;
}

.management-card--compact .management-card__tags {
  min-height: 1.65rem;
  gap: 0.3rem;
}

.management-card--compact .management-card__tag {
  font-size: 0.7rem;
  padding: 0.22rem 0.5rem;
}

.management-card--compact .management-card__link {
  font-size: 0.82rem;
  margin-top: 0.65rem;
}

.management-card--compact .management-card__link--join {
  padding: 0.62rem 0.85rem;
  font-size: 0.8rem;
}

.management-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
  color: var(--lucid-accent);
  text-decoration: none;
  font-size: 0.9rem;
}

/* TikTok link + tag row: centered in the text column only (not under the avatar) */
.management-card__content > .management-card__link:not(.management-card__link--join) {
  align-self: center;
}

.management-card__link:hover {
  color: var(--lucid-text);
}

.management-card__link--join {
  display: flex;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  justify-content: center;
  margin-top: 0.65rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(6, 182, 212, 0.24);
  border-radius: var(--radius-full);
  background: rgba(6, 182, 212, 0.08);
  font-weight: 600;
}

.management-card__link--join:hover {
  border-color: rgba(6, 182, 212, 0.45);
  background: rgba(6, 182, 212, 0.14);
}

.management-team__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--lucid-text-muted);
}

.management-team__empty--solo {
  grid-column: unset;
  max-width: 1120px;
  margin: 0 auto;
}

/* Benefits section */
.benefits {
  padding: 6rem 2rem 3.25rem;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.benefits__subtext {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  font-size: 0.95rem;
}

.benefits__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.82rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--lucid-border);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(168, 85, 247, 0.08));
  color: var(--lucid-text-muted);
  line-height: 1;
  white-space: nowrap;
}

.benefit {
  background: var(--lucid-surface);
  border: 1px solid var(--lucid-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.benefit:hover {
  border-color: var(--lucid-accent-soft);
  box-shadow: 0 0 40px var(--lucid-accent-soft);
}

.benefit__icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: var(--lucid-accent);
}

.benefit__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.benefit h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.benefit p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--lucid-text-muted);
  line-height: 1.7;
}

/* CTA section */
.cta {
  padding: 3.75rem 2rem 6rem;
}

.cta__content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--lucid-surface);
  border: 1px solid var(--lucid-border);
  border-radius: var(--radius-lg);
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 1rem;
}

.cta__subtitle {
  color: var(--lucid-text-muted);
  margin: 0 0 2rem;
  font-size: 1rem;
}

.cta__form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta__input {
  flex: 1;
  min-width: 220px;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--lucid-bg);
  border: 1px solid var(--lucid-border);
  border-radius: var(--radius-full);
  color: var(--lucid-text);
  outline: none;
  transition: border-color 0.2s ease;
}

.cta__input::placeholder {
  color: var(--lucid-text-muted);
}

.cta__input:focus {
  border-color: var(--lucid-accent);
}

.cta__submit {
  white-space: nowrap;
}

/* Contact modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 16, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 2.25rem;
  background: var(--lucid-surface);
  border: 1px solid var(--lucid-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(168, 85, 247, 0.08);
  transform: scale(0.96) translateY(8px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.is-open .modal__panel {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--lucid-text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.modal__close:hover {
  color: var(--lucid-text);
  background: var(--lucid-surface-elevated);
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  padding-right: 2rem;
}

.modal__subtitle {
  color: var(--lucid-text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.75rem;
  line-height: 1.5;
}

.modal__apply-cta {
  width: 100%;
  margin: 0 0 1rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow:
    0 0 48px rgba(168, 85, 247, 0.35),
    0 0 36px rgba(6, 182, 212, 0.25);
}

.modal__apply-cta:hover {
  box-shadow:
    0 0 64px rgba(168, 85, 247, 0.48),
    0 0 48px rgba(6, 182, 212, 0.35);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links--center {
  justify-content: center;
}

.social-links--stack {
  flex-direction: column;
}

.social-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  color: var(--lucid-accent);
  text-decoration: none;
  border: 1px solid var(--lucid-border);
  border-radius: var(--radius-full);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-links__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  text-align: left;
}

.social-links__name {
  font-weight: 600;
  line-height: 1.2;
}

.social-links__handle {
  font-size: 0.82rem;
  color: var(--lucid-text-muted);
  line-height: 1.2;
}

.social-links__item--full {
  width: 100%;
  justify-content: flex-start;
}

.social-links__item:hover {
  border-color: var(--lucid-accent);
  background: var(--lucid-accent-soft);
}

.social-links__item i {
  width: 1.1rem;
  height: 1.1rem;
}

.social-links__brand-icon {
  font-size: 1rem;
  line-height: 1;
}

.modal__email {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lucid-text-muted);
  text-align: center;
}

.modal__email a {
  color: var(--lucid-accent);
  text-decoration: none;
}

.modal__email a:hover {
  color: var(--lucid-text);
}

/* Analytics consent */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__panel {
  width: min(100%, 520px);
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(18, 14, 28, 0.94), rgba(6, 4, 12, 0.92));
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 24px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(168, 85, 247, 0.08),
    0 0 20px rgba(6, 182, 212, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cookie-banner__eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lucid-accent);
}

.cookie-banner__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--lucid-text);
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--lucid-text-muted);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.8rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--lucid-border);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cookie-banner__button:hover {
  transform: translateY(-1px);
}

.cookie-banner__button--primary {
  background: var(--lucid-accent);
  border-color: var(--lucid-accent);
  color: var(--lucid-bg);
}

.cookie-banner__button--secondary {
  background: transparent;
  color: var(--lucid-text);
}

.cookie-banner__button--secondary:hover {
  border-color: var(--lucid-accent);
  background: var(--lucid-accent-soft);
}

.cookie-settings-button {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 850;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--lucid-text-muted);
  background: rgba(15, 11, 24, 0.82);
  border: 1px solid var(--lucid-border);
  border-radius: var(--radius-full);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.cookie-settings-button.is-visible {
  display: inline-flex;
}

.cookie-settings-button:hover {
  color: var(--lucid-text);
  border-color: var(--lucid-accent);
  background: var(--lucid-surface-elevated);
}

/* Footer */
.footer {
  padding: 2rem 2rem 3rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-variant: small-caps;
  letter-spacing: 0.06em;
  color: var(--lucid-text);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer__legal {
  font-size: 0.85rem;
  color: var(--lucid-text-muted);
  margin: 0;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--lucid-text-muted);
  margin: 0.5rem 0 0;
}

.footer__social {
  margin: 1rem 0;
}

/* Animations */
.hero__title-line,
.hero__subtitle,
.hero__actions,
.creator-card,
.benefit {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.hero__title-line { animation-delay: 0.1s; }
.hero__title-line--word { animation-delay: 0.2s; }
.hero__subtitle { animation-delay: 0.3s; }
.hero__actions { animation-delay: 0.4s; }
.hero__stats {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.creator-card:nth-child(1) { animation-delay: 0.1s; }
.creator-card:nth-child(2) { animation-delay: 0.2s; }
.creator-card:nth-child(3) { animation-delay: 0.3s; }
.benefit:nth-child(1) { animation-delay: 0.1s; }
.benefit:nth-child(2) { animation-delay: 0.2s; }
.benefit:nth-child(3) { animation-delay: 0.3s; }
.benefit:nth-child(4) { animation-delay: 0.4s; }
.benefit:nth-child(5) { animation-delay: 0.5s; }
.benefit:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroWordScrollOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-70%);
  }
}

@keyframes heroWordScrollIn {
  from {
    opacity: 0;
    transform: translateY(70%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDreamLetterIn {
  from {
    opacity: 0;
    transform: translateY(70%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDreamGlowPulseOnce {
  0%,
  100% {
    text-shadow:
      0 0 50px rgba(168, 85, 247, 0.55),
      0 0 90px rgba(6, 182, 212, 0.22);
  }
  45% {
    text-shadow:
      0 0 74px rgba(168, 85, 247, 0.75),
      0 0 120px rgba(6, 182, 212, 0.4);
  }
}

@keyframes heroBangFlopIn {
  0% {
    opacity: 0;
    transform: translateY(-38%) rotate(-88deg) scale(0.7);
  }
  62% {
    opacity: 1;
    transform: translateY(4%) rotate(18deg) scale(1.06);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* Responsive — mobile optimization, legible text, no squishing */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  body {
    font-size: 1rem;
    line-height: 1.65;
    background-color: #010103;
  }

  /* Narrow viewports concentrate glow behind copy — dim ambient layers for contrast */
  .glow-orb {
    opacity: 0.26;
  }

  .sparkle__stars {
    animation-name: sparkleTwinkleMobile;
  }

  .sparkle__particle {
    animation-name: sparkleDriftMobile;
  }

  .nav {
    padding: 1rem 1.25rem;
  }

  .nav__links {
    display: none;
  }

  .announcement {
    margin-top: 8.75rem;
    padding: 0.85rem 1.25rem 0;
  }

  .announcement__inner {
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
  }

  .nav__mobile-toggle {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .nav__logo {
    gap: 0.35rem;
  }

  .nav__logo-symbol {
    height: 2.6rem;
  }

  .nav__logo-text {
    font-size: 1.85rem;
    letter-spacing: 0.2em;
    padding-left: 0.15em;
  }

  .nav__logo-sub {
    font-size: 0.5rem;
    letter-spacing: 0.42em;
    padding-left: 0.42em;
  }

  .hero {
    min-height: auto;
    padding: 6rem 1.5rem 2rem;
  }

  .hero__badge {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    letter-spacing: 0.18em;
    padding: 0.55rem 1.15rem;
  }

  .hero__title {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
    line-height: 1.15;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
  }

  .hero__title-word--accent {
    text-shadow:
      0 2px 28px rgba(0, 0, 0, 0.6),
      0 0 40px rgba(168, 85, 247, 0.35),
      0 0 28px rgba(6, 182, 212, 0.15);
  }

  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 0.5rem;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .hero__stats {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat__value {
    font-size: 2rem;
  }

  .stat__label {
    font-size: 0.8rem;
  }

  .section-header__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .section-header__desc {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .creators {
    padding: 4rem 1.25rem;
  }

  .creators__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .creator-card:nth-child(4),
  .creator-card:nth-child(5) {
    grid-column: auto;
  }

  .creator-card {
    padding: 1.75rem 1.5rem;
  }

  .creator-card__name {
    font-size: 1.2rem;
  }

  .creator-card__handle,
  .creator-card__bio {
    font-size: 0.9rem;
  }

  .management-team {
    padding: 0 1.25rem 4rem;
  }

  .management-team__lead {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .management-team__strip .management-card--compact {
    flex-basis: min(300px, calc(100vw - 2.75rem));
  }

  .management-team__arrow {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.45rem;
  }

  .management-team__strip-hint {
    flex-basis: 100%;
    order: -1;
    max-width: none;
  }

  .management-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .management-card__avatar {
    margin: 0 auto;
  }

  .benefits {
    padding: 4rem 1.25rem 2.5rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit {
    padding: 2rem 1.5rem;
  }

  .benefit h3 {
    font-size: 1.15rem;
  }

  .benefit p {
    font-size: 0.95rem;
  }

  .cta {
    padding: 2.75rem 1.25rem 4rem;
  }

  .cta__content {
    padding: 2.5rem 1.5rem;
  }

  .cta__title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .cta__subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .modal__panel {
    padding: 1.75rem 1.25rem;
    max-width: 100%;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .cookie-banner__panel {
    padding: 1rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .cookie-settings-button {
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .modal__form {
    flex-direction: column;
    margin-bottom: 1.25rem;
  }

  .modal__submit {
    width: 100%;
  }

  .cta__submit {
    width: 100%;
  }

  .footer {
    padding: 2.75rem 1.25rem 3.25rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 35%, rgba(0, 0, 0, 0.55) 100%);
    border-top: 1px solid rgba(168, 85, 247, 0.14);
  }

  .footer__logo {
    margin-bottom: 0.35rem;
  }

  .footer__social {
    margin: 1.35rem auto 1.5rem;
    max-width: 20rem;
  }

  .footer__social.social-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .footer__social .social-links__item {
    width: 100%;
    justify-content: flex-start;
    padding: 1.05rem 1.35rem;
    font-size: 1.02rem;
    color: var(--lucid-text);
    font-weight: 500;
    border-radius: var(--radius-md);
    border-color: rgba(168, 85, 247, 0.38);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.14), rgba(6, 182, 212, 0.07));
    box-shadow:
      0 4px 22px rgba(0, 0, 0, 0.35),
      0 0 0 1px rgba(255, 255, 255, 0.04);
  }

  .footer__social .social-links__item:hover {
    border-color: rgba(168, 85, 247, 0.55);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.22), rgba(6, 182, 212, 0.12));
  }

  .footer__social .social-links__brand-icon {
    font-size: 1.35rem;
    color: var(--lucid-accent);
    width: 1.35rem;
    text-align: center;
  }

  .footer__social .social-links__name {
    font-weight: 700;
    font-size: 1.02rem;
  }

  .footer__social .social-links__handle {
    font-size: 0.88rem;
    color: #b8c0cc;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.25rem;
  }

  .stat__value {
    font-size: 1.75rem;
  }
}
