/*
Theme Name: Sinteci Theme
Theme URI: https://sinteci.cl
Description: Tema oficial de Sinteci — Sindicato de la Industria Cinematográfica de Chile
Version: 1.0.0
Author: Boostify
Author URI: https://boostify.cl
Text Domain: sinteci
*/

/* ============================================
   SINTECI - Styles
   ============================================ */

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

:root {
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --cinema-red: #c41e3a;
  --zinc-950: #09090b;
  --zinc-900: #18181b;
  --zinc-800: #27272a;
  --zinc-700: #3f3f46;
  --zinc-600: #52525b;
  --zinc-500: #71717a;
  --zinc-400: #a1a1aa;
  --zinc-300: #d4d4d8;
  --zinc-200: #e4e4e7;
  --zinc-100: #f4f4f5;
  --zinc-50: #fafafa;
  --white: #fff;
  --black: #000;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--zinc-950);
  color: var(--zinc-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-width: 320px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--zinc-900);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(39, 39, 42, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

@media (min-width: 640px) {
  .nav {
    padding: 1rem 1.5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, #b8943f 100%);
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--zinc-950);
}

.logo-img {
  height: 3rem;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}

.logo:hover .logo-text {
  color: var(--gold);
}

.nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--zinc-400);
  font-weight: 500;
  transition: color 0.2s;
}

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

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: var(--zinc-400);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 0.75rem 1rem;
  background: var(--zinc-900);
  border-top: 1px solid var(--zinc-800);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  color: var(--zinc-400);
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--zinc-950);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline {
  background: var(--zinc-800);
  color: var(--white);
  border: 1px solid var(--zinc-700);
}

.btn-outline:hover {
  background: var(--zinc-700);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--zinc-950);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(9, 9, 11, 0.7) 0%,
    rgba(9, 9, 11, 0.8) 50%,
    rgba(24, 24, 27, 1) 100%
  );
}

.hero-blob {
  display: none;
}

.blob-gold {
  top: 25%;
  left: 25%;
  background: rgba(212, 168, 83, 0.05);
}

.blob-red {
  bottom: 25%;
  right: 25%;
  background: rgba(196, 30, 58, 0.05);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 6rem 1rem 4rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 8rem 1.5rem 5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(39, 39, 42, 0.5);
  border: 1px solid rgba(63, 63, 70, 0.5);
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.hero-badge .pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-badge span {
  font-size: 0.875rem;
  color: var(--zinc-400);
}

.hero h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

@media (min-width: 480px) {
  .hero h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--zinc-400);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .hero p {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    margin-top: 2.5rem;
    padding: 0;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: var(--zinc-500);
}

@media (min-width: 640px) {
  .hero-stats {
    font-size: 0.875rem;
    gap: 2rem;
    margin-top: 4rem;
  }
}

.hero-stats div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-stats .check {
  color: var(--gold);
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-0.5rem); }
}

/* ============================================
   Sections Common
   ============================================ */
.section {
  padding: 3rem 1rem;
}

@media (min-width: 640px) {
  .section {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 5rem 1.5rem;
  }
}

.section-dark {
  background: var(--zinc-900);
}

.container {
  max-width: 80rem;
  margin: 0 auto;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tag .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
}

.section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

@media (min-width: 640px) {
  .section h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .section h2 {
    font-size: 2.5rem;
  }
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--zinc-400);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
}

.link {
  color: var(--gold);
  font-weight: 500;
}

.link:hover {
  color: var(--gold-light);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .stats-grid {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
}

.stat-card {
  padding: 1rem;
  background: rgba(39, 39, 42, 0.5);
  border: 1px solid rgba(63, 63, 70, 0.5);
  border-radius: 1rem;
  transition: all 0.2s;
}

@media (min-width: 640px) {
  .stat-card {
    padding: 1.5rem;
  }
}

.stat-card:hover {
  border-color: rgba(212, 168, 83, 0.5);
}

.stat-card:hover .stat-value {
  color: var(--gold);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  transition: color 0.2s;
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--zinc-500);
}

/* ============================================
   News Section
   ============================================ */
.news-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(39, 39, 42, 0.3);
  border: 1px solid rgba(63, 63, 70, 0.3);
  border-radius: 0.75rem;
  transition: all 0.2s;
}

.news-item:hover {
  border-color: rgba(212, 168, 83, 0.3);
  background: rgba(39, 39, 42, 0.5);
}

.news-item:hover h4 {
  color: var(--gold);
}

.news-item:hover .news-icon svg,
.news-item:hover .news-arrow {
  color: var(--gold);
}

.news-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(63, 63, 70, 0.5);
  border-radius: 0.5rem;
}

.news-icon svg {
  color: var(--zinc-400);
  transition: color 0.2s;
}

.news-content {
  flex: 1;
  min-width: 0;
}

.news-category {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
}

.news-date {
  font-size: 0.75rem;
  color: var(--zinc-500);
}

