/* ============================================
   AADMI — Design System
   Premium Dark/Light · Amber Accent
   ============================================ */

:root {
  /* Dark Mode (Default) */
  --bg-primary: #000000;
  --bg-surface: #0a0a0a;
  --bg-elevated: #141414;
  --bg-glass: rgba(255,255,255,0.04);
  --bg-glass-hover: rgba(255,255,255,0.08);
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-tertiary: #6e6e73;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);

  /* Accent — Muted Sand Gold */
  --accent: #AC9A7D;
  --accent-hover: #98876C;
  --accent-soft: rgba(172, 154, 125, 0.05);
  --accent-glow: rgba(172, 154, 125, 0.12);
  --accent-text: #000000;

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  /* Timing */
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.5s;
  --duration-fast: 0.25s;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 64px;
  --page-pad: clamp(1.25rem, 4vw, 3rem);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   LIGHT MODE
   ============================================ */
[data-theme="light"] {
  --bg-primary: #FAFAFA;
  --bg-surface: #FFFFFF;
  --bg-elevated: #F0F0F5;
  --bg-glass: rgba(0,0,0,0.03);
  --bg-glass-hover: rgba(0,0,0,0.06);
  --text-primary: #1a1a1a;
  --text-secondary: #5e5e66;
  --text-tertiary: #8e8e93;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.15);
  --accent: #8E7C62;
  --accent-hover: #796851;
  --accent-soft: rgba(142, 124, 98, 0.05);
  --accent-glow: rgba(142, 124, 98, 0.10);
  --accent-text: #FFFFFF;
}

/* Smooth theme transition */
*,
*::before,
*::after {
  transition-property: background-color, color, border-color, box-shadow, fill, stroke;
  transition-duration: 0s;
  transition-timing-function: var(--ease);
}
html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
  transition-duration: 0.35s !important;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); background: var(--bg-primary); color: var(--text-primary); line-height: 1.618; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Typography (Golden Ratio Scale 1.618) */
.t-hero { font-size: clamp(2.618rem, 5vw, 4.236rem); font-weight: 500; letter-spacing: -0.04em; line-height: 1.1; }
.t-section { font-size: clamp(1.618rem, 3vw, 2.618rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.2; }
.t-title { font-size: clamp(1rem, 2vw, 1.618rem); font-weight: 500; letter-spacing: -0.02em; }
.t-body { font-size: 1rem; font-weight: 400; letter-spacing: 0.01em; line-height: 1.618; }
.t-caption { font-size: 0.875rem; font-weight: 400; color: var(--text-secondary); letter-spacing: 0.02em; }
.t-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); }

/* Layout */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--page-pad); }
.section { padding: clamp(3rem, 6vw, 7rem) 0; }
.section__header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

/* ============================================
   LOADER
   ============================================ */
.loader { display: flex; align-items: center; justify-content: center; min-height: 60vh; }
.loader__ring { width: 40px; height: 40px; border: 2px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   NAVIGATION
   ============================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-height); display: flex; align-items: center; transition: background var(--duration) var(--ease), backdrop-filter var(--duration) var(--ease); background: transparent; }
.nav--scrolled { background: rgba(0,0,0,0.72); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid var(--border); }
[data-theme="light"] .nav--scrolled { background: rgba(255,255,255,0.85); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--page-pad); }
.nav__logo { display: flex; align-items: center; transition: opacity var(--duration-fast) var(--ease); }
.nav__logo:hover { opacity: 0.7; }
.nav__logo-img { height: 32px; width: auto; object-fit: contain; }
[data-theme="light"] .nav__logo-img { filter: invert(1); }
.nav__links { display: flex; gap: 2rem; align-items: center; }
.nav__link { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); transition: color var(--duration-fast) var(--ease); position: relative; }
.nav__link:hover { color: var(--text-primary); }
.nav__link--active { color: var(--accent); }
.nav__link--active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--accent); border-radius: 1px; }
.nav__menu-btn { display: none; width: 24px; height: 24px; flex-direction: column; justify-content: center; gap: 5px; }
.nav__menu-btn span { display: block; height: 1.5px; background: var(--text-primary); transition: transform var(--duration-fast) var(--ease), opacity var(--duration-fast) var(--ease); }
.nav__menu-btn--open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav__menu-btn--open span:nth-child(2) { opacity: 0; }
.nav__menu-btn--open span:nth-child(3) { transform: translateY(-3.25px) rotate(-45deg); }

