/* ============================================
   SUN & SKY ENTERTAINMENT
   Clean, white, modern, professional
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --off-white: #f8f8f8;
  --light-gray: #f0f0f0;
  --mid-gray: #e0e0e0;
  --text-gray: #6b6b6b;
  --dark: #111111;
  --black: #000000;
  --accent: #1a1a1a;
  --accent-warm: #c8a04a;
  --accent-hover: #b08930;
  --border: #e5e5e5;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --max-width: 1700px;
  --nav-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all var(--transition);
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 74px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--text-gray);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--dark);
  background: var(--light-gray);
}

.external-icon {
  font-size: 0.7em;
  opacity: 0.5;
}

/* --- Nav Dropdown (TikTok submenu) --- */
.nav-item-dropdown {
  position: relative;
}

.nav-arrow {
  font-size: 0.65em;
  opacity: 0.6;
  display: inline-block;
  transition: transform 0.2s ease;
  vertical-align: middle;
  margin-left: 2px;
}

.nav-item-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-gray);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-dropdown li a:hover {
  background: var(--light-gray);
  color: var(--dark);
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 24px;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--accent-warm);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  text-align: center;
}

.mobile-menu-links li {
  margin-bottom: 8px;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--dark);
  display: inline-block;
  padding: 8px 16px;
  transition: all var(--transition);
}

.mobile-menu-links a:hover {
  color: var(--accent-warm);
}

.mobile-cta {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  background: var(--dark);
  color: var(--white) !important;
  padding: 14px 36px !important;
  border-radius: 8px;
  margin-top: 16px;
  display: inline-block !important;
}

.mobile-sub {
  font-size: 1.2rem !important;
  color: var(--text-gray) !important;
  opacity: 0.75;
  padding-left: 8px !important;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-content {
  padding: 80px 40px 80px 80px;
  max-width: 680px;
}

.hero-tag {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 28px;
}

.hero-accent {
  color: var(--accent-warm);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 44px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  height: 100%;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* --- Hero Logo Display --- */
.hero-logo-display {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Rising-sun radial glow behind the logo */
.hero-logo-display::before {
  content: '';
  position: absolute;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle,
    rgba(200, 160, 74, 0.14) 0%,
    rgba(200, 160, 74, 0.06) 38%,
    transparent 68%
  );
  border-radius: 50%;
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

/* Expanding pulse ring */
.hero-logo-display::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(200, 160, 74, 0.22);
  border-radius: 50%;
  animation: ringExpand 5s ease-out infinite;
  pointer-events: none;
}

.hero-logo-large {
  width: 68%;
  max-width: 400px;
  height: auto;
  position: relative;
  z-index: 1;
  animation: heroFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 16px 48px rgba(200, 160, 74, 0.10));
}

/* --- Hero V2 (Text-First, Animated) --- */
.hero-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Subtle gold glow from top-right */
.hero-v2-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 780px;
  height: 780px;
  background: radial-gradient(circle at 65% 35%,
    rgba(200, 160, 74, 0.09) 0%,
    rgba(200, 160, 74, 0.03) 45%,
    transparent 68%
  );
  pointer-events: none;
  animation: glowPulse 9s ease-in-out infinite;
}

.hero-v2-inner {
  padding: 80px 0 100px;
  max-width: 960px;
}

/* Small logo + eyebrow */
.hero-v2-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-v2-logo {
  height: 38px;
  width: auto;
  opacity: 0.7;
}

.hero-v2-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-gray);
}

/* Big stacked title */
.hero-v2-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7.2vw, 6.8rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--dark);
  letter-spacing: -0.015em;
  margin-bottom: 40px;
}

.hero-v2-line {
  display: block;
}

/* Cycling word container — clips to one line height */
.hero-v2-line--cycle {
  overflow: hidden;
  height: 1.1em;
  display: block;
}

.hero-cycle {
  display: block;
  position: relative;
  height: 100%;
}

.cycle-word {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.0;
  opacity: 0;
  transform: translateY(110%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  white-space: nowrap;
}

.cycle-word.cycle-active {
  opacity: 1;
  transform: translateY(0);
}

.cycle-word.cycle-exit {
  opacity: 0;
  transform: translateY(-110%);
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.8, 0), opacity 0.3s ease;
}