.news-item h4 {
  font-weight: 500;
  color: var(--white);
  margin-top: 0.25rem;
  transition: color 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-arrow {
  flex-shrink: 0;
  color: var(--zinc-500);
  transition: color 0.2s;
}

/* ============================================
   Apps Grid
   ============================================ */
.apps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.app-card {
  padding: 1.5rem;
  background: rgba(9, 9, 11, 0.5);
  border: 1px solid var(--zinc-800);
  border-radius: 1rem;
  transition: all 0.2s;
}

.app-card:hover {
  border-color: rgba(212, 168, 83, 0.5);
  background: rgba(9, 9, 11, 0.8);
}

.app-card:hover h3 {
  color: var(--gold);
}

.app-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.bg-emerald { background: rgba(16, 185, 129, 0.2); }
.bg-blue { background: rgba(59, 130, 246, 0.2); }
.bg-purple { background: rgba(168, 85, 247, 0.2); }
.bg-amber { background: rgba(245, 158, 11, 0.2); }
.bg-rose { background: rgba(244, 63, 94, 0.2); }
.bg-cyan { background: rgba(6, 182, 212, 0.2); }

.app-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}

.app-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--zinc-500);
}

.app-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: all 0.2s;
}

.app-card:hover .app-link {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   FAQs
   ============================================ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 0.75rem;
  background: rgba(39, 39, 42, 0.5);
  border: 1px solid rgba(63, 63, 70, 0.5);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-trigger:hover {
  background: rgba(39, 39, 42, 0.5);
}

.faq-trigger svg {
  flex-shrink: 0;
  color: var(--zinc-500);
  transition: transform 0.2s;
}

.faq-trigger.active svg {
  transform: rotate(180deg);
}

.faq-content {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.faq-content.open {
  display: block;
}

.faq-content p {
  color: var(--zinc-400);
  line-height: 1.7;
}

/* Safety Stats */
.safety-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.safety-stat {
  padding: 1.5rem;
  background: rgba(9, 9, 11, 0.5);
  border: 1px solid var(--zinc-800);
  border-radius: 1rem;
}

.safety-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

@media (min-width: 1024px) {
  .safety-value {
    font-size: 3rem;
  }
}

.safety-change {
  font-size: 0.875rem;
  font-weight: 600;
  color: #34d399;
  margin-left: 0.5rem;
}

.safety-label {
  font-size: 0.875rem;
  color: var(--zinc-500);
  margin-top: 0.25rem;
}

/* Protocols Grid */
.protocols-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .protocols-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .protocols-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.protocol-card {
  padding: 1.5rem;
  background: rgba(9, 9, 11, 0.5);
  border: 1px solid var(--zinc-800);
  border-radius: 1rem;
  transition: all 0.2s;
}

.protocol-card:hover {
  border-color: rgba(212, 168, 83, 0.5);
  background: rgba(9, 9, 11, 0.8);
}

.protocol-card:hover h3 {
  color: var(--gold);
}

.protocol-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.protocol-icon {
  font-size: 2rem;
}

.protocol-category {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--zinc-400);
  background: var(--zinc-800);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.protocol-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}

.protocol-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--zinc-500);
}

.protocol-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: all 0.2s;
}

.protocol-card:hover .protocol-link {
  opacity: 1;
  transform: translateX(0);
}

/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jobs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.job-category {
  padding: 1.5rem;
  background: rgba(39, 39, 42, 0.3);
  border: 1px solid rgba(63, 63, 70, 0.3);
  border-radius: 1rem;
  transition: all 0.2s;
}

.job-category:hover {
  border-color: rgba(212, 168, 83, 0.3);
}

.job-category h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.job-category ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.job-category li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--zinc-400);
}

.job-category li .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--zinc-600);
  flex-shrink: 0;
}

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab {
  padding: 0.5rem 1rem;
  background: var(--zinc-800);
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-400);
  cursor: pointer;
  transition: all 0.2s;
}

.tab:hover {
  color: var(--white);
}

.tab.active {
  background: var(--gold);
  color: var(--zinc-950);
}

/* Table */
.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 500px;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  table {
    min-width: 800px;
    font-size: 1rem;
  }
}

thead tr {
  border-bottom: 1px solid var(--zinc-800);
}

th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-400);
}

tbody tr {
  border-bottom: 1px solid rgba(39, 39, 42, 0.5);
  transition: background 0.2s;
}

tbody tr:hover {
  background: rgba(39, 39, 42, 0.3);
}

td {
  padding: 1rem 1.5rem;
  font-weight: 500;
}

td:first-child {
  color: var(--white);
}

.text-emerald {
  color: #34d399;
}

.table-warning {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(9, 9, 11, 0.5);
  border: 1px solid var(--zinc-800);
  border-radius: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--zinc-500);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  background: rgba(9, 9, 11, 0.5);
  border: 1px solid var(--zinc-800);
  border-radius: 1rem;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: rgba(212, 168, 83, 0.5);
  background: rgba(9, 9, 11, 0.8);
}

