/* style.css — Luis Gonsalez | Tech YouTuber Portfolio */

/* ─────────────────────────────────────────────
   FONTS
───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&family=Space+Mono:wght@400;700&display=swap');

/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'Space Grotesk', 'Helvetica Neue', sans-serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;

  /* Content widths */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1280px;
}

/* ─────────────────────────────────────────────
   LIGHT MODE (Default)
───────────────────────────────────────────── */
:root,
[data-theme='light'] {
  --color-bg:             #F0EEE9;
  --color-surface:        #F5F3EF;
  --color-surface-2:      #FAFAF8;
  --color-surface-offset: #E8E5DF;
  --color-border:         #D4D0C8;
  --color-divider:        #DDD9D2;

  --color-text:        #1A1814;
  --color-text-muted:  #6B6862;
  --color-text-faint:  #B0ADA8;
  --color-text-inverse: #F5F3EF;

  /* Accent: Electric Blue — distinct, techy, matches YouTuber energy */
  --color-primary:          #1D4ED8;
  --color-primary-hover:    #1E3FAC;
  --color-primary-active:   #172E80;
  --color-primary-highlight: #DBEAFE;

  /* Red accent for shorts / energy */
  --color-accent:       #E53E3E;
  --color-accent-hover: #C53030;

  /* Gold for media kit / brand */
  --color-gold:       #D69E2E;
  --color-gold-hover: #B7791F;

  --color-success: #38A169;
  --color-error:   #E53E3E;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 14px rgba(0,0,0,0.07);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);
}

/* ─────────────────────────────────────────────
   DARK MODE
───────────────────────────────────────────── */
[data-theme='dark'] {
  --color-bg:             #0D0C0B;
  --color-surface:        #141311;
  --color-surface-2:      #1A1917;
  --color-surface-offset: #111010;
  --color-border:         #2C2B28;
  --color-divider:        #242321;

  --color-text:        #EDEAE4;
  --color-text-muted:  #7A7772;
  --color-text-faint:  #4A4845;
  --color-text-inverse: #1A1917;

  --color-primary:          #60A5FA;
  --color-primary-hover:    #93C5FD;
  --color-primary-active:   #BFDBFE;
  --color-primary-highlight: #1E3A5F;

  --color-accent:       #FC8181;
  --color-accent-hover: #FEB2B2;

  --color-gold:       #F6E05E;
  --color-gold-hover: #FAF089;

  --color-success: #68D391;
  --color-error:   #FC8181;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.6);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0D0C0B;
    --color-surface:        #141311;
    --color-surface-2:      #1A1917;
    --color-surface-offset: #111010;
    --color-border:         #2C2B28;
    --color-divider:        #242321;
    --color-text:        #EDEAE4;
    --color-text-muted:  #7A7772;
    --color-text-faint:  #4A4845;
    --color-text-inverse: #1A1917;
    --color-primary:          #60A5FA;
    --color-primary-hover:    #93C5FD;
    --color-primary-active:   #BFDBFE;
    --color-primary-highlight: #1E3A5F;
    --color-accent:       #FC8181;
    --color-accent-hover: #FEB2B2;
    --color-gold:       #F6E05E;
    --color-gold-hover: #FAF089;
    --color-success: #68D391;
    --color-error:   #FC8181;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.6);
  }
}

/* ─────────────────────────────────────────────
   GLOBAL LAYOUT
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
}

.container--narrow {
  max-width: var(--content-default);
}

section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
}

.nav--hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.nav--scrolled {
  background: oklch(from var(--color-bg) l c h / 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--color-divider);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

/* True centering: logo and actions both take equal flex so links sit dead-center */
.nav__logo   { flex: 1; }
.nav__links  { flex: 0 0 auto; }
.nav__actions { flex: 1; justify-content: flex-end; display: flex; align-items: center; gap: var(--space-3); }

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
}

.nav__logo-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nav__logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav__links a:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  transition: all var(--transition-interactive);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface);
  border-color: var(--color-text-faint);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-interactive);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  border-color: var(--color-text);
  background: var(--color-surface);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.nav__mobile a:hover {
  color: var(--color-primary);
}

.nav__mobile-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text);
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--color-divider) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-divider) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(from var(--color-primary) l c h / 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: var(--space-6);
  max-width: 900px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-4);
  border: 1px solid oklch(from var(--color-primary) l c h / 0.3);
  border-radius: var(--radius-full);
  background: oklch(from var(--color-primary) l c h / 0.06);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero__name {
  font-family: var(--font-body);
  font-size: var(--text-hero);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.hero__name em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--color-primary);
}

.hero__tagline {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-weight: 400;
  max-width: 56ch;
  margin: 0 auto var(--space-10);
  line-height: 1.5;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--space-6), 4vw, var(--space-16));
  margin-top: clamp(var(--space-16), 6vw, var(--space-24));
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-divider);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero__stat-value {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1;
  display: block;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--space-1);
  display: block;
}

.hero__stat {
  text-align: center;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-faint);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 1;
}

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

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

/* ─────────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
}

.section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-primary);
}

.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1.1;
}

.section-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 55ch;
  margin-top: var(--space-4);
  line-height: 1.65;
}

/* Reveal animations */
.reveal {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .reveal {
    opacity: 0;
    animation: revealFade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }

  @keyframes revealFade {
    to { opacity: 1; }
  }
}

/* ─────────────────────────────────────────────
   LONG-FORM VIDEO SECTION
───────────────────────────────────────────── */
.longform {
  background: var(--color-surface-offset);
}

.longform__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.video-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  cursor: pointer;
  group: true;
}