/* Subtitle */
.hero-v2-sub {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text-gray);
  max-width: 560px;
  margin-bottom: 52px;
}

/* Ghost button */
.btn-ghost {
  background: transparent;
  color: var(--text-gray);
  border: 1.5px solid transparent;
}

.btn-ghost:hover {
  color: var(--dark);
  border-color: var(--border);
  background: var(--light-gray);
}

/* Scroll hint */
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-gray);
  opacity: 0.55;
  margin-top: 72px;
  animation: scrollBounce 2.4s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* Responsive hero-v2 */
@media (max-width: 900px) {
  .hero-v2-inner {
    padding: 60px 0 80px;
  }
  .hero-v2-title {
    font-size: clamp(2.8rem, 10vw, 4.8rem);
  }
  .hero-v2-line--cycle {
    height: 1.15em;
  }
  .hero-scroll-hint {
    margin-top: 48px;
  }
}

@media (max-width: 600px) {
  .hero-v2-brand {
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Hero V3 — full-page, centered, flex-start from top --- */
.hero-v3 {
  height: 100vh;
  padding-top: calc(var(--nav-height) + 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Soft centered gold glow */
.hero-v3-glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at 60% 50%,
    rgba(200, 160, 74, 0.09) 0%,
    rgba(200, 160, 74, 0.02) 50%,
    transparent 72%
  );
  pointer-events: none;
  animation: glowPulse 10s ease-in-out infinite;
  z-index: 0;
}

/* Center text block */
.hero-v3-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 1;
}

/* Eyebrow */
.hero-v3-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 20px;
}

/* Gold accent rule — centered */
.hero-v3-rule {
  width: 36px;
  height: 2px;
  background: var(--accent-warm);
  border-radius: 2px;
  margin: 0 auto 22px;
}

/* Headline block */
.hero-v3-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 48px;
}

.hero-v3-static {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

/* Cycling word line */
.hero-v3-cycle-line {
  display: block;
  position: relative;
  width: 100%;
  height: 1.3em;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(6rem, 13.5vw, 14rem);
  font-weight: 700;
  color: var(--accent-warm);
  line-height: 1.0;
  letter-spacing: -0.035em;
  padding-bottom: 0.2em;
}

/* Center-align cycle words */
.hero-v3-cycle-line .cycle-word {
  left: 0;
  right: 0;
  text-align: center;
}

/* ── BOTTOM: CTAs + scroll hint — pinned center-bottom ── */
.hero-v3-bottom {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

/* Three uniform hero buttons */
.hero-v3-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll hint */
.hero-v3-scroll {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-gray);
  opacity: 0;
  white-space: nowrap;
  animation:
    heroScrollFade 0.6s ease 2s forwards,
    scrollBounce 2.4s ease-in-out 2.6s infinite;
}

@keyframes heroScrollFade {
  to { opacity: 0.45; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-v3 {
    padding-top: calc(var(--nav-height) + 32px);
  }
  .hero-v3-bottom { bottom: 36px; }
  .hero-v3-static { font-size: clamp(2.2rem, 7vw, 4rem); }
  .hero-v3-cycle-line { font-size: clamp(3.5rem, 13vw, 8rem); }
  .hero-v3-rule { margin-bottom: 18px; }
}

@media (max-width: 600px) {
  .hero-v3-static { font-size: clamp(1.8rem, 8.5vw, 2.8rem); }
  .hero-v3-cycle-line { font-size: clamp(3rem, 14.5vw, 6rem); }
  .hero-v3-ctas { flex-direction: column; align-items: center; width: 100%; padding: 0 24px; }
  .btn-hero { width: 100%; justify-content: center; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-warm);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--dark);
  background: var(--light-gray);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1rem;
}

/* Hero CTA buttons — uniform outline style (defined after .btn to correctly override border: none) */
.btn-hero {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(17, 17, 17, 0.25);
  letter-spacing: 0.04em;
  padding: 14px 36px;
}

.btn-hero:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--dark);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-warm);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