/* Nav Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { cursor: pointer; display: inline-flex; align-items: center; gap: 0.25rem; }
.nav__dropdown-toggle::after { content: ''; border: 4px solid transparent; border-top-color: currentColor; transform: translateY(2px); transition: transform var(--duration-fast) var(--ease); }
.nav__dropdown:hover .nav__dropdown-toggle::after { transform: translateY(-2px) rotate(180deg); }
.nav__dropdown-menu { position: absolute; top: 100%; left: 0; background: rgba(10,10,10,0.95); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0.5rem 0; min-width: 180px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--duration-fast) var(--ease); display: flex; flex-direction: column; }
[data-theme="light"] .nav__dropdown-menu { background: rgba(255,255,255,0.95); }
.nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-menu .nav__link { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.nav__dropdown-menu .nav__link::after { display: none; }
.nav__dropdown-menu .nav__link:hover { background: var(--bg-glass); color: var(--text-primary); }

/* Theme Toggle */
.theme-toggle { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-glass); border: 1px solid var(--border); cursor: pointer; transition: all var(--duration-fast) var(--ease); margin-left: 0.75rem; flex-shrink: 0; }
.theme-toggle:hover { background: var(--bg-glass-hover); border-color: var(--border-hover); transform: scale(1.08); }
.theme-toggle svg { width: 18px; height: 18px; color: var(--accent); }
.theme-toggle__sun { display: none; }
.theme-toggle__moon { display: block; }
[data-theme="light"] .theme-toggle__sun { display: block; }
[data-theme="light"] .theme-toggle__moon { display: none; }

@media (max-width: 768px) {
  .nav__links { position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.95); backdrop-filter: blur(20px); flex-direction: column; justify-content: flex-start; padding-top: 2rem; gap: 1.5rem; transform: translateX(100%); transition: transform var(--duration) var(--ease); overflow-y: auto; }
  [data-theme="light"] .nav__links { background: rgba(255,255,255,0.95); }
  .nav__links--open { transform: translateX(0); }
  .nav__link { font-size: 1.25rem; }
  .nav__menu-btn { display: flex; }
  
  .nav__dropdown-menu { position: static; background: transparent; border: none; padding: 0; min-width: auto; opacity: 1; visibility: visible; transform: none; display: none; margin-top: 1rem; margin-left: 1.5rem; gap: 1rem; }
  .nav__dropdown.open .nav__dropdown-menu { display: flex; }
  .nav__dropdown.open .nav__dropdown-toggle::after { transform: translateY(-2px) rotate(180deg); }
  .nav__dropdown-menu .nav__link { padding: 0; font-size: 1.125rem; }
}

/* ============================================
   PROJECT CARD
   ============================================ */
.project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(0.75rem, 1.5vw, 1.25rem); }
.project-card { position: relative; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-surface); border: 1px solid var(--border); transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease); cursor: pointer; }
.project-card:hover { transform: translateY(-6px) scale(1.02); border-color: var(--accent-glow); box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px var(--accent-glow); }
.project-card__poster { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-elevated); position: relative; }
.project-card__poster img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s var(--ease); }
.project-card__poster-placeholder { width: 100%; height: 100%; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; color: var(--text-tertiary); font-size: 2rem; }
.project-card:hover .project-card__poster img { transform: scale(1.08); }
.project-card__info { padding: 1rem 1.125rem 1.125rem; }
.project-card__title { font-size: 0.9375rem; font-weight: 500; margin-bottom: 0.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.project-card__meta { font-size: 0.75rem; color: var(--text-tertiary); margin-bottom: 0.5rem; }
.project-card__cats { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.cat-pill { font-size: 0.625rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.625rem; border-radius: var(--radius-full); background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-glow); transition: background var(--duration-fast) var(--ease); }
@media (max-width: 640px) { .project-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; } .project-card__info { padding: 0.625rem 0.75rem 0.875rem; } }

/* ============================================
   PERSON CARD + GRID
   ============================================ */
.person-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
@media (max-width: 640px) { .person-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; } }
@media (max-width: 400px) { .person-grid { grid-template-columns: repeat(2, 1fr); } }

