/*
 * SnapZero — Custom Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --y: #FFFC00;
  --y-dim: rgba(255,252,0,0.1);
  --y-glow: rgba(255,252,0,0.25);
  --bg: #0a0a0a;
  --bg2: #101010;
  --bg3: #161616;
  --border: #1f1f1f;
  --border-y: rgba(255,252,0,0.2);
  --muted: #777;
}

/* ── BASE ── */
body { font-family: 'Inter', sans-serif !important; background: var(--bg) !important; }
nav, header, footer { font-family: 'Inter', sans-serif !important; }

/* ── ACCENT OVERRIDES ── */
.text-accent-500 { color: var(--y) !important; }
.bg-accent-500 { background: var(--y) !important; color: #000 !important; }
.bg-accent-600, .bg-accent-700 { background: #e6e300 !important; color: #000 !important; }
.hover\:bg-accent-600:hover, .hover\:bg-accent-800:hover { background: #d4d100 !important; }
.border-accent-500, .border-accent-600, .border-accent-800 { border-color: var(--y) !important; }
.hover\:bg-accent-500\/10:hover { background: var(--y-dim) !important; }
.hover\:text-accent-500:hover { color: var(--y) !important; }

/* ── NAVBAR LOGO ── */
.sz-nav-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; color: #fff;
}
.sz-nav-ghost { filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); flex-shrink: 0; }
.sz-nav-icon { flex-shrink: 0; filter: drop-shadow(0 0 6px rgba(255,252,0,0.3)); }
.sz-nav-name {
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: #fff;
}
.sz-nav-name em { color: var(--y); font-style: normal; }

/* ── ANNOUNCEMENT ── */
[class*="announcement"] > div { background: var(--y) !important; }
[class*="announcement"] > div * { color: #000 !important; font-weight: 600 !important; }

/* ── HERO ── */
.sz-hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 100px 24px 72px;
}
.sz-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,252,0,0.05) 0%, transparent 55%),
              var(--bg);
}
.sz-hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,252,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
/* Ghost — large, top-right, very subtle */
.sz-ghost-bg {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-52%);
  width: min(480px, 44vw);
  opacity: 0.03;
  pointer-events: none;
  color: white;
}
.sz-ghost-bg svg { width: 100%; height: auto; }

.sz-hero-content {
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
}

.sz-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-y);
  color: rgba(255,252,0,0.8);
  background: rgba(255,252,0,0.06);
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.sz-hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--y); animation: szp 2s infinite;
}
@keyframes szp { 0%,100%{opacity:1} 50%{opacity:.3} }

/* Override the built-in h1 */
.sz-hero h1,
.sz-hero-title {
  font-size: clamp(36px, 5.5vw, 68px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  color: #fff !important;
  margin-bottom: 18px !important;
  font-family: 'Inter', sans-serif !important;
}
.sz-hero p.text-base,
.sz-hero-sub {
  font-size: 17px !important;
  color: rgba(255,255,255,0.55) !important;
  max-width: 480px !important;
  line-height: 1.65 !important;
  margin: 0 auto 0 !important;
}

.sz-hero-btns {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 32px;
}
.sz-hero-btns a, .sz-hero-btns button {
  font-size: 15px !important;
  padding: 13px 26px !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.15s ease !important;
}
/* Primary (Get SnapZero) glow on hover */
.sz-hero-btns .bg-accent-500:hover,
.sz-hero-btns a[href*="products"]:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 28px rgba(255,252,0,0.45), 0 0 60px rgba(255,252,0,0.15) !important;
}
/* Outline button subtle lift */
.sz-hero-btns .border-accent-500:hover {
  transform: translateY(-2px) !important;
}

.sz-hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px;
  margin-top: 24px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}

.sz-hero-stats {
  display: flex; align-items: center; gap: 0;
  margin-top: 52px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 32px;
  flex-wrap: wrap; justify-content: center;
  gap: 0;
}
.sz-hstat { text-align: center; padding: 0 28px; }
.sz-hstat strong {
  display: block; font-size: 26px; font-weight: 700;
  color: var(--y); line-height: 1.1; margin-bottom: 3px;
}
.sz-hstat span { font-size: 12px; color: var(--muted); }
.sz-hstat-sep { width: 1px; height: 36px; background: var(--border); }