/* --- Section Titles --- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 22px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  background: var(--accent-warm);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-title.fade-up.visible::after {
  transform: scaleX(1);
}

.section-subtitle {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-gray);
  max-width: 620px;
  margin-bottom: 48px;
}

/* --- Audience Split --- */
/* --- Divisions (two-column split) --- */
.divisions {
  padding: 120px 0;
  background: var(--off-white);
}

.divisions-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 64px;
  margin-top: 64px;
  align-items: start;
}

.divisions-divider {
  background: var(--border);
  align-self: stretch;
  min-height: 300px;
}

.divisions-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.divisions-col-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.divisions-col-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--accent-warm);
  margin-bottom: 6px;
}

.divisions-col-label {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.divisions-col-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 380px;
  margin: 0;
}

.divisions-col-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.division-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition);
}

.division-link:hover {
  border-color: var(--accent-warm);
  box-shadow: 0 6px 24px rgba(200, 160, 74, 0.10);
  transform: translateX(4px);
}

.division-link-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.division-link-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
}

.division-link:hover .division-link-name {
  color: var(--accent-warm);
}

.division-link-desc {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.4;
}

.division-link-arrow {
  font-size: 1.1rem;
  color: var(--text-gray);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}

.division-link:hover .division-link-arrow {
  color: var(--accent-warm);
  transform: translateX(4px);
}

/* --- Platforms --- */
.platforms {
  padding: 120px 0;
  text-align: center;
  transition: background-color 0.5s ease;
}

/* Section-wide pastel tints on platform hover */
.platforms[data-active="youtube"]   { background-color: rgba(255, 20, 20, 0.05); }
.platforms[data-active="tiktok"]    { background-color: rgba(139, 92, 246, 0.06); }
.platforms[data-active="facebook"]  { background-color: rgba(24, 119, 242, 0.06); }
.platforms[data-active="instagram"] { background-color: rgba(225, 48, 108, 0.06); }
.platforms[data-active="snapchat"]  { background-color: rgba(230, 184, 0, 0.07); }
.platforms[data-active="twitch"]    { background-color: rgba(145, 70, 255, 0.06); }
.platforms[data-active="warner"]    { background-color: rgba(236, 72, 153, 0.06); }

.platforms-header {
  text-align: center;
}

.platforms-header .section-title {
  display: inline-block;
}

.platforms-header .section-title::after {
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
}

.platforms-header .section-title.fade-up.visible::after {
  transform: translateX(-50%) scaleX(1);
}

.platforms-header .section-subtitle {
  margin: 0 auto 48px;
}

.platform-logos {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}

.platform-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: default;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 130px;
  background: var(--white);
}

.pl-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.pl-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-gray);
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* Multi-icon support (Meta: Instagram + Facebook) */
.pl-icon-multi {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pl-icon-sep {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-gray);
  opacity: 0.5;
  line-height: 1;
}

/* Per-platform brand color hovers */
.platform-logo[data-platform="youtube"]:hover {
  border-color: #FF0000;
  box-shadow: 0 8px 32px rgba(255, 0, 0, 0.12);
  transform: translateY(-5px);
}
.platform-logo[data-platform="youtube"]:hover .pl-icon,
.platform-logo[data-platform="youtube"]:hover .pl-name {
  color: #FF0000;
}

.platform-logo[data-platform="tiktok"]:hover {
  border-color: #8B5CF6;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.18);
  transform: translateY(-5px);
}
.platform-logo[data-platform="tiktok"]:hover .pl-icon,
.platform-logo[data-platform="tiktok"]:hover .pl-name {
  color: #8B5CF6;
}

.platform-logo[data-platform="facebook"]:hover {
  border-color: #1877F2;
  box-shadow: 0 8px 32px rgba(24, 119, 242, 0.14);
  transform: translateY(-5px);
}
.platform-logo[data-platform="facebook"]:hover .pl-icon,
.platform-logo[data-platform="facebook"]:hover .pl-name {
  color: #1877F2;
}

