/* ============================================
   AI SCREEN AWARDS - Digital Cinema Experience
   ============================================ */

:root {
  --bg: #040810;
  --bg-card: #081018;
  --bg-card-hover: #0c1622;
  --surface: #0e1a2a;
  --border: #142040;
  --border-bright: #1e3460;
  --text: #e8f0f8;
  --text-dim: #90b8d4;
  --text-muted: #5a7e98;
  --accent: #7ec8e3;
  --accent-glow: rgba(126, 200, 227, 0.25);
  --accent2: #4a9eff;
  --cyan: #7ec8e3;
  --green: #00ff88;
  --purple: #8a7cff;
  --red: #ff4466;
  --font-display: 'Bebas Neue', 'Orbitron', sans-serif;
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); }

.text-accent { color: var(--accent); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   Cinematic Overlays
   ============================================ */

.film-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
  animation: grain 0.5s steps(6) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  30% { transform: translate(3%, 1%); }
  50% { transform: translate(-1%, 3%); }
  70% { transform: translate(2%, -2%); }
  90% { transform: translate(-3%, 1%); }
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.7) 100%);
}

.light-leak {
  position: fixed;
  pointer-events: none;
  z-index: 9996;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0;
  animation: lightLeak 12s ease-in-out infinite;
}

.light-leak-1 {
  width: 600px; height: 400px;
  top: -100px; left: -100px;
  background: radial-gradient(ellipse, rgba(126, 200, 227, 0.15), transparent 70%);
  animation-delay: 0s;
}

.light-leak-2 {
  width: 500px; height: 500px;
  bottom: -150px; right: -100px;
  background: radial-gradient(ellipse, rgba(255, 51, 102, 0.1), transparent 70%);
  animation-delay: 6s;
}

@keyframes lightLeak {
  0%, 100% { opacity: 0; transform: scale(0.8) translate(0, 0); }
  20% { opacity: 1; }
  50% { opacity: 0.6; transform: scale(1.3) translate(30px, 20px); }
  80% { opacity: 1; }
}

#cinemaBg {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  background: rgba(5, 5, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(126, 200, 227, 0.1);
  padding: 0.6rem 0;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
  border-radius: 4px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  cursor: pointer;
}

.nav-links a:hover { color: var(--accent); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after { width: 100%; }

.nav-links .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 0.5rem 1.2rem;
  font-weight: 700;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: #9dd8ef; color: var(--bg); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--accent);
  transition: all 0.3s;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(4, 8, 16, 0.3) 0%, rgba(4, 8, 16, 0.8) 70%),
    linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
}

/* Film strip edges */
.hero-filmstrip {
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  opacity: 0.06;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 8px,
      rgba(126, 200, 227, 0.8) 8px,
      rgba(126, 200, 227, 0.8) 12px,
      transparent 12px,
      transparent 40px
    );
  animation: filmScroll 4s linear infinite;
}

.hero-filmstrip-left { left: 0; }
.hero-filmstrip-right { right: 0; animation-direction: reverse; }

@keyframes filmScroll {
  from { background-position: 0 0; }
  to { background-position: 0 40px; }
}

/* Projector beam */
.hero-projector-beam {
  position: absolute;
  top: -50%; left: 50%;
  width: 200%;
  height: 100%;
  transform: translateX(-50%);
  background: conic-gradient(
    from 180deg at 50% 0%,
    transparent 44%,
    rgba(126, 200, 227, 0.03) 46%,
    rgba(126, 200, 227, 0.06) 50%,
    rgba(126, 200, 227, 0.03) 54%,
    transparent 56%
  );
  pointer-events: none;
  animation: projectorFlicker 3s ease-in-out infinite;
}

@keyframes projectorFlicker {
  0%, 100% { opacity: 1; }
  48% { opacity: 1; }
  49% { opacity: 0.6; }
  50% { opacity: 1; }
  77% { opacity: 1; }
  78% { opacity: 0.7; }
  79% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(126, 200, 227, 0.2);
  background: rgba(126, 200, 227, 0.03);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0.08em;
  color: var(--text);
  overflow: hidden;
}

.title-accent {
  color: var(--accent);
  text-shadow: 0 0 60px rgba(126, 200, 227, 0.3), 0 0 120px rgba(126, 200, 227, 0.1);
}

/* Character-by-character reveal */
.title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotateX(-80deg);
  animation: charReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.8s + var(--i) * 0.06s);
}

.title-accent .title-char {
  animation-delay: calc(1.2s + var(--i) * 0.08s);
}

.title-space { display: inline-block; width: 0.3em; }

@keyframes charReveal {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  text-align: justify;
}

/* Countdown */
.hero-countdown { margin-bottom: 2.5rem; }

.countdown-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.countdown-block { text-align: center; }

.countdown-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--accent);
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: 0 0 20px var(--accent-glow);
  min-width: 2.5ch;
}