.video-card--large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.video-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-surface-2);
}

.video-card--large .video-card__thumb {
  aspect-ratio: unset;
  position: absolute;
  inset: 0;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .video-card__thumb img {
  transform: scale(1.04);
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: opacity 0.3s ease;
}

.video-card:hover .video-card__overlay {
  opacity: 0.9;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.video-card:hover .video-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-card__play svg {
  color: #1A1814;
  margin-left: 3px;
}

.video-card__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5);
  padding-top: var(--space-12);
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.6) 50%,
    transparent 100%
  );
}

.video-card--large .video-card__meta {
  padding: var(--space-8);
  padding-top: calc(var(--space-8) * 3);
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.7) 45%,
    transparent 100%
  );
}

.video-card__category {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: oklch(from var(--color-primary) l c h / 0.2);
  border: 1px solid oklch(from var(--color-primary) l c h / 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: var(--space-2);
}

.video-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.01em;
}

.video-card--large .video-card__title {
  font-size: var(--text-xl);
}

.video-card__duration {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  margin-top: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.longform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.video-card__info {
  padding: var(--space-4);
}

.video-card__info-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: var(--space-2);
}

.video-card__views {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────
   SHORT-FORM VIDEO SECTION
───────────────────────────────────────────── */
.shortform {
  background: var(--color-bg);
  overflow: hidden;
}

.shortform__platforms {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.platform-tag {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid;
  cursor: pointer;
  transition: all var(--transition-interactive);
}

.platform-tag--yt {
  color: #FF0000;
  border-color: rgba(255,0,0,0.3);
  background: rgba(255,0,0,0.06);
}

.platform-tag--ig {
  color: #E1306C;
  border-color: rgba(225,48,108,0.3);
  background: rgba(225,48,108,0.06);
}

.platform-tag--tiktok {
  color: #69C9D0;
  border-color: rgba(105,201,208,0.3);
  background: rgba(105,201,208,0.06);
}

.platform-tag--yt.active,
.platform-tag--yt:hover {
  background: #FF0000;
  color: #fff;
  border-color: #FF0000;
}

.platform-tag--ig.active,
.platform-tag--ig:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
}

.platform-tag--tiktok.active,
.platform-tag--tiktok:hover {
  background: #010101;
  color: #69C9D0;
  border-color: #69C9D0;
}

/* Infinite horizontal marquee scroll */
.shortform__marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-3);
}

.shortform__marquee-wrapper::before,
.shortform__marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.shortform__marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.shortform__marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.shortform__marquee {
  display: flex;
  gap: var(--space-4);
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.shortform__marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Vertical short-form cards (phone aspect ratio) */
.short-card {
  position: relative;
  width: 200px;
  aspect-ratio: 9/16;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid var(--color-border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.short-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.short-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.short-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%);
}

.short-card__platform-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.5);
}

.short-card__meta {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-3);
  right: var(--space-3);
  color: #fff;
}

.short-card__title {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}

.short-card__views {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
}

.short-card__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.short-card:hover .short-card__play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Second row marquee - reverse direction */
.shortform__marquee--reverse {
  animation: marqueeScrollReverse 34s linear infinite;
}

@keyframes marqueeScrollReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.shortform__marquee--reverse:hover {
  animation-play-state: paused;
}

.shortform__cta {
  text-align: center;
  margin-top: var(--space-12);
}

/* ─────────────────────────────────────────────
   PROJECT GALLERY (CMS)
───────────────────────────────────────────── */
.gallery {
  background: var(--color-surface);
}

.gallery__filters {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.filter-btn {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-interactive);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-5);
  align-items: start;
}

.project-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.project-card--wide  { grid-column: span 7; }
.project-card--med   { grid-column: span 5; }
.project-card--third { grid-column: span 4; }

.project-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-surface-offset);
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.project-card__content {
  padding: var(--space-5);
}

.project-card__tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}

.tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.tag--primary {
  background: oklch(from var(--color-primary) l c h / 0.1);
  color: var(--color-primary);
  border-color: oklch(from var(--color-primary) l c h / 0.3);
}

.project-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: var(--space-2);
}

.project-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--color-divider);
}

.project-card__stat {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.project-card__arrow {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-interactive);
}

.project-card:hover .project-card__arrow {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: rotate(45deg);
}

/* ─────────────────────────────────────────────
   MEDIA KIT
───────────────────────────────────────────── */
.mediakit {
  background: #0D0C0B;
  color: #EDEAE4;
  position: relative;
  overflow: hidden;
}

.mediakit::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, oklch(from var(--color-primary) l c h / 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.mediakit .section-label {
  color: var(--color-gold);
}

.mediakit .section-label::before {
  background: var(--color-gold);
}

.mediakit .section-title {
  color: var(--color-bg);
}

.mediakit .section-desc {
  color: rgba(255,255,255,0.5);
}

.mediakit__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.mediakit__updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  opacity: 0.75;
  margin-top: var(--space-4);
  margin-bottom: 0;
}

.mediakit__updated svg {
  opacity: 0.85;
  flex-shrink: 0;
}

.mediakit__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-interactive);
}

.stat-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.stat-card__value {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #EDEAE4;
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-card__value span {
  color: var(--color-gold);
}

.stat-card__label {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.mediakit__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.mediakit__pitch-title {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #EDEAE4;
  line-height: 1.2;
}

.mediakit__pitch-title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-gold);
}

.mediakit__pitch-text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 50ch;
}

.collab-types {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.collab-type {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  transition: all var(--transition-interactive);
}

.collab-type:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--color-gold);
}