.platform-logo[data-platform="instagram"]:hover {
  border-color: #E1306C;
  box-shadow: 0 8px 32px rgba(225, 48, 108, 0.18);
  transform: translateY(-5px);
}
.platform-logo[data-platform="instagram"]:hover .pl-icon,
.platform-logo[data-platform="instagram"]:hover .pl-name {
  color: #E1306C;
}

.platform-logo[data-platform="snapchat"]:hover {
  border-color: #E6B800;
  background: rgba(255, 252, 0, 0.06);
  box-shadow: 0 8px 32px rgba(230, 184, 0, 0.2);
  transform: translateY(-5px);
}
.platform-logo[data-platform="snapchat"]:hover .pl-icon,
.platform-logo[data-platform="snapchat"]:hover .pl-name {
  color: #B8960A;
}

.platform-logo[data-platform="twitch"]:hover {
  border-color: #9146FF;
  box-shadow: 0 8px 32px rgba(145, 70, 255, 0.18);
  transform: translateY(-5px);
}
.platform-logo[data-platform="twitch"]:hover .pl-icon,
.platform-logo[data-platform="twitch"]:hover .pl-name {
  color: #9146FF;
}

.platform-logo[data-platform="warner"]:hover {
  border-color: #EC4899;
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.18);
  transform: translateY(-5px);
}
.platform-logo[data-platform="warner"]:hover .pl-icon,
.platform-logo[data-platform="warner"]:hover .pl-name {
  color: #EC4899;
}

/* --- Our Family --- */
.our-family {
  padding: 120px 0;
  background: var(--dark);
}

.our-family .section-title {
  color: var(--white);
}

.our-family .section-title::after {
  background: var(--accent-warm);
  left: 0;
}

.family-header {
  margin-bottom: 40px;
}

.family-header .section-title {
  margin-bottom: 10px;
}

.family-header .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.family-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  height: 540px;
  text-decoration: none;
}

.family-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gradient fallback if no image */
.family-card:nth-child(1) .family-card-img {
  background-image: linear-gradient(135deg, #1a0a2e 0%, #2d1b69 50%, #0a1628 100%);
}

.family-card:nth-child(2) .family-card-img {
  background-image: linear-gradient(135deg, #0d1b0a 0%, #1a3a0d 50%, #0a1a28 100%);
}

.family-card:hover .family-card-img {
  transform: scale(1.05);
}

.family-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.10) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 48px;
  transition: background 0.4s ease;
}

.family-card:hover .family-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.family-card-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 12px;
  display: block;
}

.family-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.family-card-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 22px;
  line-height: 1.5;
}

.family-card-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.family-card:hover .family-card-link {
  color: var(--accent-warm);
  border-color: var(--accent-warm);
}

/* --- Credibility --- */
.credibility {
  padding: 120px 0;
  background: var(--off-white);
}

.credibility-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.credibility-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.credibility-text .btn {
  margin-top: 16px;
}

.credibility-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight {
  padding: 28px 32px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.highlight h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.highlight p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* --- CTA Section --- */
.cta-section {
  padding: 120px 0;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 36px;
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 56px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.footer-phone {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Footer Socials --- */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition);
}

.social-link:hover {
  background: rgba(200, 160, 74, 0.18);
  color: var(--accent-warm);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 120px 40px 40px;
    max-width: 100%;
  }
  .hero-visual {
    padding: 0 40px 60px;
  }
  .hero-logo-display {
    height: 56vw;
    min-height: 260px;
  }
  .hero-logo-display::before {
    width: 300px;
    height: 300px;
  }
  .hero-logo-display::after {
    width: 200px;
    height: 200px;
  }
  .hero-logo-large {
    max-width: 240px;
    width: 70%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .divisions-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .divisions-divider {
    display: none;
  }
  .family-grid {
    grid-template-columns: 1fr;
  }
  .family-card {
    height: 420px;
  }
  .credibility-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .divisions,
  .platforms,
  .our-family,
  .credibility,
  .cta-section {
    padding: 80px 0;
  }
  .family-card {
    height: 360px;
  }
  .family-card-overlay {
    padding: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .platform-logos {
    gap: 12px;
  }
  .platform-logo {
    padding: 20px 20px;
    min-width: 100px;
  }
}
