/* ═══════════════════════════════════════════
   Launch54 — Design System
   Aesthetic: Bold editorial, bright & energetic
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Variables ─────────────────────────────── */
:root {
  --brand:        #FF4F1F;
  --brand-light:  #FF6B3D;
  --brand-dark:   #D93A0A;
  --brand-bg:     #FFF3EF;

  --accent:       #FFD700;
  --accent-blue:  #1A6DFF;
  --accent-green: #00C47A;
  --accent-purple:#7B3FE4;

  --dark:         #0D0D0D;
  --dark-2:       #1A1A1A;
  --dark-3:       #2A2A2A;

  --gray-1:       #3D3D3D;
  --gray-2:       #6B6B6B;
  --gray-3:       #9B9B9B;
  --gray-4:       #C8C8C8;
  --gray-5:       #E8E8E8;
  --gray-6:       #F5F5F5;

  --white:        #FFFFFF;

  --success:      #00C47A;
  --warning:      #FFB800;
  --danger:       #FF3B30;
  --info:         #1A6DFF;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:       0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-brand: 0 8px 32px rgba(255,79,31,.28);
  --shadow-spotlight: 0 0 0 3px var(--accent), 0 12px 48px rgba(255,215,0,.25);

  --transition:   0.18s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.35s cubic-bezier(.4,0,.2,1);

  --header-h:     68px;
  --content-w:    1280px;
  --sidebar-w:    320px;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul, ol { list-style: none; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { line-height: 1.7; }

/* ── Layout ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 24px;
}
.layout-main {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) {
  .layout-main { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

/* ── Header ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-5);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
  flex-shrink: 0;
}
.site-logo .logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--brand);
  color: white;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 800;
}
.site-logo span em {
  color: var(--brand);
  font-style: normal;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.header-nav a {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .9rem;
  color: var(--gray-1);
  transition: background var(--transition), color var(--transition);
}
.header-nav a:hover, .header-nav a.active {
  background: var(--gray-6);
  color: var(--dark);
}

.header-search {
  position: relative;
  flex: 0 0 260px;
}
.header-search input {
  width: 100%;
  height: 38px;
  padding: 0 14px 0 38px;
  border: 1.5px solid var(--gray-5);
  border-radius: 100px;
  background: var(--gray-6);
  font-size: .875rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.header-search input:focus {
  border-color: var(--brand);
  background: var(--white);
}
.header-search .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-3);
  pointer-events: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 2px 8px rgba(255,79,31,.3);
}
.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: var(--shadow-brand);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--gray-6);
  color: var(--dark);
  border: 1.5px solid var(--gray-5);
}
.btn-secondary:hover {
  background: var(--gray-5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn-outline:hover {
  background: var(--brand-bg);
}
.btn-dark {
  background: var(--dark);
  color: white;
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-1px);
}
.btn-sm { padding: 6px 14px; font-size: .8rem; }
.btn-lg { padding: 13px 28px; font-size: 1rem; }
.btn-icon { padding: 9px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ── Cards ───────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-5);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); }

/* Launch card */
.launch-card {
  background: var(--white);
  border: 1px solid var(--gray-5);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.launch-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gray-4);
}
.launch-card.is-featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-bg), var(--shadow);
}
.launch-card.is-spotlight {
  border-color: var(--accent);
  box-shadow: var(--shadow-spotlight);
}
.launch-card.is-staff-pick::after {
  content: '⭐ Staff Pick';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.launch-card-hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--gray-6);
}
.launch-card-hero-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--gray-6) 0%, var(--gray-5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  font-size: 2.5rem;
}
.launch-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.launch-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.launch-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.3;
}
.launch-card-tagline {
  font-size: .875rem;
  color: var(--gray-2);
  line-height: 1.5;
  flex: 1;
}
.launch-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-6);
  margin-top: auto;
}

/* Launch grid */
.launches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
@media (max-width: 640px) {
  .launches-grid { grid-template-columns: 1fr; }
}

/* ── Badges & Tags ───────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1;
}
.badge-category {
  background: var(--gray-6);
  color: var(--gray-1);
}
.badge-premium  { background: var(--brand-bg);   color: var(--brand); }
.badge-featured { background: #FFF3CD;            color: #92600A; }
.badge-spotlight{ background: #FFF3CD; color: #92600A; border: 1.5px solid var(--accent); }
.badge-new      { background: #E8F5FF; color: var(--accent-blue); }
.badge-staff    { background: var(--accent); color: var(--dark); }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  background: var(--gray-6);
  color: var(--gray-1);
  border: 1px solid var(--gray-5);
  transition: all var(--transition);
  cursor: pointer;
}
.tag:hover {
  background: var(--brand-bg);
  color: var(--brand);
  border-color: var(--brand);
}

/* ── Vote button ─────────────────────────────── */
.vote-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-5);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--gray-2);
  transition: all var(--transition);
  line-height: 1;
}
.vote-btn svg { width: 16px; height: 16px; }
.vote-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-bg);
}
.vote-btn.voted {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
  box-shadow: var(--shadow-brand);
}