.collab-type__icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.collab-type__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #EDEAE4;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.collab-type__desc {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.mediakit__audience {
  margin-top: var(--space-10);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.audience-title {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-6);
}

.audience-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.audience-bar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.audience-bar__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  width: 110px;
  flex-shrink: 0;
}

.audience-bar__track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.audience-bar__fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--color-gold), var(--color-primary));
  width: 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-bar__fill.animated {
  width: var(--target-width);
}

.audience-bar__pct {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-gold);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

/* Highlighted bar (e.g. dominant age group) */
.audience-bar--highlight .audience-bar__label {
  color: var(--color-gold);
  font-weight: 700;
}
.audience-bar--highlight .audience-bar__fill {
  background: linear-gradient(90deg, var(--color-gold), #FCD34D);
}
.audience-bar--highlight .audience-bar__pct {
  color: #FCD34D;
}

/* ── Audience Section Blocks ── */
.aud-section {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.aud-section:first-child { border-top: none; margin-top: 0; padding-top: 0; }

.aud-section__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-4);
}

/* Side-by-side stat blocks */
.aud-section--row {
  display: flex;
  gap: var(--space-10);
}

.aud-stat-block__value {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.aud-stat-block__value--secondary {
  font-size: var(--text-xl);
  color: rgba(246,224,94,0.65);
  margin-top: var(--space-4);
}
.aud-stat-block__sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-2);
}

/* ── Gender Split ── */
.gender-split {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.gender-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.gender-bar__fill--male {
  height: 100%;
  width: var(--gw);
  background: linear-gradient(90deg, #60A5FA, #3B82F6);
  border-radius: var(--radius-full);
}

.gender-legend {
  display: flex;
  gap: var(--space-6);
}

.gender-legend__item {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.gender-legend__item strong {
  font-weight: 700;
  color: #EDEAE4;
}
.gender-legend__item::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
}
.gender-legend__item--male::before { background: #60A5FA; }
.gender-legend__item--female::before { background: rgba(255,255,255,0.2); }

/* ── Interest List ── */
.interest-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.interest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) 0;
}

.interest-row__name {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  flex: 1;
}

.interest-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}
.interest-tag--very-high {
  background: rgba(246,224,94,0.15);
  color: var(--color-gold);
  border: 1px solid rgba(246,224,94,0.3);
}
.interest-tag--high {
  background: rgba(96,165,250,0.12);
  color: #93C5FD;
  border: 1px solid rgba(96,165,250,0.25);
}

/* ── Topic Pills ── */
.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.topic-pill {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s, color 0.2s;
}
.topic-pill:hover {
  background: rgba(255,255,255,0.12);
  color: #EDEAE4;
}

.mediakit__cta-area {
  margin-top: var(--space-10);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn--gold {
  background: var(--color-gold);
  color: #1A1814;
  border: none;
  font-weight: 700;
}

.btn--gold:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214,158,46,0.3);
}

.btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn--ghost-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact {
  background: var(--color-bg);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(var(--space-10), 6vw, var(--space-24));
  align-items: start;
}

.contact__left {
  position: sticky;
  top: calc(80px + var(--space-8));
}

.contact__email-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-6);
  border: 1px solid oklch(from var(--color-primary) l c h / 0.3);
  border-radius: var(--radius-full);
  background: oklch(from var(--color-primary) l c h / 0.05);
  transition: all var(--transition-interactive);
}

.contact__email-link:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all var(--transition-interactive);
}

.social-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: oklch(from var(--color-primary) l c h / 0.06);
}

/* Form */
.contact__form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: all var(--transition-interactive);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.12);
  background: var(--color-bg);
}

.form-select {
  cursor: pointer;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-submit {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  background: var(--color-text);
  color: var(--color-bg);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-interactive);
  margin-top: var(--space-2);
}

.form-submit:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-submit:active {
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: #0D0C0B;
  color: #EDEAE4;
  padding-block: var(--space-12) var(--space-8);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__brand-name {
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #EDEAE4;
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  max-width: 32ch;
  line-height: 1.5;
}

.footer__nav {
  display: flex;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
}

.footer__nav-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-4);
}

.footer__nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__nav-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.footer__nav-col a:hover {
  color: var(--color-bg);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

.footer__made {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* ─────────────────────────────────────────────
   MODAL / LIGHTBOX
───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal__video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.modal__video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background var(--transition-interactive);
  z-index: 1;
}

.modal__close:hover {
  background: rgba(255,255,255,0.2);
}

/* ─────────────────────────────────────────────
   TOAST / SUCCESS STATE
───────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--color-text);
  color: var(--color-bg);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-xl);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  z-index: 300;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ─────────────────────────────────────────────
   HIDDEN (filter)
───────────────────────────────────────────── */
.hidden {
  display: none !important;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .longform__featured {
    grid-template-columns: 1fr;
  }

  .video-card--large {
    grid-column: span 1;
  }

  .longform__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card--wide,
  .project-card--med,
  .project-card--third {
    grid-column: span 1;
  }

  .mediakit__layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

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

  .contact__left {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav-cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero__stats {
    gap: var(--space-8);
  }

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

  .shortform__marquee-wrapper::before,
  .shortform__marquee-wrapper::after {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    justify-content: center;
  }

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

/* ── PLATFORM TABS — NEW ── */
.shortform__panel {
  display: none;
}
.shortform__panel--active {
  display: block;
}
.hidden {
  display: none !important;
}

/* Platform stats bar */
.shortform__stats-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding: var(--space-5) var(--space-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin: var(--space-6) 0 0;
}
.platform-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.platform-stat__value {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.platform-stat__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.platform-stat__cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.platform-stat__cta:hover {
  background: var(--accent);
  color: #fff;
}

/* Platform badge variants */
.short-card__platform-badge.yt {
  background: #FF0000;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}
.short-card__platform-badge.ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}
.short-card__platform-badge.tt {
  background: #000;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Pin badge for TikTok pinned videos */
.short-card__pin-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  background: rgba(0,0,0,0.6);
  border-radius: 4px;
  padding: 2px 5px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Instagram placeholder thumbs */
.short-card__ig-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: inherit;
}
.short-card__ig-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
}
.short-card__ig-thumb--cta {
  gap: 8px;
  background: linear-gradient(145deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a3e 100%) !important;
}
.short-card__cta-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.4;
}

/* Short cards that are links */
.short-card--link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}
.short-card--cta {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}
.short-card--link:hover .short-card__overlay,
.short-card--cta:hover .short-card__overlay {
  opacity: 0.35;
}

/* ═══════════════════════════════════════════════
   AUDIENCE BREAKDOWN v2 — Redesigned
   ═══════════════════════════════════════════════ */

/* ── Layout ── */
.aud2-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.aud2-row:first-child { margin-top: var(--space-8); }

.aud2-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}
.aud2-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(ellipse at top left, rgba(246,224,94,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.aud2-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--space-4);
}