.person-card { text-align: center; cursor: pointer; transition: transform var(--duration) var(--ease); }
.person-card:hover { transform: translateY(-4px); }
.person-card__photo { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1rem; overflow: hidden; background: var(--bg-elevated); border: 2px solid var(--border); transition: border-color var(--duration) var(--ease); }
.person-card:hover .person-card__photo { border-color: var(--accent); }
.person-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration) var(--ease); }
.person-card:hover .person-card__photo img { transform: scale(1.05); }
.person-card__name { font-size: 1rem; font-weight: 500; margin-bottom: 0.25rem; }
.person-card__role { font-size: 0.8125rem; color: var(--text-tertiary); }
@media (max-width: 640px) {
  .person-card__photo { width: 80px; height: 80px; margin-bottom: 0.625rem; }
  .person-card__name { font-size: 0.8125rem; }
  .person-card__role { font-size: 0.6875rem; }
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.filter-btn { font-size: 0.8125rem; font-weight: 400; padding: 0.5rem 1.125rem; border-radius: var(--radius-full); background: var(--bg-glass); color: var(--text-secondary); border: 1px solid var(--border); transition: all var(--duration-fast) var(--ease); }
.filter-btn:hover { background: var(--bg-glass-hover); color: var(--text-primary); border-color: var(--border-hover); }
.filter-btn--active { background: var(--accent); color: var(--accent-text); border-color: var(--accent); font-weight: 600; }
.filter-btn--active:hover { background: var(--accent-hover); }

/* ============================================
   SPOTLIGHT HERO (Jellyfin / TMDB style)
   ============================================ */
.spotlight { position: relative; width: 100%; height: 85vh; min-height: 500px; overflow: hidden; }
.spotlight__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.spotlight__slide--active { opacity: 1; z-index: 1; }
.spotlight__bg { position: absolute; inset: 0; }
.spotlight__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.spotlight__vignette { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%), linear-gradient(to top, var(--bg-primary) 0%, transparent 40%); z-index: 1; }
.spotlight__content { position: absolute; bottom: 12%; left: 0; z-index: 2; padding: 0 var(--page-pad); max-width: 600px; }
.spotlight__title-logo { max-width: 360px; max-height: 120px; margin-bottom: 1.25rem; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6)); }
.spotlight__title-text { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 0.75rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); color: #fff; }
.spotlight__meta { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 0.75rem; display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.spotlight__desc { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.spotlight__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.spotlight__btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 600; transition: all 0.25s ease; }
.spotlight__btn--play { background: var(--accent); color: var(--accent-text); }
.spotlight__btn--play:hover { background: var(--accent-hover); transform: scale(1.04); box-shadow: 0 8px 30px var(--accent-glow); }
.spotlight__btn--info { background: rgba(255,255,255,0.12); color: white; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); }
.spotlight__btn--info:hover { background: rgba(255,255,255,0.2); }
.spotlight__btn svg { width: 16px; height: 16px; }
.spotlight__dots { position: absolute; bottom: 2rem; right: var(--page-pad); z-index: 3; display: flex; gap: 8px; }
.spotlight__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s ease; }
.spotlight__dot--active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ============================================
   HORIZONTAL CAROUSEL
   ============================================ */
