/* ═══════════════════════════════════════════════
   Solara — Script Runtime
   Minimal design system: dark violet, clean lines
   ═══════════════════════════════════════════════ */

:root {
  --bg: #0b0a0f;
  --card: rgba(22, 20, 30, 0.95);
  --card-deep: rgba(11, 10, 15, 0.55);
  --border: rgba(52, 46, 70, 0.95);
  --border-soft: rgba(52, 46, 70, 0.6);
  --text: #e8e5f0;
  --heading: #f4f2fa;
  --muted: #a29db5;
  --accent: #8b5cf6;
  --accent-bright: #a78bfa;
  --accent-glow: rgba(139, 92, 246, 0.45);
  --accent-soft: rgba(139, 92, 246, 0.12);
  --accent-line: rgba(139, 92, 246, 0.25);
  --green: #34d399;
  --red: #f87171;
  --frost-link: var(--accent-bright);
  --radius: 8px;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Consolas, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(70% 50% at 50% 0%, rgba(139, 92, 246, 0.07), transparent 60%),
    linear-gradient(rgba(244, 242, 250, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 250, 0.025) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-head); color: var(--heading); line-height: 1.2; }

a { color: var(--accent-bright); text-decoration: none; }

img { display: block; }

/* ═══════════ ICONS ═══════════ */

.ic {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
}
.ic-lg { width: 24px; height: 24px; }
.ic-star { width: 14px; height: 14px; color: var(--accent-bright); }

/* ═══════════ SCROLL PROGRESS ═══════════ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 300;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
}

/* ═══════════ BUTTONS ═══════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-sm { padding: 8px 18px; font-size: 13.5px; }
.btn-lg { padding: 13px 32px; font-size: 15.5px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #6d4ae0 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px var(--accent-glow);
  transform: translateY(-1px);
}
.btn-primary:disabled { opacity: 0.6; cursor: wait; transform: none; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
  color: var(--heading);
}
.btn-ghost:hover { border-color: var(--accent-line); background: var(--accent-soft); }

/* ═══════════ BADGES / PILLS ═══════════ */

.eyebrow-badge {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pill {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}

/* ═══════════ NAV ═══════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 62px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
}
.brand img { border-radius: 6px; }

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--heading); }

/* ═══════════ HERO ═══════════ */

.hero { padding: 96px 0 72px; text-align: center; }

.hero-title {
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-title-accent {
  background: linear-gradient(120deg, var(--accent-bright) 0%, #c4b5fd 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.type-cursor {
  color: var(--accent-bright);
  animation: blink 0.9s steps(1) infinite;
  font-weight: 500;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-subtitle {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.stat-value {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--heading);
}
.stat-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ═══════════ SCREENSHOT CAROUSEL ═══════════ */

.shot-frame {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(13, 12, 19, 0.96);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.shot-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-soft);
}

.shot-dots { display: flex; gap: 6px; }
.shot-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.09); }

.shot-mark { border-radius: 4px; margin-left: 6px; }

.shot-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.shot-viewport { overflow: hidden; }

.shot-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.shot-slide { min-width: 100%; }
.shot-slide img {
  width: 100%;
  height: auto;
  display: block;
  background: #08070c;
}

.shot-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px;
  border-top: 1px solid var(--border-soft);
}

.shot-arrow {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}
.shot-arrow:hover { color: var(--heading); border-color: var(--accent-line); background: var(--accent-soft); }

.shot-dots-nav { display: flex; gap: 8px; }

.shot-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}
.shot-dot.active {
  background: var(--accent-bright);
  width: 22px;
  box-shadow: 0 0 8px var(--accent-glow);
}

.shot-captions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 900px;
  margin: 18px auto 0;
}

.shot-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13.5px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.shot-caption .ic { color: var(--accent-bright); }

/* ═══════════ SECTIONS ═══════════ */

.section { padding: 84px 0; }
.section-alt {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(26px, 3.8vw, 38px); font-weight: 800; letter-spacing: -0.01em; }
.section-desc { color: var(--muted); margin-top: 10px; font-size: 16px; }

.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  border-color: var(--accent-line);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

/* ═══════════ FEATURES ═══════════ */

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-bright);
}

.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14.5px; }

/* ═══════════ REVIEWS ═══════════ */

.review-card { display: flex; flex-direction: column; }

.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }

.review-text {
  color: var(--text);
  font-size: 14.5px;
  flex: 1;
  margin-bottom: 18px;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #6d4ae0 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name { color: var(--heading); font-weight: 700; font-size: 13.5px; }

/* ═══════════ TIMELINE + FAQ ═══════════ */

.updates-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.timeline { position: relative; padding-left: 26px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--accent-line), transparent);
}

.timeline-item { position: relative; padding-bottom: 30px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -26px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-ver { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--heading); }
.timeline-date {
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 2px 0 6px;
}
.timeline-item p { color: var(--muted); font-size: 14.5px; }