/* ── Gender Card ── */
.aud2-gender {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.aud2-donut {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  transform: rotate(-90deg);
}

.aud2-donut__bg {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 10;
}

.aud2-donut__male,
.aud2-donut__female {
  fill: none;
  stroke-width: 10;
  stroke-linecap: butt;
  /* Start hidden (dashoffset = full circumference) and animate in */
  transition: stroke-dasharray 1.2s cubic-bezier(0.16,1,0.3,1);
}

.aud2-donut__male {
  stroke: #60A5FA;
  filter: drop-shadow(0 0 6px rgba(96,165,250,0.5));
}
.aud2-donut__female {
  stroke: rgba(255,255,255,0.25);
}

.aud2-gender__legend {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.aud2-gender__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.aud2-gender__dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}
.aud2-gender__dot--male { background: #60A5FA; }
.aud2-gender__dot--female { background: rgba(255,255,255,0.25); }

.aud2-gender__lbl {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  flex: 1;
}
.aud2-gender__pct {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #EDEAE4;
}

/* ── Meta Card (Parental + Topics) ── */
.aud2-card--meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
}

.aud2-big-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.aud2-big-num__unit {
  font-size: 1.5rem;
  opacity: 0.7;
}
.aud2-big-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
}

.aud2-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: var(--space-2) 0;
}

.aud2-topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-2);
}
.aud2-topic-pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(246,224,94,0.08);
  color: rgba(246,224,94,0.7);
  border: 1px solid rgba(246,224,94,0.15);
}

/* ── Age Histogram ── */
.aud2-card--age {
  margin-top: var(--space-4);
}

.aud2-histogram {
  display: flex;
  align-items: flex-end;
  gap: var(--space-2);
  height: 120px;
  padding-top: var(--space-2);
}

.aud2-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
  position: relative;
}

.aud2-bar__fill {
  width: 100%;
  height: 0;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(96,165,250,0.6) 0%, rgba(96,165,250,0.2) 100%);
  transition: height 0.8s cubic-bezier(0.16,1,0.3,1);
  flex-shrink: 0;
}
.aud2-bar.animated .aud2-bar__fill {
  height: var(--h);
}

.aud2-bar--peak .aud2-bar__fill {
  background: linear-gradient(180deg, #F6E05E 0%, rgba(246,224,94,0.35) 100%);
  box-shadow: 0 0 16px rgba(246,224,94,0.25), 0 0 4px rgba(246,224,94,0.4);
}

.aud2-bar__pct {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  margin-bottom: 2px;
  opacity: 0;
  transition: opacity 0.4s 0.9s;
  flex-shrink: 0;
}
.aud2-bar.animated .aud2-bar__pct { opacity: 1; }
.aud2-bar--peak .aud2-bar__pct { color: var(--color-gold); }

.aud2-bar__label {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}
.aud2-bar--peak .aud2-bar__label {
  color: rgba(246,224,94,0.6);
  font-weight: 700;
}

/* ── Geography Card ── */
.aud2-geo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: 0;
  margin: 0;
}

.aud2-geo-item {
  display: grid;
  grid-template-columns: 20px 22px 1fr 40px;
  align-items: center;
  gap: var(--space-2);
}

.aud2-geo__rank {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  font-weight: 700;
}

.aud2-geo__flag { font-size: 14px; line-height: 1; }

.aud2-geo__name {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aud2-geo__pct {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-gold);
  text-align: right;
}

.aud2-geo__bar {
  grid-column: 1 / -1;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: -4px;
}

.aud2-geo__fill {
  height: 100%;
  width: 0;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--color-gold), rgba(246,224,94,0.4));
  transition: width 1s cubic-bezier(0.16,1,0.3,1);
}
.aud2-geo__fill.animated { width: var(--gp); }