.carousel-section { padding: 1.5rem 0; }
.carousel-header { display: flex; align-items: baseline; justify-content: space-between; padding: 0 var(--page-pad); margin-bottom: 1rem; }
.carousel-header__title { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }
.carousel-header__link { font-size: 0.8125rem; color: var(--accent); transition: color 0.2s; }
.carousel-header__link:hover { color: var(--accent-hover); }
.carousel-track { display: flex; gap: 0.75rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 0 var(--page-pad) 1rem; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .project-card { flex: 0 0 280px; scroll-snap-align: start; border-radius: var(--radius-md); }
@media (min-width: 768px) { .carousel-track .project-card { flex: 0 0 320px; } }

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

/* Legacy hero (kept for about page etc) */
.hero { min-height: calc(100vh - var(--nav-height)); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: calc(var(--nav-height) + 2rem) 2rem 4rem; position: relative; }
.hero__logo-img { max-width: clamp(200px, 40vw, 400px); height: auto; margin-bottom: 1rem; animation: fadeInUp 1s var(--ease) both; }
[data-theme="light"] .hero__logo-img { filter: invert(1); }
.hero__tagline { font-size: clamp(1rem, 2vw, 1.375rem); color: var(--text-secondary); font-weight: 300; letter-spacing: 0.05em; animation: fadeInUp 1s var(--ease) 0.2s both; }
.hero__divider { width: 40px; height: 1px; background: var(--accent); margin: 2rem auto; animation: fadeInUp 1s var(--ease) 0.4s both; }

/* ============================================
   PROJECT DETAIL (IMDB-style)
   ============================================ */
.detail { padding-top: calc(var(--nav-height) + 2rem); }
.detail__back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; transition: color var(--duration-fast) var(--ease); cursor: pointer; }
.detail__back:hover { color: #fff; }
.detail__back svg { width: 16px; height: 16px; }
.detail__hero { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 4rem; max-width: 800px; }
.detail__poster { border-radius: var(--radius-md); overflow: hidden; background: var(--bg-elevated); aspect-ratio: 16/9; }
.detail__poster img { width: 100%; height: 100%; object-fit: cover; }
.detail__info { padding-top: 0.5rem; }
.detail__title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.detail__meta { font-size: 0.9375rem; color: var(--text-secondary); margin-bottom: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.detail__meta-sep { color: var(--text-tertiary); }
.detail__desc { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; max-width: 560px; }
.detail__watch-btn { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.875rem 2rem; border-radius: var(--radius-full); background: var(--accent); color: var(--accent-text); font-size: 0.9375rem; font-weight: 600; transition: all var(--duration-fast) var(--ease); margin-bottom: 2.5rem; }
.detail__watch-btn:hover { background: var(--accent-hover); transform: scale(1.03); box-shadow: 0 8px 24px var(--accent-glow); }
.detail__watch-btn svg { width: 18px; height: 18px; }
.detail__credits-list { display: flex; flex-direction: column; gap: 0.75rem; }
.detail__credit { display: flex; gap: 0.5rem; font-size: 0.9375rem; }
.detail__credit-role { color: var(--text-tertiary); min-width: 120px; }
.detail__credit-name { color: var(--accent); cursor: pointer; transition: opacity var(--duration-fast) var(--ease); }
.detail__credit-name:hover { opacity: 0.7; }

.detail__role-badge { display: inline-block; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.375rem 0.875rem; border-radius: var(--radius-full); background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-glow); margin-bottom: 1.5rem; }

/* ============================================
   PERSON DETAIL
   ============================================ */
.profile { padding-top: calc(var(--nav-height) + 2rem); }
.profile__header { display: flex; gap: clamp(1.5rem, 3vw, 3rem); align-items: flex-start; margin-bottom: 4rem; }
.profile__photo { width: clamp(100px, 15vw, 180px); height: clamp(100px, 15vw, 180px); border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--bg-elevated); border: 3px solid var(--accent-glow); }
.profile__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration) var(--ease); }
.profile__photo:hover img { transform: scale(1.05); }
.profile__info { padding-top: 0.5rem; }
.profile__name { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 0.375rem; }
.profile__title { font-size: 1.0625rem; color: var(--text-secondary); margin-bottom: 1rem; }
.profile__bio { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; max-width: 560px; margin-bottom: 1.5rem; }
.profile__socials { display: flex; gap: 1rem; }
.profile__social-link { font-size: 0.8125rem; font-weight: 500; color: var(--accent); padding: 0.375rem 0.875rem; border-radius: var(--radius-full); border: 1px solid var(--accent-glow); transition: all var(--duration-fast) var(--ease); }
.profile__social-link:hover { background: var(--accent-soft); border-color: var(--accent); }

@media (max-width: 600px) {
  .profile__header { flex-direction: column; align-items: center; text-align: center; }
  .profile__bio { margin-left: auto; margin-right: auto; }
  .profile__socials { justify-content: center; }
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.9); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--duration) var(--ease); }
.video-overlay--open { opacity: 1; pointer-events: auto; }
.video-overlay__close { position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background var(--duration-fast) var(--ease); cursor: pointer; z-index: 10; }
.video-overlay__close:hover { background: rgba(255,255,255,0.2); }
.video-overlay__close svg { width: 20px; height: 20px; color: white; }
.video-overlay__player { width: 90vw; max-width: 960px; aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; }
.video-overlay__player iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   FOOTER
   ============================================ */
.footer { border-top: 1px solid var(--border); padding: 3rem 0; text-align: center; }
.footer__text { font-size: 0.8125rem; color: var(--text-tertiary); }
.footer__link { color: var(--text-secondary); transition: color var(--duration-fast) var(--ease); }
.footer__link:hover { color: var(--accent); }