/* ── Forms ───────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-weight: 600;
  font-size: .875rem;
  color: var(--dark);
}
.form-label span { color: var(--danger); }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-5);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .9rem;
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--brand); }
.form-control::placeholder { color: var(--gray-3); }
.form-control.is-invalid { border-color: var(--danger); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-hint { font-size: .8rem; color: var(--gray-2); }
.form-error { font-size: .8rem; color: var(--danger); }

/* ── Alerts ──────────────────────────────────── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  border-left: 4px solid;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-success { background: #EDFAF4; border-color: var(--success); color: #015E3A; }
.alert-danger   { background: #FFF0F0; border-color: var(--danger);  color: #8B0000; }
.alert-warning  { background: #FFF8E6; border-color: var(--warning); color: #7A4F00; }
.alert-info     { background: #EEF4FF; border-color: var(--info);    color: #0A3070; }

/* ── Hero / Spotlight sections ───────────────── */
.hero-section {
  background: var(--dark);
  color: white;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,79,31,.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,215,0,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section h1 { color: white; }
.hero-section p  { color: rgba(255,255,255,.7); max-width: 600px; font-size: 1.1rem; }

/* ── Section headings ───────────────────────── */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.section-heading h2 {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading h2 .icon {
  width: 32px; height: 32px;
  background: var(--brand-bg);
  color: var(--brand);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

/* ── Category pills row ──────────────────────── */
.categories-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--gray-6);
  border: 1.5px solid var(--gray-5);
  font-weight: 600;
  font-size: .85rem;
  color: var(--gray-1);
  transition: all var(--transition);
  cursor: pointer;
}
.category-pill:hover, .category-pill.active {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
  box-shadow: 0 4px 12px rgba(255,79,31,.25);
}
.category-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: .5;
}

/* ── Upvote / stats bar ──────────────────────── */
.stats-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .82rem;
  color: var(--gray-2);
}
.stats-row .stat {
  display: flex;
  align-items: center;
  gap: 4px;
}
.stats-row svg { width: 14px; height: 14px; }

/* ── Ad banner ───────────────────────────────── */
.ad-banner {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-6);
  border: 1px solid var(--gray-5);
  text-align: center;
}
.ad-banner img { width: 100%; display: block; }
.ad-label {
  font-size: .68rem;
  color: var(--gray-3);
  text-align: center;
  padding: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Premium listing highlight ───────────────── */
.launch-card.is-spotlight .launch-card-hero {
  border-bottom: 3px solid var(--accent);
}
.premium-strip {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: white;
  text-align: center;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

/* ── Rating stars ────────────────────────────── */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gray-4);
  font-size: 1rem;
  cursor: pointer;
}
.stars .star.active, .stars .star.filled { color: var(--accent); }
.stars .star:hover, .stars .star:hover ~ .star { color: var(--gray-4); }
.stars:hover .star { color: var(--accent); }
.stars .star:hover ~ .star { color: var(--gray-4) !important; }

/* ── Comments ────────────────────────────────── */
.comment {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-6);
}
.comment-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-5);
  flex-shrink: 0;
  object-fit: cover;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .875rem;
  color: var(--gray-2);
}
.comment-body { flex: 1; }
.comment-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.comment-author {
  font-weight: 600;
  font-size: .875rem;
  color: var(--dark);
}
.comment-time { font-size: .78rem; color: var(--gray-3); }
.comment-text { font-size: .9rem; line-height: 1.6; color: var(--dark); }
.comment-reply { margin-left: 50px; }

/* ── Pagination ──────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  padding: 40px 0 20px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .875rem;
  border: 1.5px solid var(--gray-5);
  color: var(--gray-1);
  transition: all var(--transition);
}
.pagination a:hover  { border-color: var(--brand); color: var(--brand); }
.pagination .active  { background: var(--brand); border-color: var(--brand); color: white; }
.pagination .disabled{ opacity: .4; cursor: not-allowed; }

/* ── Staff picks strip ───────────────────────── */
.staff-picks-section {
  background: var(--dark);
  padding: 48px 0;
  margin: 48px 0;
}
.staff-picks-section .section-heading h2 { color: white; }
.staff-picks-section .section-heading h2 .icon {
  background: rgba(255,215,0,.15);
  color: var(--accent);
}

/* ── Footer ──────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 60px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .site-logo { color: white; margin-bottom: 12px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-col a {
  display: block;
  font-size: .875rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

/* ── Admin ───────────────────────────────────── */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--dark-2);
  padding: 24px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar .logo {
  padding: 0 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 16px;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  font-weight: 500;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav a:hover {
  background: rgba(255,255,255,.05);
  color: white;
}
.admin-nav a.active {
  background: rgba(255,79,31,.12);
  color: var(--brand-light);
  border-left-color: var(--brand);
}
.admin-nav .nav-section {
  padding: 16px 20px 6px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.25);
}
.admin-content { padding: 32px; background: var(--gray-6); }
.admin-stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-5);
}
.admin-stat-card .stat-label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-2);
  margin-bottom: 8px;
}
.admin-stat-card .stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
}
.admin-stat-card .stat-change {
  font-size: .8rem;
  color: var(--success);
  margin-top: 4px;
}

/* ── Table ───────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-5);
}
.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-2);
  background: var(--gray-6);
  border-bottom: 1px solid var(--gray-5);
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-6);
  font-size: .875rem;
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--gray-6); }

/* ── Misc utilities ──────────────────────────── */
.text-brand   { color: var(--brand); }
.text-muted   { color: var(--gray-2); }
.text-sm      { font-size: .875rem; }
.text-xs      { font-size: .78rem; }
.text-center  { text-align: center; }
.font-bold    { font-weight: 700; }
.font-display { font-family: var(--font-display); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.gap-2 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.divider {
  border: none;
  border-top: 1px solid var(--gray-5);
  margin: 24px 0;
}

/* ── Animations ─────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,79,31,.4); }
  70%  { box-shadow: 0 0 0 10px rgba(255,79,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,79,31,0); }
}
.animate-in { animation: fadeIn .4s ease forwards; }

/* ── Loading skeleton ────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--gray-6) 25%, var(--gray-5) 50%, var(--gray-6) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
  .header-nav    { display: none; }
  .header-search { display: none; }
  :root { --header-h: 60px; }
  .hero-section  { padding: 48px 0 40px; }
  .admin-layout  { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
}