.faq { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--accent-line); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  color: var(--heading);
  font-size: 15px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron { color: var(--accent-bright); transition: transform 0.2s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer { padding: 0 20px 18px; color: var(--muted); font-size: 14.5px; }
.faq-answer strong { color: var(--accent-bright); }

/* ═══════════ INSTALL ═══════════ */

.install-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.install-step:hover { border-color: var(--accent-line); transform: translateY(-2px); }

.step-num {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent-bright);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.install-step h3 { font-size: 16.5px; margin-bottom: 7px; }
.install-step p { color: var(--muted); font-size: 13.5px; }

/* ═══════════ CTA ═══════════ */

.cta-section { padding-top: 36px; }

.cta-banner {
  text-align: center;
  padding: 64px 32px;
  border-radius: 12px;
  border: 1px solid var(--accent-line);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(139, 92, 246, 0.13), transparent 60%),
    var(--card);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
}
.cta-banner h2 { font-size: clamp(26px, 3.8vw, 36px); font-weight: 800; margin-bottom: 10px; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 24px;
}

.cta-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* ═══════════ FOOTER ═══════════ */

.footer {
  border-top: 1px solid var(--border-soft);
  padding: 44px 0 26px;
  background: rgba(255, 255, 255, 0.01);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 320px; }

.footer-heading { color: var(--heading); font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: var(--muted); font-size: 14px; }
.footer-nav a:hover { color: var(--heading); }

.footer-legal {
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
  color: var(--muted);
  font-size: 12.5px;
  opacity: 0.7;
}

/* ═══════════ MODAL ═══════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 4, 8, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  width: 100%;
  max-width: 500px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  padding: 32px 30px 26px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.2s ease;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.modal-close:hover { color: var(--heading); border-color: var(--accent-line); }

.modal-title { font-size: 23px; font-weight: 800; margin-bottom: 4px; }
.modal-sub { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.modal-file { font-family: var(--font-mono); color: var(--accent-bright); font-weight: 700; font-size: 13px; }

.modal-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
  counter-reset: step;
}
.modal-steps li {
  counter-increment: step;
  background: var(--card-deep);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 13px 16px 13px 50px;
  position: relative;
}
.modal-steps li::before {
  content: counter(step);
  position: absolute;
  left: 13px;
  top: 13px;
  width: 25px;
  height: 25px;
  border-radius: 6px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent-bright);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-step-title { font-weight: 700; color: var(--heading); font-size: 14.5px; }
.modal-step-desc { color: var(--muted); font-size: 13.5px; margin-top: 3px; }

.dl-highlight { font-weight: 700; }
.dl-highlight--frost { color: var(--accent-bright); }
.dl-highlight--green { color: var(--green); }

.chip {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 6px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent-bright);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.chip:hover { background: rgba(139, 92, 246, 0.22); }

.password-box {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 10, 15, 0.7);
  border: 1px dashed var(--accent-line);
  border-radius: var(--radius);
  padding: 10px 12px;
}
.password-box code {
  font-family: var(--font-mono);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--accent-bright);
  letter-spacing: 0.08em;
  flex: 1;
}
.password-box-lg { justify-content: center; margin: 16px 0 22px; }
.password-box-lg code { font-size: 20px; }

.scan-box {
  background: var(--card-deep);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 13px 15px;
  margin-bottom: 16px;
}
.scan-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
  font-size: 13px;
}
.scan-label { font-weight: 700; color: var(--heading); }
.scan-status { color: var(--muted); font-size: 12.5px; }
.scan-status.done { color: var(--green); font-weight: 700; }

.scan-bar {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.scan-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-bright) 100%);
  transition: width 0.3s ease;
}

.modal-hint { text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 13px; }

.success-icon {
  width: 56px;
  height: 56px;
  margin: 8px auto 16px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

#modal-success { text-align: center; }

.success-steps {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 22px;
}
.success-steps li {
  background: var(--card-deep);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 12px 15px;
  font-size: 14px;
  color: var(--text);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.success-steps li .ic { color: var(--accent-bright); margin-top: 2px; }

body.modal-open { overflow: hidden; }

/* ═══════════ TOASTS ═══════════ */

.toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 180;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 16px 11px 11px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
  animation: toastIn 0.35s ease forwards;
  max-width: 330px;
}
.toast.hide { animation: toastOut 0.3s ease forwards; }

.toast-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #6d4ae0 100%);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toast-text { font-size: 13px; color: var(--text); }
.toast-text strong { color: var(--heading); }
.toast-text .toast-action { color: var(--accent-bright); font-weight: 700; }
.toast-time { display: block; color: var(--muted); font-size: 11.5px; margin-top: 1px; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-24px); }
}

/* ═══════════ SETTING ROWS (shared with admin) ═══════════ */

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--border-soft);
}
.setting-name { font-weight: 700; color: var(--heading); font-size: 14px; }
.setting-desc { color: var(--muted); font-size: 12.5px; }

.switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.switch span::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  background: var(--muted);
  transition: transform 0.2s ease, background 0.2s ease;
}
.switch input:checked + span { background: var(--accent-soft); border-color: var(--accent-line); }
.switch input:checked + span::before { transform: translateX(20px); background: var(--accent-bright); }

/* ═══════════ REVEAL ═══════════ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .updates-layout { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .shot-captions { grid-template-columns: 1fr; }
  .hero { padding: 68px 0 52px; }
  .hero-stats { gap: 28px; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 60px 0; }
}