/* ============================================
   ANIMATIONS & SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal--visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.stagger--visible > *:nth-child(1) { transition-delay: 0s; }
.stagger--visible > *:nth-child(2) { transition-delay: 0.06s; }
.stagger--visible > *:nth-child(3) { transition-delay: 0.06s; }
.stagger--visible > *:nth-child(4) { transition-delay: 0.12s; }
.stagger--visible > *:nth-child(5) { transition-delay: 0.18s; }
.stagger--visible > *:nth-child(6) { transition-delay: 0.24s; }
.stagger--visible > *:nth-child(7) { transition-delay: 0.30s; }
.stagger--visible > *:nth-child(8) { transition-delay: 0.36s; }
.stagger--visible > *:nth-child(9) { transition-delay: 0.42s; }
.stagger--visible > *:nth-child(10) { transition-delay: 0.48s; }
.stagger--visible > *:nth-child(11) { transition-delay: 0.54s; }
.stagger--visible > *:nth-child(12) { transition-delay: 0.60s; }
.stagger--visible > * { opacity: 1; transform: translateY(0); }

/* Page transitions */
.page-enter { animation: pageIn 0.6s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   EMPTY / NO RESULTS STATE
   ============================================ */
.empty-state { text-align: center; padding: 6rem 2rem; }
.empty-state__icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.3; }
.empty-state__text { font-size: 1.125rem; color: var(--text-tertiary); }

/* ============================================
   RELATED / MORE LIKE THIS SECTION
   ============================================ */
.related { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--text-tertiary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

/* Selection */
::selection { background: var(--accent-soft); color: var(--accent); }

/* ============================================
   BTS & DI SLIDER
   ============================================ */
.bts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-top: 1rem; }
.bts-grid img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border); }

.di-gallery { display: flex; flex-direction: column; gap: 3rem; margin-top: 2rem; }
.di-slider { position: relative; width: 100%; overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--border); aspect-ratio: 16/9; --pos: 50%; }
.di-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.di-slider__after { z-index: 1; }
.di-slider__before { z-index: 2; clip-path: polygon(0 0, var(--pos) 0, var(--pos) 100%, 0 100%); }
.di-slider__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: var(--accent); z-index: 3; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 10px rgba(0,0,0,0.5); }
.di-slider__handle::after { content: '< >'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: rgba(0,0,0,0.7); border: 2px solid var(--accent); border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold; letter-spacing: 2px; text-indent: 2px; backdrop-filter: blur(4px); }
.di-slider__range { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 4; opacity: 0; cursor: ew-resize; margin: 0; }
.di-slider__label { position: absolute; bottom: 1rem; padding: 0.25rem 0.75rem; background: rgba(0,0,0,0.6); color: white; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; backdrop-filter: blur(4px); z-index: 3; pointer-events: none; }
.di-slider__label--before { left: 1rem; }
.di-slider__label--after { right: 1rem; }

/* ============================================
   ENTITY CARD (Studios / Production Houses)
   ============================================ */