/* Rank 1 slightly brighter */
.aud2-geo-item:first-child .aud2-geo__name { color: #EDEAE4; }
.aud2-geo-item:first-child .aud2-geo__rank { color: rgba(246,224,94,0.5); }

/* ── Income Ring Card ── */
.aud2-card--income {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  justify-content: center;
  text-align: center;
}
.aud2-card--income .aud2-label { align-self: flex-start; }

.aud2-income-ring {
  position: relative;
  width: 80px;
  height: 80px;
}
.aud2-income-ring svg {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}

.aud2-ring__bg {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 10;
}
.aud2-ring__fill {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 10;
  stroke-linecap: butt;
  filter: drop-shadow(0 0 6px rgba(246,224,94,0.4));
  stroke-dasharray: 0 175.9;
  transition: stroke-dasharray 1.4s cubic-bezier(0.16,1,0.3,1) 0.3s;
}
.aud2-ring__fill.animated {
  stroke-dasharray: 122.1 175.9;
}

.aud2-income-ring__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.aud2-income-ring__val {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}
.aud2-income-ring__sub {
  font-size: 8px;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
  line-height: 1;
}

.aud2-income-breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 100%;
}
.aud2-income-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.aud2-income-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}
.aud2-income-dot--top10 {
  background: var(--color-gold);
  box-shadow: 0 0 4px rgba(246,224,94,0.5);
}
.aud2-income-dot--11-20 { background: rgba(246,224,94,0.35); }

.aud2-income-name {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  flex: 1;
}
.aud2-income-val {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #EDEAE4;
}

/* ── Interests Cloud Card ── */
.aud2-card--interests {
  margin-top: var(--space-4);
}

.aud2-interests-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-5);
  gap: var(--space-4);
}
.aud2-interests-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

.aud2-interest-legend {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.aud2-il-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.aud2-il-dot--vh {
  background: var(--color-gold);
  box-shadow: 0 0 6px rgba(246,224,94,0.6);
}
.aud2-il-dot--h { background: #93C5FD; }
.aud2-il-text {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-right: var(--space-2);
}

.aud2-interest-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.aud2-ic-chip {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.aud2-ic-chip:hover { transform: translateY(-1px); }

.aud2-ic-chip--vh {
  background: rgba(246,224,94,0.1);
  color: #F6E05E;
  border: 1px solid rgba(246,224,94,0.25);
  box-shadow: 0 0 12px rgba(246,224,94,0.08);
  font-size: 13px;
}
.aud2-ic-chip--vh:hover {
  box-shadow: 0 0 20px rgba(246,224,94,0.18);
}
.aud2-ic-chip--h {
  background: rgba(96,165,250,0.08);
  color: #93C5FD;
  border: 1px solid rgba(96,165,250,0.18);
  font-size: 11px;
}
.aud2-ic-chip--h:hover {
  box-shadow: 0 0 12px rgba(96,165,250,0.12);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .aud2-row { grid-template-columns: 1fr; }
  .aud2-histogram { height: 90px; }
  .aud2-card--income { flex-direction: row; align-items: center; }
  .aud2-card--income .aud2-label { display: none; }
}

/* ── Formspree States ── */
.fs-success {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6);
  border-radius: 10px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: #4ADE80;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.fs-error {
  padding: var(--space-4) var(--space-5);
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.25);
  color: #F87171;
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.fs-field-error {
  display: block;
  font-size: var(--text-xs);
  color: #F87171;
  margin-top: 4px;
  min-height: 16px;
}

/* Highlight invalid fields flagged by Formspree */
.form-input[aria-invalid="true"],
.form-textarea[aria-invalid="true"],
.form-select[aria-invalid="true"] {
  border-color: rgba(248, 113, 113, 0.5);
  outline: none;
}

/* ═══════════════════════════════════════════════
   THEME TOGGLE — first-load hint
   ═══════════════════════════════════════════════ */

@keyframes toggle-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(96,165,250,0.0); border-color: var(--color-border); }
  30%  { box-shadow: 0 0 0 6px rgba(96,165,250,0.25), 0 0 14px rgba(96,165,250,0.2); border-color: rgba(96,165,250,0.7); }
  60%  { box-shadow: 0 0 0 3px rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.3); }
  100% { box-shadow: 0 0 0 0 rgba(96,165,250,0.0); border-color: var(--color-border); }
}

.theme-toggle--hint {
  animation: toggle-pulse 1.4s ease-out 1.2s 3;
}

/* Tooltip label */
.theme-toggle-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.theme-toggle-wrap::after {
  content: 'Switch theme';
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(13,12,11,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}

/* Show on hover always */
.theme-toggle-wrap:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Also show during the pulse animation window */
.theme-toggle-wrap.hinting::after {
  animation: tooltip-appear 4.5s ease-out 1s forwards;
}

@keyframes tooltip-appear {
  0%   { opacity: 0; transform: translateY(-4px); }
  15%  { opacity: 1; transform: translateY(0); }
  75%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-4px); }
}

/* ═══════════════════════════════════════════════
   AUDIENCE BREAKDOWN — 2-column layout
   ═══════════════════════════════════════════════ */

.aud2-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.aud2-two-col > .aud2-card--age {
  grid-column: 1 / -1; /* age histogram spans full width */
}

/* Stack on mobile */
@media (max-width: 640px) {
  .aud2-two-col {
    grid-template-columns: 1fr;
  }
  .aud2-two-col > .aud2-card--age {
    grid-column: 1;
  }
}

/* aud2-two-col column children */
.aud2-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Cards inside columns fill available height */
.aud2-col .aud2-card {
  flex: 1;
}

/* Full-width cards that sit below the two-col grid */
.aud2-full {
  margin-top: var(--space-4);
}

/* Interests card (already outside the grid) also gets top margin */
.aud2-card--interests {
  margin-top: var(--space-4);
}

/* Override the old aud2-row gap inside col2 */
.aud2-col .aud2-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* ═══════════════════════════════════════════════
   BRAND PARTNERS STRIP
   ═══════════════════════════════════════════════ */