.countdown-unit {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  margin-top: 0.25rem;
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-muted);
  opacity: 0.4;
  animation: colonPulse 1s ease-in-out infinite;
  align-self: flex-start;
  margin-top: 0.2rem;
}

@keyframes colonPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0; }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
  background: #9dd8ef;
  transform: translateY(-2px);
  box-shadow: 0 4px 30px var(--accent-glow);
}

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

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-large { padding: 1.1rem 2.5rem; font-size: 0.95rem; }

/* Hero scroll */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 0.2; }
}

/* ============================================
   Sections
   ============================================ */

.section {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
}

.section-header { text-align: center; margin-bottom: 4rem; }

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  display: block;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================
   Cinema Reveal Animation
   ============================================ */

.cinema-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cinema-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   About
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-main p {
  color: var(--text-dim);
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(126, 200, 227, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after { opacity: 1; }

.feature-icon-wrap {
  margin-bottom: 1rem;
  opacity: 0.8;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
  position: relative;
  text-align: justify;
}

/* ============================================
   Categories
   ============================================ */

.categories {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 50%, var(--bg) 100%);
}

.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.cat-tab {
  padding: 0.6rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
}

.cat-tab:hover { border-color: var(--accent); color: var(--accent); }

.cat-tab.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.cat-panel {
  display: none;
  animation: panelReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-panel.active { display: block; }

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

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  cursor: pointer;
}

.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(126, 200, 227, 0.05);
}

.cat-card:hover::after { width: 100%; }

.cat-card.thematic:hover::after { background: var(--red); }
.cat-card.digital:hover::after { background: var(--cyan); }
.cat-card.student:hover::after { background: var(--green); }
.cat-card.performance:hover::after { background: var(--purple); }

.cat-number {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.cat-card h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.cat-card p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
  text-align: justify;
}

.cat-badge {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.15rem 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  background: var(--accent);
  color: var(--bg);
}

.badge-red { background: var(--red); color: #fff; }
.badge-gold { background: var(--accent); }
.badge-cyan { background: var(--cyan); color: var(--bg); }
.badge-green { background: var(--green); color: var(--bg); }
.badge-purple { background: var(--purple); color: #fff; }

.honorable-section { margin-top: 2rem; }

.honorable-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.honorable-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--cyan), var(--purple));
}

.honorable-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.honorable-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
  text-align: justify;
}

/* ============================================
   Timeline
   ============================================ */

.timeline-track {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--accent2), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}

.timeline-dot {
  position: absolute;
  left: 13px; top: 8px;
  width: 16px; height: 16px;
  background: var(--bg);
  border: 2px solid var(--accent);
  transition: all 0.3s;
}

.timeline-item:hover .timeline-dot {
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(126, 200, 227, 0.1);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item:hover .timeline-content {
  border-color: rgba(126, 200, 227, 0.3);
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: justify;
}

/* ============================================
   Submit
   ============================================ */

.submit {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 50%, var(--bg) 100%);
}

.submit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.submit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.submit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(126, 200, 227, 0.04), transparent 70%);
  pointer-events: none;
}

.submit-platform { margin-bottom: 2rem; }
.filmfreeway-logo { width: 240px; height: auto; margin-bottom: 0.5rem; }

.submit-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.submit-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.submit-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.detail-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.submit-info {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.submit-requirements { padding: 2rem 0; }

.submit-requirements h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.submit-requirements ul { list-style: none; }

.submit-requirements li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-dim);
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}

.submit-requirements li::before {
  content: '>';
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   CTA
   ============================================ */

.cta-section { padding: 4rem 0; }

.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.cta-card p { color: var(--text-dim); margin-bottom: 1.5rem; }

.cta-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.cta-input:focus { border-color: var(--accent); }
.cta-input::placeholder { color: var(--text-muted); }

/* ============================================
   Footer
   ============================================ */

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-mono);
  transition: all 0.25s;
  cursor: pointer;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.footer-links a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-dim);
  letter-spacing: 0.3em;
  margin-top: 0.5rem;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .submit-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    flex-direction: column;
    background: rgba(5, 5, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    border-left: 1px solid var(--border);
    transition: right 0.3s ease;
  }

  .nav-links.open { right: 0; }

  .hero-filmstrip { width: 30px; }

  .about-features { grid-template-columns: 1fr; }

  .cat-grid { grid-template-columns: 1fr; }
  .cat-tabs { gap: 0.35rem; }
  .cat-tab { font-size: 0.5rem; padding: 0.7rem 0.9rem; min-height: 44px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-form { flex-direction: column; }
  .section { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-filmstrip { display: none; }
}

/* ============================================
   Skip Link
   ============================================ */

.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
}

.skip-link:focus {
  top: 1rem;
}

/* ============================================
   Focus Visible
   ============================================ */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.cat-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cta-input:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.nav-links a:focus-visible::after { width: 100%; }

/* ============================================
   Footer Size Variants
   ============================================ */

.logo-img-sm { height: 28px; }
.logo-text-sm { font-size: 1.1rem; }