.feature-card:hover h3 {
  color: var(--gold);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}

.feature-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--zinc-500);
}

.feature-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: all 0.2s;
}

.feature-card:hover .feature-link {
  opacity: 1;
  transform: translateX(0);
}

/* About Section */
.about-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
}

.about-content p {
  font-size: 1.125rem;
  color: var(--zinc-400);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.mission-vision {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission-vision h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.mission-vision p {
  font-size: 1rem;
  color: var(--zinc-400);
  margin: 0;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.board-card,
.commissions-card {
  padding: 1.5rem;
  background: rgba(9, 9, 11, 0.5);
  border: 1px solid var(--zinc-800);
  border-radius: 1rem;
}

.board-card h3,
.commissions-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.board-card ul,
.commissions-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.board-card li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--zinc-800);
  color: var(--white);
}

.board-card li:last-child {
  border-bottom: none;
}

.board-card span {
  font-size: 0.875rem;
  color: var(--zinc-500);
}

.commissions-card li {
  font-size: 0.875rem;
  color: var(--zinc-400);
}

.commissions-card li span {
  color: var(--white);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 4rem 1.5rem 2rem;
  background: var(--zinc-950);
  border-top: 1px solid var(--zinc-800);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand p {
  max-width: 20rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--zinc-400);
}

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

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zinc-800);
  border-radius: 0.5rem;
  color: var(--zinc-400);
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--zinc-700);
  color: var(--gold);
}

.footer-links h3 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: var(--zinc-400);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--zinc-800);
  font-size: 0.875rem;
  color: var(--zinc-500);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--zinc-500);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-dev {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--zinc-600);
}

.footer-dev a {
  color: var(--zinc-500);
  transition: color 0.2s;
}

.footer-dev a:hover {
  color: var(--gold);
}

/* ============================================
   Accident CTA
   ============================================ */
.accident-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(196, 30, 58, 0.08);
  border: 1px solid rgba(196, 30, 58, 0.3);
  border-radius: 1rem;
  flex-wrap: wrap;
}

.accident-cta-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.accident-cta-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.accident-cta h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.accident-cta p {
  font-size: 0.875rem;
  color: var(--zinc-400);
}

.btn-cinema {
  background: var(--cinema-red);
  color: var(--white);
  flex-shrink: 0;
}

.btn-cinema:hover {
  background: #e02445;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ============================================
   Manual Card
   ============================================ */
.manual-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(9, 9, 11, 0.5);
  border: 1px solid var(--zinc-800);
  border-radius: 1rem;
  flex-wrap: wrap;
}

.manual-card-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.manual-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.manual-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.manual-card p {
  font-size: 0.875rem;
  color: var(--zinc-400);
}

.manual-badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.2rem 0.75rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #f59e0b;
}

/* ============================================
   Orgs Grid
   ============================================ */
.orgs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .orgs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .orgs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.org-card {
  display: block;
  padding: 1.25rem;
  background: rgba(39, 39, 42, 0.3);
  border: 1px solid rgba(63, 63, 70, 0.3);
  border-radius: 0.75rem;
  transition: all 0.2s;
}

.org-card:hover {
  border-color: rgba(212, 168, 83, 0.4);
  background: rgba(39, 39, 42, 0.5);
}

.org-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.org-card p {
  font-size: 0.8125rem;
  color: var(--zinc-500);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.org-link {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.2s;
}

.org-card:hover .org-link {
  color: var(--gold-light);
}

/* ============================================
   Modals
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--zinc-900);
  border: 1px solid var(--zinc-700);
  border-radius: 1rem;
  width: 100%;
  max-width: 36rem;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--zinc-800);
  position: sticky;
  top: 0;
  background: var(--zinc-900);
  z-index: 1;
}

.modal-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.modal-close {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zinc-800);
  border: none;
  border-radius: 0.5rem;
  color: var(--zinc-400);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: all 0.2s;
  flex-shrink: 0;
}

.modal-close:hover {
  background: var(--zinc-700);
  color: var(--white);
}

.modal-form {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--zinc-300);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.625rem 0.875rem;
  background: var(--zinc-800);
  border: 1px solid var(--zinc-700);
  border-radius: 0.5rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 5rem;
}

.form-group select option {
  background: var(--zinc-800);
}

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.form-radio-group label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  font-weight: 400;
  color: var(--zinc-400);
  font-size: 0.875rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--zinc-500);
  text-align: center;
  margin-top: 0.25rem;
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 0.75rem;
  text-align: center;
  color: #34d399;
  font-weight: 500;
}

.form-error {
  display: none;
  padding: 1rem;
  background: rgba(196, 30, 58, 0.1);
  border: 1px solid rgba(196, 30, 58, 0.3);
  border-radius: 0.75rem;
  text-align: center;
  color: #f87171;
  font-weight: 500;
}