.brands {
  margin-top: var(--space-12);
  margin-bottom: var(--space-10);
}

.brands__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--space-5);
}

.brands__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-6) var(--space-5);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.16,1,0.3,1),
              border-color 0.22s,
              background 0.22s,
              box-shadow 0.22s;
}

/* Subtle animated gradient shimmer on hover */
.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(246,224,94,0.06) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.brand-card:hover {
  transform: translateY(-3px);
  border-color: rgba(246,224,94,0.25);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(246,224,94,0.08);
}
.brand-card:hover::before { opacity: 1; }

/* External link arrow — appears on hover */
.brand-card::after {
  content: '↗';
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 14px;
  color: rgba(246,224,94,0.5);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.2s, transform 0.2s;
}
.brand-card:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.brand-card__logo {
  width: 100%;
  height: 28px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  overflow: visible;
}
.brand-card:hover .brand-card__logo {
  color: rgba(255,255,255,0.9);
}

.brand-card__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.brand-card:hover .brand-card__tag {
  color: rgba(246,224,94,0.5);
}

/* Vertical separator lines between cards — decorative only */
.brands__strip .brand-card:not(:last-child) {
  position: relative;
}

@media (max-width: 640px) {
  .brands__strip {
    grid-template-columns: 1fr;
  }
}

/* Brand cards — equal height, tag pinned to bottom */
.brands__strip {
  align-items: stretch;
}
.brand-card {
  height: 100%;
}
.brand-card__tag {
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════
   FULL-WIDTH MEDIAKIT ROWS  (grid-column: 1/-1)
   ══════════════════════════════════════════════════ */

/* Span both columns of mediakit__layout */
.mediakit__full-row {
  grid-column: 1 / -1;
  margin-top: var(--space-12);
}

/* ── Shared header style ── */
.brands-full__header,
.aud2-fullrow__header {
  margin-bottom: var(--space-8);
}
.brands-full__title,
.aud2-fullrow__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: #EDEAE4;
  margin-top: var(--space-1);
}

/* ══════════════════════════════════════════════════
   WHO I'VE WORKED WITH — brand tiles
   ══════════════════════════════════════════════════ */

.brands-full__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.brand-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-10) var(--space-8);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.brand-tile:hover {
  border-color: rgba(246,224,94,0.25);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
  color: rgba(255,255,255,0.9);
}