/* ============================================
   CTA Note
   ============================================ */

.cta-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-style: italic;
}

/* ============================================
   Animated Glow Boxes & Accent Effects
   ============================================ */

/* Animated corner accents on feature cards */
.feature-card::before {
  background: var(--accent);
  height: 2px;
  width: 100%;
  top: 0; left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(126, 200, 227, 0.06),
    inset 0 1px 0 rgba(126, 200, 227, 0.1);
}

/* Animated glow border on cat cards */
.cat-card {
  border: 1px solid var(--border);
  position: relative;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  right: -1px; bottom: -1px;
  background: linear-gradient(135deg, var(--accent), transparent 40%, transparent 60%, var(--accent2));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
}

.cat-card:hover::before {
  opacity: 0.15;
}

.cat-card:hover {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(126, 200, 227, 0.08);
}

/* Corner bracket accents on section headers */
.section-header {
  position: relative;
}

.section-header::before,
.section-header::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.15;
  transition: opacity 0.4s;
}

.section-header::before {
  top: -15px; left: 50%;
  transform: translateX(-80px);
  border-width: 1px 0 0 1px;
}

.section-header::after {
  top: -15px; left: 50%;
  transform: translateX(50px);
  border-width: 1px 1px 0 0;
}

/* Glowing accent line beneath section titles */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 1rem auto 0;
  box-shadow: 0 0 10px var(--accent-glow), 0 0 20px rgba(126, 200, 227, 0.1);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 10px var(--accent-glow), 0 0 20px rgba(126, 200, 227, 0.1); opacity: 0.8; }
  50% { box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(126, 200, 227, 0.2); opacity: 1; }
}

/* Animated border glow on submit card */
.submit-card {
  position: relative;
}

.submit-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    135deg,
    rgba(126, 200, 227, 0.2),
    transparent 30%,
    transparent 70%,
    rgba(74, 158, 255, 0.15)
  );
  z-index: -1;
  animation: borderShimmer 6s ease-in-out infinite;
}

@keyframes borderShimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Glow dot on timeline */
.timeline-dot {
  box-shadow: 0 0 8px rgba(126, 200, 227, 0.2);
  animation: dotGlow 3s ease-in-out infinite;
}

@keyframes dotGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(126, 200, 227, 0.2); }
  50% { box-shadow: 0 0 16px rgba(126, 200, 227, 0.4), 0 0 30px rgba(126, 200, 227, 0.1); }
}

/* Animated scanning line across hero */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.15;
  z-index: 4;
  animation: scanLine 8s linear infinite;
}

@keyframes scanLine {
  0% { top: 0; }
  100% { top: 100%; }
}

/* Pulsing glow ring on countdown numbers */
.countdown-num {
  position: relative;
}

.countdown-block {
  position: relative;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(126, 200, 227, 0.1);
  background: rgba(126, 200, 227, 0.02);
}

.countdown-block::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: countdownGlow 2s ease-in-out infinite;
}

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

/* CTA card animated border */
.cta-card {
  position: relative;
}

.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              linear-gradient(135deg, var(--accent), transparent, var(--accent2)) border-box;
  opacity: 0.2;
  z-index: -1;
  animation: ctaBorderGlow 4s ease-in-out infinite alternate;
}

@keyframes ctaBorderGlow {
  0% { opacity: 0.1; }
  100% { opacity: 0.3; }
}

/* Badge glow */
.cat-badge {
  box-shadow: 0 0 8px rgba(126, 200, 227, 0.15);
}

.badge-red { box-shadow: 0 0 8px rgba(255, 68, 102, 0.2); }
.badge-gold { box-shadow: 0 0 8px rgba(126, 200, 227, 0.2); }
.badge-cyan { box-shadow: 0 0 8px rgba(126, 200, 227, 0.25); }
.badge-green { box-shadow: 0 0 8px rgba(0, 255, 136, 0.2); }
.badge-purple { box-shadow: 0 0 8px rgba(138, 124, 255, 0.2); }

/* Accent line on nav when scrolled */
.nav.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

/* Animated corner marks on hero badge */
.hero-badge {
  position: relative;
}

.hero-badge::before,
.hero-badge::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.5;
}

.hero-badge::before {
  top: -3px; left: -3px;
  border-width: 1px 0 0 1px;
}

.hero-badge::after {
  bottom: -3px; right: -3px;
  border-width: 0 1px 1px 0;
}

/* Glow on active tab */
.cat-tab.active {
  box-shadow: 0 0 12px rgba(126, 200, 227, 0.2), 0 2px 8px rgba(126, 200, 227, 0.15);
}

/* Subtle animated accent line on footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: glowPulse 4s ease-in-out infinite;
}

/* Accent vertical bar on timeline items */
.timeline-content {
  border-left: 2px solid var(--accent);
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -2px; top: 0;
  width: 2px;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  opacity: 0;
  transition: opacity 0.3s;
}

.timeline-item:hover .timeline-content::before {
  opacity: 1;
}