.entity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(1.25rem, 2vw, 1.75rem); }
.entity-card { display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem; border-radius: var(--radius-md); background: var(--bg-glass); border: 1px solid var(--border); transition: all var(--duration) var(--ease); cursor: pointer; }
.entity-card:hover { border-color: var(--accent-glow); background: var(--bg-glass-hover); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
.entity-card__logo { width: 64px; height: 64px; border-radius: var(--radius-sm); background: transparent; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.entity-card__logo img { width: 100%; height: 100%; object-fit: contain; transition: transform var(--duration) var(--ease); }
.entity-card:hover .entity-card__logo img { filter: none; }
.entity-card__initial { font-size: 1.5rem; font-weight: 500; color: var(--accent); }
.entity-card__body { flex: 1; min-width: 0; }
.entity-card__type { font-size: 0.625rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.25rem; }
.entity-card__name { font-size: 1rem; font-weight: 500; margin-bottom: 0.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.entity-card__tagline { font-size: 0.8125rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.entity-card__stats { font-size: 0.75rem; color: var(--text-tertiary); margin-top: 0.375rem; }

/* ============================================
   ENTITY HERO (LinkedIn Style)
   ============================================ */
.profile-banner { width: 100%; height: 200px; background: var(--bg-elevated); border-radius: var(--radius-md) var(--radius-md) 0 0; overflow: hidden; position: relative; }
.profile-banner img { width: 100%; height: 100%; object-fit: cover; }
.profile-header-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-md); margin-top: -80px; position: relative; padding: 0 2rem 2rem; margin-bottom: 3rem; }

.entity-hero { display: flex; gap: 2rem; align-items: flex-end; position: relative; top: -60px; margin-bottom: -40px; }
.entity-hero__logo { width: 140px; height: 140px; border-radius: var(--radius-md); background: var(--bg-surface); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; border: 4px solid var(--bg-surface); box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.entity-hero__logo img { width: 100%; height: 100%; object-fit: contain; padding: 12px; background: white; }
.entity-hero__initial { font-size: 4rem; font-weight: 700; color: var(--accent); background: var(--bg-elevated); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.entity-hero__info { padding-top: 60px; flex: 1; }
.entity-hero__type { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); display: inline-block; padding: 0.25rem 0.75rem; border-radius: var(--radius-full); background: var(--accent-soft); border: 1px solid var(--accent-glow); margin-bottom: 0.75rem; }
.entity-hero__name { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.375rem; }
.entity-hero__tagline { font-size: 1.125rem; color: var(--text-secondary); margin-bottom: 0.75rem; font-weight: 400; }
.entity-hero__bio { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; max-width: 800px; margin-bottom: 1.5rem; }
.entity-hero__stats { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 0; }
.entity-hero__stat { display: flex; flex-direction: column; }
.entity-hero__stat-val { font-size: 1.25rem; font-weight: 600; color: var(--accent); }
.entity-hero__stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-tertiary); }

@media (max-width: 768px) {
  .entity-hero { flex-direction: column; align-items: flex-start; gap: 1rem; top: -40px; margin-bottom: -20px; }
  .entity-hero__logo { width: 100px; height: 100px; }
  .entity-hero__info { padding-top: 0; }
}

/* ============================================
   AWARD BADGE
   ============================================ */
.awards-grid { display: flex; flex-direction: column; gap: 0.75rem; }
.awards-section { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.award-badge { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border-radius: var(--radius-md); background: var(--bg-glass); border: 1px solid var(--border); transition: all var(--duration-fast) var(--ease); }
.award-badge:hover { border-color: var(--border-hover); background: var(--bg-glass-hover); }
.award-badge--win { border-left: 3px solid #c9a84c; }
.award-badge--nom { border-left: 3px solid #8a8a8e; }
.award-badge__icon { font-size: 1.5rem; flex-shrink: 0; }
.award-badge__info { flex: 1; min-width: 0; }
.award-badge__name { font-size: 0.9375rem; font-weight: 600; }
.award-badge__festival { font-size: 0.8125rem; color: var(--text-secondary); }
.award-badge__project { font-size: 0.75rem; color: var(--text-tertiary); margin-top: 0.125rem; }
.award-badge__link { font-size: 1rem; color: var(--text-tertiary); flex-shrink: 0; transition: color var(--duration-fast) var(--ease); text-decoration: none; }
.award-badge__link:hover { color: var(--accent); }

/* ============================================
   GLOBAL SEARCH BAR
   ============================================ */
.home-search-bar { padding: 1.5rem var(--page-pad); display: flex; justify-content: center; }
.search-global { position: relative; width: 100%; max-width: 600px; }
.search-global__input-wrap { position: relative; display: flex; align-items: center; }
.search-global__icon { position: absolute; left: 1rem; width: 18px; height: 18px; color: var(--text-tertiary); pointer-events: none; }
.search-global__input { width: 100%; padding: 0.875rem 1rem 0.875rem 2.75rem; border: 1px solid var(--border); border-radius: var(--radius-full); background: var(--bg-glass); color: var(--text-primary); font-size: 0.9375rem; font-family: var(--font); transition: all var(--duration-fast) var(--ease); backdrop-filter: blur(12px); }
.search-global__input::placeholder { color: var(--text-tertiary); }
.search-global__input:focus { outline: none; border-color: var(--accent); background: var(--bg-glass-hover); box-shadow: 0 0 0 3px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.3); }
.search-global__results { position: absolute; top: calc(100% + 0.5rem); left: 0; right: 0; background: var(--bg-surface); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: var(--radius-md); max-height: 400px; overflow-y: auto; z-index: 100; box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
.search-global__empty { padding: 2rem; text-align: center; color: var(--text-tertiary); font-size: 0.875rem; }
.search-global__group { padding: 0.5rem 0; }
.search-global__group-title { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); padding: 0.5rem 1rem; }
.search-global__item { display: flex; justify-content: space-between; align-items: center; padding: 0.625rem 1rem; transition: background var(--duration-fast) var(--ease); cursor: pointer; }
.search-global__item:hover { background: var(--accent-soft); }
.search-global__item-name { font-size: 0.875rem; font-weight: 500; }
.search-global__item-meta { font-size: 0.75rem; color: var(--text-tertiary); }

/* ============================================
   STATUS BADGE
   ============================================ */
.status-badge { display: inline-block; font-size: 0.6875rem; font-weight: 500; padding: 0.25rem 0.75rem; border-radius: var(--radius-full); margin-bottom: 0.75rem; }
.status-badge--verified { background: transparent; color: var(--text-primary); border: none; }
.status-badge--pending { background: rgba(255, 159, 10, 0.15); color: #ff9f0a; border: 1px solid rgba(255, 159, 10, 0.3); }
.status-badge--private { background: rgba(142, 142, 147, 0.15); color: #8e8e93; border: 1px solid rgba(142, 142, 147, 0.3); }

/* Verified badge: filled circle */
.verified-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-left: 0.5rem; vertical-align: middle; }

/* ============================================
   PROJECT ATTRIBUTION (Campaign / Studio links)
   ============================================ */
.project-attr { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.project-attr__link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: var(--radius-full); background: var(--bg-glass); border: 1px solid var(--border); font-size: 0.8125rem; font-weight: 500; color: var(--text-secondary); transition: all var(--duration-fast) var(--ease); }
.project-attr__link:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.project-attr__link .cat-pill { font-size: 0.5625rem; padding: 0.125rem 0.375rem; }

/* ============================================
   CAMPAIGN STUDIO LINK
   ============================================ */
.campaign__studio-link { display: inline-block; font-size: 0.875rem; color: var(--accent); margin-top: 0.5rem; transition: color var(--duration-fast) var(--ease); }
.campaign__studio-link:hover { color: var(--accent-hover); }

/* ============================================
   CAMPAIGN LIST (search results)
   ============================================ */
.campaign-list { display: flex; flex-direction: column; gap: 0.5rem; }
.campaign-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; border-radius: var(--radius-md); background: var(--bg-glass); border: 1px solid var(--border); transition: all var(--duration-fast) var(--ease); }
.campaign-item:hover { border-color: var(--accent-glow); background: var(--bg-glass-hover); }
.campaign-item__name { font-size: 0.9375rem; font-weight: 600; }
.campaign-item__client { font-size: 0.8125rem; color: var(--text-tertiary); }

/* ============================================
   AFFILIATION LIST (Person page)
   ============================================ */
.affiliation-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.affiliation-item { display: flex; align-items: center; gap: 0.875rem; padding: 0.875rem 1.25rem; border-radius: var(--radius-md); background: var(--bg-glass); border: 1px solid var(--border); transition: all var(--duration-fast) var(--ease); cursor: pointer; }
.affiliation-item:hover { border-color: var(--accent-glow); background: var(--accent-soft); }
.affiliation-item__logo { width: 36px; height: 36px; border-radius: var(--radius-sm); object-fit: contain; }
.affiliation-item__initial { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: var(--accent); }
.affiliation-item__name { font-size: 0.875rem; font-weight: 600; }
.affiliation-item__type { font-size: 0.75rem; color: var(--text-tertiary); }

/* ============================================
   PROFILE TYPE BADGE
   ============================================ */
.profile__type-badge { display: inline-block; font-size: 0.625rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.25rem 0.75rem; border-radius: var(--radius-full); background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-glow); margin-bottom: 0.75rem; }

/* ============================================
   TAG CLOUD
   ============================================ */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.375rem; }

.nav__link--btn { 
  background: var(--accent); color: var(--accent-text) !important; 
  padding: 0.5rem 1.25rem; border-radius: var(--radius-full); 
  font-weight: 600; margin-left: 1rem; transition: all 0.2s;
}
.nav__link--btn:hover { background: var(--accent-hover); transform: scale(1.05); box-shadow: 0 4px 16px var(--accent-glow); }
.nav__link--btn::after { display: none !important; }

@media (max-width: 768px) {
  .nav__link--btn { margin-left: 0; margin-top: 1rem; width: 100%; text-align: center; }
}

/* ============ DI / BEFORE-AFTER ============ */

/* Hero */
.di-hero { position: relative; height: 50vh; min-height: 360px; display: flex; align-items: flex-end; overflow: hidden; }
.di-hero__bg { position: absolute; inset: 0; }
.di-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35) saturate(1.2); }
.di-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-primary) 0%, transparent 60%); }
.di-hero__content { position: relative; z-index: 2; padding: 3rem var(--page-pad) 4rem; max-width: var(--max-width); margin: 0 auto; width: 100%; }
.di-hero__title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin: 0.5rem 0; }
.di-hero__sub { color: var(--text-secondary); font-size: 1.125rem; letter-spacing: 0.15em; text-transform: uppercase; }