/* Large wordmark SVG */
.brand-tile__logo {
  width: 100%;
  max-width: 280px;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-tile:hover .brand-tile__logo {
  color: #EDEAE4;
}

.brand-tile__logo svg {
  width: 100%;
  height: auto;
  max-height: 56px;
}

/* Niche tag */
.brand-tile__niche {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s ease;
}

.brand-tile:hover .brand-tile__niche {
  color: rgba(246,224,94,0.6);
}

/* Gold glow blob behind the tile on hover */
.brand-tile__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(246,224,94,0.06) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.brand-tile:hover .brand-tile__glow {
  opacity: 1;
}

/* External link indicator */
.brand-tile::after {
  content: '↗';
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 12px;
  color: rgba(246,224,94,0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-tile:hover::after {
  opacity: 1;
}

/* Decorative separator lines between tiles */
.brands-full__grid .brand-tile:not(:last-child) {
  position: relative;
}
.brands-full__grid .brand-tile:not(:last-child)::before {
  content: '';
  position: absolute;
  right: calc(-1 * var(--space-3));
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.07);
}

@media (max-width: 900px) {
  .brands-full__grid {
    grid-template-columns: 1fr;
  }
  .brands-full__grid .brand-tile:not(:last-child)::before {
    display: none;
  }
}

/* ══════════════════════════════════════════════════
   AUDIENCE BREAKDOWN — 4-column full-width
   ══════════════════════════════════════════════════ */

.aud2-four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

/* Age histogram column gets a little extra visual breathing room */
.aud2-card--age-full {
  /* inherits .aud2-card */
}

.aud2-card--age-full .aud2-histogram {
  height: 130px;
}

/* Income+interests card */
.aud2-card--income-interests {
  display: flex;
  flex-direction: column;
}

/* Responsive: stack to 2 cols on medium, 1 col on mobile */
@media (max-width: 1024px) {
  .aud2-four-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .aud2-four-col {
    grid-template-columns: 1fr;
  }
  .mediakit__full-row {
    margin-top: var(--space-8);
  }
}

/* ── Donut animated states (gender) ── */
.aud2-donut__male.animated   { stroke-dasharray: 91.7 8.3; }
.aud2-donut__female.animated { stroke-dasharray: 8.3 91.7; }

/* ══════════════════════════════════════════════════════════
   AUD3 — Bento-style audience breakdown (v2 redesign)
   ══════════════════════════════════════════════════════════ */

.aud3-section {
  /* uses .mediakit__full-row for grid-column:1/-1 + margin-top */
}

.aud3-header {
  margin-bottom: var(--space-8);
}
.aud3-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: #EDEAE4;
  margin-top: var(--space-1);
  margin-bottom: var(--space-1);
}
.aud3-subtitle {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ── Shared card base ── */
.aud3-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}
.aud3-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--space-4);
}
.aud3-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: var(--space-5) 0;
}
.aud3-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.aud3-dot--blue  { background: #60A5FA; box-shadow: 0 0 5px rgba(96,165,250,0.5); }
.aud3-dot--gold  { background: #F6E05E; box-shadow: 0 0 5px rgba(246,224,94,0.5); }
.aud3-dot--dim   { background: rgba(255,255,255,0.2); }

/* ── Bento grid — Variation C (2-col, meta full-width) ── */
.aud3-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr 1fr auto auto;
  grid-template-areas:
    "age   age  "
    "hero  right"
    "hero  right"
    "meta  meta "
    "strip strip";
  gap: var(--space-4);
}

.aud3-card--hero    { grid-area: hero;  display: flex; flex-direction: column; justify-content: space-between; }
.aud3-card--meta    { grid-area: meta;  overflow: hidden; }
.aud3-card--age     { grid-area: age;   display: flex; flex-direction: column; justify-content: space-between; border-top: 2px solid rgba(246,224,94,0.2); }
/* Subrow becomes a flex column filling the right grid area */
.aud3-bento > .aud3-subrow { grid-area: right; display: flex; flex-direction: column; gap: var(--space-4); }
.aud3-card--geo     { flex-shrink: 0; }
.aud3-card--interests { flex: 1; }
.aud3-card--insight { grid-area: strip; background: linear-gradient(135deg,rgba(246,224,94,0.05) 0%,rgba(96,165,250,0.04) 100%); border-color: rgba(246,224,94,0.12); }

/* ── Hero card internals ── */
.aud3-hero__gender {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.aud3-hero__big {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.aud3-hero__num {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #EDEAE4;
  letter-spacing: -0.02em;
}
.aud3-hero__unit {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
}
.aud3-hero__desc {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  max-width: 220px;
}

/* Gender bar */
.aud3-gender-bar {
  display: flex;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  gap: 2px;
  margin-bottom: var(--space-2);
}
.aud3-gender-bar__fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1) 0.3s;
  width: var(--w);
}
.aud3-gender-bar__fill--male   { background: linear-gradient(90deg, #60A5FA, #3B82F6); box-shadow: 0 0 8px rgba(96,165,250,0.4); }
.aud3-gender-bar__fill--female { background: rgba(255,255,255,0.18); }
.aud3-gender-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  gap: var(--space-2);
}
.aud3-gender-labels span {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* ── Income pyramid ── */
.aud3-income-pyramid {
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.aud3-income-kicker {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-3);
  text-shadow: 0 0 24px rgba(246,224,94,0.3);
}

.aud3-pyramid-tier {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.aud3-pyramid-bar {
  height: 28px;
  width: var(--pw);
  border-radius: 0 4px 4px 0;
  transition: width 1.1s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}

.aud3-pyramid-tier--1 .aud3-pyramid-bar {
  background: linear-gradient(90deg, #F6E05E 0%, rgba(246,224,94,0.55) 100%);
  box-shadow: 0 0 18px rgba(246,224,94,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}

.aud3-pyramid-tier--2 .aud3-pyramid-bar {
  background: linear-gradient(90deg, rgba(246,224,94,0.5) 0%, rgba(246,224,94,0.2) 100%);
}

.aud3-pyramid-tier--3 .aud3-pyramid-bar {
  background: rgba(255,255,255,0.08);
}

.aud3-pyramid-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px;
}

.aud3-pyramid-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

.aud3-pyramid-tier--1 .aud3-pyramid-label {
  color: rgba(246,224,94,0.85);
}

.aud3-pyramid-tier--2 .aud3-pyramid-label {
  color: rgba(246,224,94,0.5);
}

.aud3-pyramid-val {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}

.aud3-pyramid-tier--1 .aud3-pyramid-val {
  color: var(--color-gold);
}

.aud3-pyramid-tier--2 .aud3-pyramid-val {
  color: rgba(246,224,94,0.6);
}

.aud3-income-footnote {
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
  margin-top: var(--space-1);
  text-transform: uppercase;
}

/* Income ring (legacy, keep for animation fallback) */
.aud3-income-hero {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-3);
}
.aud3-income-ring-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.aud3-ring-svg {
  width: 80px; height: 80px;
  transform: rotate(-90deg);
}
.aud3-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 5;
}
.aud3-ring-main {
  fill: none;
  stroke: #F6E05E;
  stroke-width: 5;
  stroke-linecap: butt;
  filter: drop-shadow(0 0 6px rgba(246,224,94,0.4));
}
.aud3-ring-main.animated { stroke-dasharray: 70 30; }
.aud3-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.aud3-ring-val {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #F6E05E;
  line-height: 1;
}
.aud3-ring-sub {
  font-size: 7px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  line-height: 1.3;
}
.aud3-income-rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.aud3-income-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.aud3-income-bar-wrap {
  display: block;
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.aud3-income-bar {
  display: block;
  height: 100%;
  border-radius: 2px;
  width: var(--bw);
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1) 0.6s;
}
.aud3-income-bar--gold { background: linear-gradient(90deg, #F6E05E, rgba(246,224,94,0.5)); }
.aud3-income-bar--dim  { background: rgba(246,224,94,0.3); }
.aud3-income-lbl {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
}
.aud3-income-val {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: #EDEAE4;
}

/* Parental status */
.aud3-parental {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-1);
}
.aud3-parental__num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: #EDEAE4;
  line-height: 1;
}
.aud3-parental__lbl {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
  max-width: 160px;
}

/* ── Age histogram (aud3) ── */
.aud3-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}
.aud3-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F6E05E;
  background: rgba(246,224,94,0.1);
  border: 1px solid rgba(246,224,94,0.2);
  padding: 3px 8px;
  border-radius: 99px;
}
.aud3-histogram {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 280px;
  flex: 1;
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
}
.aud3-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 4px;
}
.aud3-bar__fill {
  width: 100%;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  transition: height 0.9s cubic-bezier(0.16,1,0.3,1);
  flex-shrink: 0;
}
.aud3-bar--peak .aud3-bar__fill {
  background: linear-gradient(180deg, #F6E05E 0%, rgba(246,224,94,0.3) 100%);
  box-shadow: 0 0 20px rgba(246,224,94,0.2), 0 0 6px rgba(246,224,94,0.35);
}
.aud3-bar__pct {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transition: opacity 0.4s ease 0.6s;
  white-space: nowrap;
  order: -1;
}
.aud3-bar.animated .aud3-bar__pct { opacity: 1; }
.aud3-bar--peak .aud3-bar__pct { color: var(--color-gold); }
.aud3-bar__label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.aud3-bar--peak .aud3-bar__label { color: rgba(246,224,94,0.75); font-weight: 700; }
.aud3-age-note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  margin-top: var(--space-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-3);
}
.aud3-age-note strong { color: rgba(255,255,255,0.65); font-weight: 600; }

