/* ================================================
   DistroDrift Marketing — Shared Styles
   Extracted from inline <style> blocks for caching
   ================================================ */

/* ── VARIABLES ── */
:root {
  --base-100: #1d232a;
  --base-200: #191e24;
  --base-300: #15191e;
  --base-content: #a6adbb;
  --primary: #7480ff;
  --primary-dim: rgba(116,128,255,0.12);
  --success: #00a96e;
  --warning: #ffbe00;
  --error: #ff6b6b;
  --info: #00b5ff;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--base-100);
  color: var(--base-content);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(25,30,36,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 700; font-size: 1.1rem; color: #e4e8f2;
  text-decoration: none;
}
.nav-brand img { height: 32px; width: 32px; }
.nav-links {
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-link {
  color: var(--base-content); font-size: 0.875rem;
  text-decoration: none; font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: #e4e8f2; }
.nav-link.active { color: #e4e8f2; }
.nav-cta {
  background: var(--primary); color: #fff;
  padding: 0.45rem 1.2rem; border-radius: 8px;
  font-weight: 600; font-size: 0.875rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── NAV MOBILE TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #e4e8f2;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: 8rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(116,128,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0,181,255,0.08) 0%, transparent 55%),
    var(--base-100);
}
.page-hero-grid {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  background-image:
    linear-gradient(rgba(116,128,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116,128,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}
.page-hero-inner { position: relative; max-width: 720px; margin: 0 auto; }
.page-hero-eyebrow {
  display: inline-block;
  background: var(--primary-dim); color: var(--primary);
  border: 1px solid rgba(116,128,255,0.3);
  border-radius: 999px; padding: 0.3rem 1rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.1;
  color: #e4e8f2; letter-spacing: -0.02em;
}
.page-hero h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--info) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-sub {
  margin: 1.2rem auto 0;
  max-width: 55ch; font-size: 1.05rem; color: var(--base-content);
  opacity: 0.85;
}

/* ── HOMEPAGE HERO (full-height) ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(116,128,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0,181,255,0.08) 0%, transparent 55%),
    var(--base-100);
}
.hero-grid {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  background-image:
    linear-gradient(rgba(116,128,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116,128,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}
.hero-inner { position: relative; max-width: 760px; }
.hero-logo { width: min(200px, 48vw); margin: 0 auto 1.5rem; display: block; }
.hero-eyebrow {
  display: inline-block;
  background: var(--primary-dim); color: var(--primary);
  border: 1px solid rgba(116,128,255,0.3);
  border-radius: 999px; padding: 0.3rem 1rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800; line-height: 1.1;
  color: #e4e8f2; letter-spacing: -0.02em;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--info) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  margin: 1.2rem auto 0;
  max-width: 55ch; font-size: 1.1rem; color: var(--base-content);
  opacity: 0.85;
}
.hero-actions {
  margin-top: 2.2rem;
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-top: 2.5rem;
}
.chip {
  border-radius: 999px; font-size: 0.75rem; font-weight: 600;
  padding: 0.28rem 0.75rem; border: 1px solid transparent;
}
.chip-green  { color: #22c55e; background: rgba(34,197,94,0.1);  border-color: rgba(34,197,94,0.3); }
.chip-blue   { color: var(--info); background: rgba(0,181,255,0.1); border-color: rgba(0,181,255,0.3); }
.chip-yellow { color: var(--warning); background: rgba(255,190,0,0.1); border-color: rgba(255,190,0,0.3); }
.chip-purple { color: var(--primary); background: var(--primary-dim); border-color: rgba(116,128,255,0.3); }

/* ── SECTIONS ── */
section { padding: 5rem 1.5rem; }
.section-label {
  text-align: center; text-transform: uppercase;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--primary); margin-bottom: 0.75rem;
}
.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800; color: #e4e8f2;
  letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.section-sub {
  text-align: center; max-width: 52ch;
  margin: 0 auto 3rem; color: var(--base-content); opacity: 0.8;
}
.container { max-width: 1100px; margin: 0 auto; }
.alt-bg { background: var(--base-200); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--primary); color: #fff;
  padding: 0.75rem 1.8rem; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; display: inline-block;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(116,128,255,0);
}
.btn-primary:hover {
  opacity: 0.9; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(116,128,255,0.35);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #e4e8f2;
  padding: 0.75rem 1.8rem; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--primary); background: var(--primary-dim);
  transform: translateY(-2px);
}

/* ── CTA BANNER ── */
.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, rgba(116,128,255,0.15) 0%, rgba(0,181,255,0.08) 100%);
  border: 1px solid rgba(116,128,255,0.2);
  border-radius: 20px; padding: 3.5rem 2rem;
  margin: 0 auto; max-width: 700px;
}
.cta-banner h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; color: #e4e8f2; margin-bottom: 0.75rem; }
.cta-banner p  { margin-bottom: 2rem; max-width: 44ch; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; padding: 1.5rem 0;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 700; color: #e4e8f2; font-size: 0.95rem;
}
.footer-brand img { height: 26px; width: 26px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-nav a {
  color: var(--base-content); font-size: 0.8rem;
  text-decoration: none; font-weight: 500; transition: color 0.2s;
}
.footer-nav a:hover { color: #e4e8f2; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem; padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bottom p { font-size: 0.75rem; opacity: 0.45; margin: 0; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--primary); opacity: 1; }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a {
  color: var(--base-content); font-size: 0.75rem; opacity: 0.45;
  text-decoration: none; transition: color 0.2s, opacity 0.2s;
}
.footer-legal a:hover { opacity: 0.8; color: #e4e8f2; }

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ================================================
   HOMEPAGE-SPECIFIC STYLES
   ================================================ */

/* ── FEATURES SECTION ── */
#features { background: var(--base-200); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.feat-card {
  background: var(--base-100);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.feat-card h3 { font-size: 1rem; font-weight: 700; color: #e4e8f2; margin-bottom: 0.4rem; }
.feat-card p  { font-size: 0.875rem; line-height: 1.6; }

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem; position: relative;
}
.step {
  text-align: center; padding: 1rem;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary-dim); border: 2px solid var(--primary);
  color: var(--primary); font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: #e4e8f2; margin-bottom: 0.4rem; }
.step p  { font-size: 0.875rem; }

/* ── INSTALL / TERMINAL ── */
#install { background: var(--base-200); }
.terminal {
  max-width: 640px; margin: 0 auto;
  background: var(--base-300);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.terminal-bar {
  background: rgba(255,255,255,0.05);
  padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #28c840; }
.terminal-label {
  margin-left: auto; font-size: 0.7rem;
  color: rgba(166,173,187,0.5); font-family: 'JetBrains Mono', monospace;
}
.terminal-body { padding: 1.4rem 1.5rem; }
.terminal-body code {
  display: block; font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem; line-height: 1.9; white-space: pre;
}
.t-prompt { color: var(--success); }
.t-cmd    { color: #e4e8f2; }
.t-comment { color: rgba(166,173,187,0.45); }
.t-url    { color: var(--info); }
.copy-hint {
  text-align: center; margin-top: 1.2rem;
  font-size: 0.78rem; opacity: 0.5;
}

/* ================================================
   FEATURES PAGE STYLES
   ================================================ */
.feat-category { margin-bottom: 4rem; }
.feat-category:last-child { margin-bottom: 0; }
.cat-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cat-title {
  font-size: 1.3rem; font-weight: 700; color: #e4e8f2;
}
.feat-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
.feat-item {
  background: var(--base-200);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feat-item:hover {
  border-color: rgba(116,128,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.feat-item h3 {
  font-size: 0.95rem; font-weight: 700; color: #e4e8f2;
  margin-bottom: 0.35rem;
}
.feat-item p {
  font-size: 0.84rem; line-height: 1.65;
}

/* ================================================
   PRICING PAGE STYLES
   ================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem; max-width: 800px; margin: 0 auto;
}
.plan-card {
  background: var(--base-200);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.plan-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(116,128,255,0.2), 0 8px 24px rgba(116,128,255,0.1);
}
.plan-name { font-size: 1.1rem; font-weight: 700; color: #e4e8f2; margin-bottom: 0.5rem; }
.plan-name.pro { color: var(--primary); }
.plan-price {
  font-size: 2.8rem; font-weight: 800; color: #e4e8f2; line-height: 1;
  margin-bottom: 0.25rem;
}
.plan-price-sub {
  font-size: 0.85rem; opacity: 0.6; margin-bottom: 1.5rem;
}
.plan-limits {
  display: flex; gap: 1.5rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-limit { text-align: center; flex: 1; }
.plan-limit-value { font-size: 1.4rem; font-weight: 800; color: #e4e8f2; }
.plan-limit-label { font-size: 0.75rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.05em; }
.plan-features { list-style: none; margin-bottom: 2rem; flex: 1; }
.plan-features li {
  font-size: 0.875rem; padding: 0.4rem 0;
  padding-left: 1.4rem; position: relative;
}
.plan-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--success); font-weight: 700;
}
.plan-cta {
  display: block; text-align: center;
  padding: 0.75rem 1.5rem; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.plan-cta-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 0 0 0 rgba(116,128,255,0);
}
.plan-cta-primary:hover {
  opacity: 0.9; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(116,128,255,0.35);
}
.plan-cta-ghost {
  background: transparent; color: #e4e8f2;
  border: 1px solid rgba(255,255,255,0.15);
}
.plan-cta-ghost:hover {
  border-color: var(--primary); background: var(--primary-dim);
  transform: translateY(-2px);
}
.plan-note {
  text-align: center; font-size: 0.78rem; opacity: 0.5; margin-top: 0.75rem;
}
.parity-note {
  text-align: center; margin-top: 2.5rem;
  font-size: 0.95rem; color: var(--base-content); opacity: 0.8;
}
.parity-note strong { color: #e4e8f2; }
.no-nonsense {
  text-align: center; margin-top: 1rem;
  font-size: 0.85rem; opacity: 0.6;
}

/* ── FAQ ── */
.faq-section { background: var(--base-200); }
.faq-grid { max-width: 750px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 1rem; font-weight: 700; color: #e4e8f2;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  user-select: none;
  background: none; border: none; width: 100%; text-align: left;
  padding: 0; font-family: inherit; line-height: inherit;
}
.faq-q::after {
  content: '+'; font-size: 1.3rem; font-weight: 400;
  color: var(--primary); transition: transform 0.2s;
  flex-shrink: 0; margin-left: 1rem;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.875rem; line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 200px; padding-top: 0.75rem;
}

/* ================================================
   SCREENSHOTS PAGE STYLES
   ================================================ */
.gallery-note {
  text-align: center;
  font-size: 0.88rem;
  opacity: 0.75;
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  padding: 0.85rem 1.2rem;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(116,128,255,0.04);
}
.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.shot-card {
  background: var(--base-200);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.shot-card:hover {
  border-color: rgba(116,128,255,0.28);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}
.shot-frame {
  aspect-ratio: 16 / 10;
  background: var(--base-300);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
}
button.shot-frame {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}
button.shot-frame:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.shot-zoom-hint {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e4e8f2;
  background: rgba(0,0,0,0.55);
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
button.shot-frame:hover .shot-zoom-hint,
button.shot-frame:focus-visible .shot-zoom-hint {
  opacity: 1;
}
.shot-lightbox {
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 1.25rem;
  border: none;
  background: transparent;
  box-sizing: border-box;
}
.shot-lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shot-lightbox::backdrop {
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
}
.shot-lightbox-panel {
  position: relative;
  max-width: min(1280px, 96vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.shot-lightbox-panel img {
  max-width: 100%;
  max-height: calc(90vh - 3.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}
.shot-lightbox-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e4e8f2;
  text-align: center;
  margin: 0;
  max-width: 56ch;
}
.shot-lightbox-close {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #e4e8f2;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 1;
}
.shot-lightbox-close:hover {
  background: rgba(116,128,255,0.35);
  color: #fff;
}
.shot-lightbox-close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.shot-placeholder {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: var(--base-content);
  opacity: 0.65;
  line-height: 1.5;
}
.shot-placeholder kbd {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--info);
  background: rgba(0,181,255,0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}
.shot-body { padding: 1.15rem 1.25rem 1.35rem; }
.shot-body h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #e4e8f2;
  margin-bottom: 0.35rem;
}
.shot-body p {
  font-size: 0.84rem;
  line-height: 1.6;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(25,30,36,0.97);
    backdrop-filter: blur(12px);
    padding: 1rem 2rem 1.5rem;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-cta {
    text-align: center;
    width: 100%;
    padding: 0.65rem 1.2rem;
  }
}

@media (max-width: 600px) {
  nav { padding: 0.75rem 1.2rem; }
  .hero { padding: 5rem 1.2rem 3rem; }
  .page-hero { padding: 6rem 1.2rem 2.5rem; }
  .feat-list { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .shot-grid { grid-template-columns: 1fr; }
}