/* ── SECTIONS ── */
.sz-section { padding: 88px 0; }
.sz-section-alt { padding: 88px 0; background: var(--bg2); }
.sz-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.sz-sec-label {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--y); margin-bottom: 12px;
}
.sz-sec-title {
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.sz-sec-sub { font-size: 15px; color: var(--muted); max-width: 460px; line-height: 1.6; }

/* ── FEATURES ── */
.sz-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.sz-feat {
  background: var(--bg2);
  padding: 28px 26px;
  position: relative;
  transition: background .2s;
}
.sz-feat::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--y);
  opacity: 0;
  transition: opacity .2s;
}
.sz-feat:hover { background: var(--bg3); }
.sz-feat:hover::after { opacity: 1; }
.sz-feat-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--y); opacity: 0.5; margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.sz-feat-ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--y-dim); border: 1px solid var(--border-y);
  display: flex; align-items: center; justify-content: center;
  color: var(--y); margin-bottom: 16px;
}
.sz-feat h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.sz-feat ul { list-style: none; padding: 0; margin: 0; }
.sz-feat ul li {
  font-size: 13px; color: var(--muted);
  padding: 5px 0 5px 14px; position: relative; line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sz-feat ul li:last-child { border-bottom: none; }
.sz-feat ul li::before { content: '–'; position: absolute; left: 0; color: var(--y); }

/* ── VIDEOS ── */
.sz-vids {
  display: flex; flex-wrap: wrap; gap: 32px; justify-content: center;
  margin-top: 40px;
}
.sz-vid-col { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.sz-vid-tag {
  font-size: 12px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.sz-vid-box {
  width: 315px; height: 560px;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

/* ── FAQ ── */
.sz-faq { max-width: 680px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 8px; }
.sz-faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 11px; overflow: hidden;
}
.sz-faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  color: #fff; text-align: left; padding: 16px 20px;
  font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.sz-faq-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--y-dim); border: 1px solid var(--border-y);
  display: flex; align-items: center; justify-content: center;
  color: var(--y); font-size: 18px; line-height: 1;
  transition: transform .18s;
}
.sz-faq-item.sz-open .sz-faq-icon { transform: rotate(45deg); }
.sz-faq-a {
  display: none; padding: 0 20px 16px;
  font-size: 13px; color: var(--muted); line-height: 1.7;
  border-top: 1px solid var(--border);
}
.sz-faq-item.sz-open .sz-faq-a { display: block; }
.sz-faq-footer {
  text-align: center; margin-top: 28px;
  font-size: 14px; color: var(--muted);
}
.sz-faq-footer a { color: var(--y); font-weight: 600; text-decoration: none; }
.sz-faq-footer a:hover { text-decoration: underline; }

/* ── INSTALL PAGE ── */
.sz-install-wrap { max-width: 820px !important; }
.sz-install-header { text-align: center; margin-bottom: 40px; }
.sz-install-video { margin-bottom: 40px; }
.sz-install-video-inner {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9; background: #000;
}
.sz-install-video-inner iframe { width: 100%; height: 100%; border: none; }
.sz-install-video-cap { text-align: center; font-size: 13px; color: var(--muted); margin-top: 10px; }

.sz-install-method {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; margin-bottom: 24px;
}
.sz-install-method--rec {
  border-color: rgba(255,252,0,0.25);
  background: linear-gradient(135deg, rgba(255,252,0,0.04) 0%, var(--bg2) 100%);
}
.sz-install-method-head { margin-bottom: 24px; }
.sz-install-method-head h2 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.sz-install-method-head p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.sz-rec-badge {
  display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; background: var(--y); color: #000;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 10px;
}

.sz-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.sz-steps li {
  display: flex; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.sz-steps li:last-child { border-bottom: none; }
.sz-snum {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
  background: var(--y-dim); border: 1px solid var(--border-y);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--y);
  margin-top: 2px;
}
.sz-steps li > div strong { font-size: 14px; font-weight: 600; display: block; margin-bottom: 4px; }
.sz-steps li > div p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.sz-steps li > div a { color: var(--y); font-weight: 600; }
.sz-steps li > div code {
  background: rgba(255,252,0,0.08); color: var(--y);
  padding: 1px 6px; border-radius: 4px; font-size: 12px;
}

.sz-install-or {
  text-align: center; font-size: 13px; color: var(--muted);
  position: relative; margin: 8px 0 24px;
}
.sz-install-or::before, .sz-install-or::after {
  content: ''; position: absolute; top: 50%; width: 44%;
  height: 1px; background: var(--border);
}
.sz-install-or::before { left: 0; }
.sz-install-or::after { right: 0; }

.sz-install-help {
  text-align: center; margin-top: 40px;
  font-size: 14px; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

.sz-dl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--y); color: #000;
  font-size: 14px; font-weight: 700; padding: 11px 22px; border-radius: 9px;
  text-decoration: none; transition: transform .15s, box-shadow .15s;
}
.sz-dl-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px var(--y-glow);
}

/* ── STICKY BUY BAR ── */
.sz-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 997;
  background: rgba(12, 12, 12, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 252, 0, 0.12);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.sz-bar--on {
  transform: translateY(0);
  pointer-events: all;
}
.sz-bar-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sz-bar-brand {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: #fff;
  letter-spacing: -0.01em; flex-shrink: 0;
}
.sz-bar-brand em { color: var(--y); font-style: normal; }
.sz-bar-mid {
  flex: 1; text-align: center;
}
.sz-bar-tag {
  font-size: 12px; color: var(--muted);
}
.sz-bar-cta {
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.sz-bar-price {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.6);
}
.sz-bar-btn {
  background: var(--y); color: #000;
  font-size: 14px; font-weight: 700;
  padding: 10px 22px; border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.sz-bar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 252, 0, 0.35);
}
@media (max-width: 600px) {
  .sz-bar-brand span { display: none; }
  .sz-bar-inner { padding: 10px 16px; gap: 10px; }
  .sz-bar-mid { flex: 1; text-align: left; }
  .sz-bar-tag { font-size: 11px; }
  .sz-bar-price { font-size: 13px; }
  .sz-bar-btn { padding: 9px 16px; font-size: 13px; }
}

/* ── PRODUCT CARDS ── */
[class*="bg-card"] { transition: border-color .2s !important; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .sz-feats { grid-template-columns: repeat(2, 1fr); }
  .sz-hero-stats { padding: 16px 20px; }
  .sz-hstat { padding: 0 16px; }
}
@media (max-width: 600px) {
  .sz-feats { grid-template-columns: 1fr; }
  .sz-hero { padding: 80px 16px 52px; }
  .sz-vids { flex-direction: column; align-items: center; }
  .sz-hstat-sep { display: none; }
  .sz-hstat { padding: 12px 20px; border-bottom: 1px solid var(--border); }
  .sz-hstat:last-child { border-bottom: none; }
  .sz-section, .sz-section-alt { padding: 60px 0; }
}