/* ── Subrow internal layout (geo + interests) ── */
/* Placement handled by grid-area: subrow in .aud3-bento > .aud3-subrow */

/* ── Geography ── */

.aud3-geo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-3);
}
.aud3-geo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) 0;
}
.aud3-geo-item--top .aud3-geo-name { color: #EDEAE4; }
.aud3-geo-item--top .aud3-geo-rank { color: rgba(246,224,94,0.6); }
.aud3-geo-left {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.aud3-geo-rank {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  width: 18px;
}
.aud3-geo-flag { font-size: 16px; line-height: 1; }
.aud3-geo-name {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
}
.aud3-geo-pct {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: #EDEAE4;
  font-weight: 600;
}
.aud3-geo-bar-wrap {
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--space-1);
}
.aud3-geo-bar {
  height: 100%;
  width: var(--gw);
  border-radius: 2px;
  background: rgba(96,165,250,0.5);
  transition: width 1s cubic-bezier(0.16,1,0.3,1);
}
.aud3-geo-bar.animated { width: var(--gwf); }

/* ── Interests (psychographic profile) ── */
.aud3-legend {
  display: flex;
  gap: var(--space-4);
}
.aud3-legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 9px;
  color: rgba(255,255,255,0.35);
}
.aud3-interest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.aud3-interest-chip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.aud3-interest-chip:hover { transform: translateY(-2px); }
.aud3-interest-chip--vh {
  background: rgba(246,224,94,0.06);
  border-color: rgba(246,224,94,0.15);
}
.aud3-interest-chip--h {
  background: rgba(96,165,250,0.06);
  border-color: rgba(96,165,250,0.12);
}
.aud3-chip-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }
.aud3-chip-body { display: flex; flex-direction: column; gap: 2px; }
.aud3-chip-name {
  font-size: var(--text-xs);
  font-weight: 600;
  color: #EDEAE4;
}
.aud3-interest-chip--vh .aud3-chip-name { color: rgba(246,224,94,0.9); }
.aud3-interest-chip--h  .aud3-chip-name { color: rgba(147,197,253,0.9); }
.aud3-chip-tier {
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* Shopping signals */
.aud3-shop-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.aud3-shop-chip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
}
.aud3-shop-name {
  width: 130px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.55);
}
.aud3-shop-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.aud3-shop-bar {
  display: block;
  height: 100%;
  border-radius: 2px;
  width: var(--sw);
  transition: width 1s cubic-bezier(0.16,1,0.3,1) 0.5s;
}
.aud3-shop-bar.animated { width: var(--swf); }
.aud3-shop-chip--vh .aud3-shop-bar { background: linear-gradient(90deg,#F6E05E,rgba(246,224,94,0.4)); }
.aud3-shop-bar--blue { background: linear-gradient(90deg,#60A5FA,rgba(96,165,250,0.4)); }
.aud3-shop-tier {
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
  width: 56px;
  text-align: right;
}
.aud3-shop-chip--vh .aud3-shop-tier { color: rgba(246,224,94,0.5); }
.aud3-shop-chip--h  .aud3-shop-tier { color: rgba(96,165,250,0.5); }

/* ── Insight strip ── */
.aud3-insight-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.aud3-insight-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-2) var(--space-6);
}
.aud3-insight-item:first-child { padding-left: 0; }
.aud3-insight-item:last-child  { padding-right: 0; }
.aud3-insight-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  flex-shrink: 0;
}
.aud3-insight-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.aud3-insight-headline {
  font-size: var(--text-sm);
  font-weight: 600;
  color: #EDEAE4;
  margin-bottom: var(--space-1);
}
.aud3-insight-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .aud3-bento {
    grid-template-columns: 1fr 1fr;
    /* layout unchanged at this breakpoint — already 2-col */
  }
  .aud3-interest-grid {
    grid-template-columns: 1fr;
  }
  .aud3-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .aud3-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "age"
      "hero"
      "right"
      "meta"
      "strip";
  }
  .aud3-bento > .aud3-subrow {
    flex-direction: column;
  }
  .aud3-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .aud3-insight-grid {
    flex-direction: column;
    gap: var(--space-4);
  }
  .aud3-insight-divider { display: none; }
  .aud3-insight-item { padding: 0; }
}

/* ── Meta card (audience profile mini-stats) ── */
.aud3-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.aud3-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: var(--space-3);
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.aud3-meta-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: #EDEAE4;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aud3-meta-lbl {
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Prevent meta card content overflow */
.aud3-card--meta {
  overflow: hidden;
}
.aud3-meta-topics {
  overflow: hidden;
  min-width: 0;
}
.aud3-topic-pill {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 99px;
  padding: 3px 8px;
  white-space: nowrap;
}