/* Grid */
.di-grid { display: flex; flex-direction: column; gap: 2rem; }

/* Compare Slider */
.di-compare { border-radius: var(--radius-lg, 12px); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.di-compare__wrap {
  position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden;
  cursor: ew-resize; user-select: none; touch-action: none;
}
.di-compare__after { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.di-compare__before {
  position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.di-compare__before img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Handle */
.di-compare__handle { position: absolute; top: 0; bottom: 0; width: 0; z-index: 10; display: flex; flex-direction: column; align-items: center; pointer-events: none; }
.di-compare__handle-line { flex: 1; width: 2px; background: var(--accent); }
.di-compare__handle-knob {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(12px);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center; gap: 0;
  flex-shrink: 0; box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.di-compare__handle-knob svg { width: 14px; height: 14px; color: white; }
.di-compare__handle-knob svg:first-child { transform: rotate(180deg); margin-right: -2px; }
.di-compare__handle-knob svg:last-child { margin-left: -2px; }

/* Labels */
.di-compare__label {
  position: absolute; bottom: 1rem; padding: 0.375rem 0.875rem;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  border-radius: 100px; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.9);
  z-index: 5; pointer-events: none;
}
.di-compare__label--before { left: 1rem; }
.di-compare__label--after { right: 1rem; }

/* Back Link */
.btn-back {
  display: inline-block; padding: 0.875rem 2rem;
  background: var(--bg-glass); border: 1px solid var(--border);
  border-radius: 100px; color: var(--text-secondary); font-size: 0.875rem; font-weight: 500;
  text-decoration: none; transition: all 0.25s;
}
.btn-back:hover { background: var(--accent-soft); color: var(--accent); border-color: var(--accent-glow); }

@media (max-width: 768px) {
  .di-hero { height: 40vh; min-height: 280px; }
  .di-hero__content { padding: 2rem var(--page-pad) 3rem; }
  .di-compare { border-radius: 0; }
  .di-compare__handle-knob { width: 36px; height: 36px; }
  .di-compare__handle-knob svg { width: 11px; height: 11px; }
  .di-compare__label { font-size: 0.5625rem; padding: 0.25rem 0.625rem; bottom: 0.75rem; }
}

/* ============================================
   MOBILE BOTTOM NAVIGATION
   ============================================ */
.bottom-nav { display: none; }

@media (max-width: 768px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }

  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: calc(64px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid var(--border);
    align-items: center;
    justify-content: space-around;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  [data-theme="light"] .bottom-nav { background: rgba(255,255,255,0.92); }
  
  .bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex: 1;
    height: 100%;
    font-size: 0.625rem;
    font-weight: 400;
    color: var(--text-tertiary);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.25s var(--ease);
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    min-height: 44px;
    position: relative;
  }
  .bottom-nav__item svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
    transition: color 0.25s var(--ease);
  }
  .bottom-nav__item--active {
    color: var(--accent);
    font-weight: 600;
  }
  .bottom-nav__item--active svg {
    color: var(--accent);
  }

  /* Hide desktop nav links on mobile, show bottom nav */
  .nav__links { display: none !important; }
  .nav__menu-btn { display: none !important; }
  /* Keep theme toggle visible */
  .theme-toggle { position: absolute; right: var(--page-pad); }
}

/* ============================================
   SUBMIT PAGE
   ============================================ */
.submit-page { padding-top: calc(var(--nav-height) + 3rem); }
.submit-steps { display: flex; gap: 0; margin-bottom: 3rem; border-bottom: 1px solid var(--border); }
.submit-step { flex: 1; padding: 1rem 1.5rem; font-size: 0.8125rem; font-weight: 400; color: var(--text-tertiary); text-align: center; cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.2s ease; }
.submit-step:hover { color: var(--text-secondary); }
.submit-step--active { color: var(--accent); font-weight: 500; border-bottom-color: var(--accent); }
.submit-form { max-width: 560px; }
.submit-form__group { margin-bottom: 1.5rem; }
.submit-form__label { display: block; font-size: 0.6875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-tertiary); margin-bottom: 0.5rem; }
.submit-form__input {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-family: var(--font);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.submit-form__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.submit-form__input::placeholder { color: var(--text-tertiary); }
textarea.submit-form__input { min-height: 120px; resize: vertical; }
select.submit-form__input { appearance: none; cursor: pointer; }
.submit-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  background: var(--accent);
  color: var(--accent-text);
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.submit-form__btn:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
