/* =========================================
   VIRALVAULT — Dark "vault" theme
   ========================================= */

:root {
  --bg:        #0A0A12;
  --bg-2:      #0E0E1A;
  --surface:   #14141F;
  --surface-2: #1C1C2C;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);
  --text:      #FAFAFA;
  --text-2:    #D6D6E5;
  --muted:     #9292AC;

  --lime:      #C3FF36;
  --lime-dim:  rgba(195,255,54,0.12);
  --lime-glow: rgba(195,255,54,0.55);
  --gold:      #FFD56B;
  --rose:      #FF6B7A;
  --cyan:      #5BE0FF;

  --grad-lime: linear-gradient(135deg, #C3FF36 0%, #8FE000 100%);

  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --sh-sm: 0 2px 10px rgba(0,0,0,0.35);
  --sh:    0 18px 50px rgba(0,0,0,0.55);
  --sh-lg: 0 30px 80px rgba(0,0,0,0.65);
  --sh-glow: 0 12px 40px rgba(195,255,54,0.28);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.75s cubic-bezier(.2,.7,.2,1), transform 0.75s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================
   Buttons
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--lime);
  color: #0A0A12;
  box-shadow: var(--sh-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(195,255,54,0.45); }
.btn-ghost { color: var(--text); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--lime); color: var(--lime); }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-full { width: 100%; }

/* =========================================
   Announce bar
   ========================================= */

.announce {
  background: #050509;
  color: var(--text-2);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}
.announce strong { color: var(--lime); font-weight: 800; }
.announce .pill {
  display: inline-block;
  background: var(--lime-dim);
  color: var(--lime);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-right: 9px;
  text-transform: uppercase;
}

/* =========================================
   Header / nav
   ========================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,18,0.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 22px rgba(195,255,54,0.4);
}
.logo-mark svg { width: 18px; height: 18px; stroke: #0A0A12; }
.nav { display: none; gap: 32px; }
@media (min-width: 940px) { .nav { display: flex; } }
.nav a { font-size: 14px; font-weight: 600; color: var(--text-2); padding: 4px 0; transition: color .15s; }
.nav a:hover { color: var(--lime); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header .btn { display: none; }
@media (min-width: 940px) { .header .btn { display: inline-flex; padding: 10px 20px; font-size: 14px; } }

.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.cart-btn svg { width: 18px; height: 18px; stroke: var(--text); fill: none; stroke-width: 2; }
.cart-count {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--lime);
  color: #0A0A12;
  font-size: 10px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: flex; flex-direction: column; gap: 4px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.hamburger span { width: 17px; height: 2px; background: var(--text); border-radius: 2px; }
@media (min-width: 940px) { .hamburger { display: none; } }

/* Mobile drawer */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  z-index: 110;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 86%; max-width: 360px;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  z-index: 120;
  padding: 22px;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  gap: 22px;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-close {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface);
  font-size: 22px; color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
}
.drawer-links { display: flex; flex-direction: column; }
.drawer-links a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 16px; font-weight: 600; color: var(--text);
}

/* =========================================
   Hero
   ========================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 90px;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(195,255,54,0.10), transparent 60%), var(--bg);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.hero-orb.o1 { width: 420px; height: 420px; background: rgba(195,255,54,0.18); top: -160px; right: -120px; }
.hero-orb.o2 { width: 360px; height: 360px; background: rgba(91,224,255,0.12); bottom: -180px; left: -120px; }

.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 26px;
  letter-spacing: 0.02em;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(195,255,54,0.7); animation: dotPulse 2.2s infinite; }
@keyframes dotPulse { 0% { box-shadow: 0 0 0 0 rgba(195,255,54,0.6); } 70% { box-shadow: 0 0 0 9px rgba(195,255,54,0); } 100% { box-shadow: 0 0 0 0 rgba(195,255,54,0); } }

.hero h1 {
  font-size: clamp(40px, 7vw, 78px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--lime); }
.hero h1 .strike { position: relative; display: inline-block; }
.hero h1 .strike::after {
  content: ''; position: absolute;
  left: -4px; right: -4px;
  top: 56%;
  height: 6px;
  background: var(--lime);
  border-radius: 4px;
  transform: rotate(-2deg);
  z-index: -1;
  opacity: 0.85;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

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

.hero-stats {
  display: flex;
  gap: 36px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 720px;
  margin: 0 auto;
}
.hero-stat-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 26px; color: var(--text); }
.hero-stat-num .accent { color: var(--lime); }
.hero-stat-l { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-stat-sep { width: 1px; height: 28px; background: var(--line); }

/* =========================================
   Section primitives
   ========================================= */

.section { padding: 90px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lime);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--lime-dim);
  border-radius: 999px;
}
.section-h {
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.section-lead { font-size: 17px; color: var(--muted); line-height: 1.6; }

/* =========================================
   Guides grid
   ========================================= */

.guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .guides-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .guides-grid { grid-template-columns: 1fr 1fr 1fr; } }

.guide-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.guide-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: var(--sh);
}
.guide-card.featured { border-color: var(--lime); box-shadow: 0 12px 40px rgba(195,255,54,0.12); }
.guide-card-badge {
  position: absolute;
  top: -10px; left: 22px;
  background: var(--lime);
  color: #0A0A12;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 11px;
  border-radius: 999px;
}
.guide-card-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.guide-card-ico svg { width: 26px; height: 26px; fill: #fff; }
.guide-card-eyebrow {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 6px;
}
.guide-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.15;
}
.guide-card-desc {
  font-size: 14px; color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.55;
  flex: 1;
}
.guide-card-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  font-size: 12px; color: var(--text-2);
  font-weight: 600;
}
.guide-card-meta-item { display: inline-flex; align-items: center; gap: 5px; }
.guide-card-meta svg { width: 14px; height: 14px; stroke: var(--lime); fill: none; stroke-width: 2; }
.guide-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.guide-card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--text);
}
.guide-card-price small {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 6px;
}
.guide-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--lime);
}
.guide-card-cta svg { width: 14px; height: 14px; transition: transform .2s; }
.guide-card:hover .guide-card-cta svg { transform: translateX(3px); }

/* Platform brand backgrounds for guide icons */
.bg-instagram { background: linear-gradient(135deg,#833AB4,#E1306C,#F77737); }
.bg-tiktok    { background: #000; border: 1px solid var(--line-2); }
.bg-youtube   { background: #FF0000; }
.bg-spotify   { background: #1DB954; }
.bg-facebook  { background: #1877F2; }
.bg-x         { background: #000; border: 1px solid var(--line-2); }

/* =========================================
   Why us / benefits
   ========================================= */

.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 760px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .benefits { grid-template-columns: repeat(4, 1fr); } }
.benefit {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
}
.benefit-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--lime-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.benefit-ico svg { width: 22px; height: 22px; stroke: var(--lime); fill: none; stroke-width: 2; }
.benefit-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px; font-weight: 700;
  margin-bottom: 8px;
}
.benefit-p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* =========================================
   Stats strip
   ========================================= */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 760px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
}
.stat-cell-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px; font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-cell-l { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* =========================================
   Inside the vault (what's included)
   ========================================= */

.inside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 38px;
}
@media (min-width: 880px) {
  .inside { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px; }
}
.inside-list { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.inside-item { display: flex; align-items: flex-start; gap: 14px; }
.inside-item-ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--lime);
  color: #0A0A12;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 14px;
}
.inside-item-h { font-weight: 700; font-size: 15px; margin-bottom: 2px; color: var(--text); }
.inside-item-p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* =========================================
   Reviews
   ========================================= */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex; flex-direction: column;
}
.review-stars { color: var(--gold); letter-spacing: 1.5px; font-size: 14px; margin-bottom: 12px; }
.review-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px; font-weight: 700; margin-bottom: 8px;
}
.review-body { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.review-foot { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.review-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--lime);
  font-weight: 800;
  font-size: 13px;
}
.review-name { font-size: 13px; font-weight: 700; color: var(--text); }
.review-meta { font-size: 11px; color: var(--muted); }
.review-verified {
  margin-left: auto;
  background: var(--lime-dim);
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  border-radius: 999px;
}

/* =========================================
   FAQ
   ========================================= */

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--lime); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.faq-q::after {
  content: '+';
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--lime-dim);
  color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 18px;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* =========================================
   Final CTA
   ========================================= */

.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #14141F 0%, #0A0A12 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 64px 28px;
  text-align: center;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(195,255,54,0.18), transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.final-cta h2 {
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.final-cta h2 .accent { color: var(--lime); }
.final-cta p { font-size: 17px; color: var(--text-2); margin-bottom: 28px; }
.final-cta-trust {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  margin-top: 22px;
  font-size: 12px; color: var(--muted);
  font-weight: 600;
}

/* =========================================
   Footer
   ========================================= */

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 12px; max-width: 320px; line-height: 1.55; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-2); margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 14px; color: var(--muted); padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted);
}

/* =========================================
   Cart drawer
   ========================================= */

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 92%; max-width: 400px;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  z-index: 130;
  padding: 22px;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  gap: 18px;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; }
.cart-head h3 { font-size: 18px; }
.cart-items { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); font-size: 14px; }
.cart-line {
  display: flex; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px;
  align-items: center;
}
.cart-line-ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cart-line-ico svg { width: 22px; height: 22px; fill: #fff; }
.cart-line-name { font-size: 14px; font-weight: 700; }
.cart-line-meta { font-size: 12px; color: var(--muted); }
.cart-line-price {
  margin-left: auto;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 16px;
  color: var(--lime);
}
.cart-line-remove {
  background: transparent;
  color: var(--muted);
  font-size: 18px;
  padding: 4px 8px;
}
.cart-line-remove:hover { color: var(--rose); }
.cart-foot { border-top: 1px solid var(--line); padding-top: 18px; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 16px; font-weight: 700; }
.cart-total .amt { font-family: 'Space Grotesk', sans-serif; font-size: 22px; color: var(--lime); }
.cart-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 10px; }

/* Toast */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-2);
  border: 1px solid var(--lime);
  color: var(--text);
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  box-shadow: var(--sh);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================
   Guide (detail) page
   ========================================= */

.guide {
  padding: 40px 0 80px;
}
.guide-crumb { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.guide-crumb a:hover { color: var(--lime); }
.guide-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 980px) { .guide-grid { grid-template-columns: 1fr 380px; gap: 46px; align-items: start; } }

.guide-hero { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.guide-hero-ico {
  width: 60px; height: 60px;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.guide-hero-ico svg { width: 30px; height: 30px; fill: #fff; }
.guide h1 {
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.guide-desc { font-size: 16px; color: var(--muted); margin-bottom: 22px; line-height: 1.6; }

.guide-meta-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.guide-meta-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-2); font-weight: 600; }
.guide-meta-item svg { width: 16px; height: 16px; stroke: var(--lime); fill: none; stroke-width: 2; }
.guide-meta-sep { width: 1px; height: 16px; background: var(--line); }

.toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.toc-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.toc-h::before {
  content: ''; width: 20px; height: 2px; background: var(--lime);
}
.toc-list { list-style: none; counter-reset: toc; }
.toc-item {
  counter-increment: toc;
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.toc-item:last-child { border-bottom: none; }
.toc-item::before {
  content: counter(toc, decimal-leading-zero);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--lime);
  font-size: 14px;
  flex-shrink: 0;
  width: 28px;
}
.toc-item-h { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.toc-item-p { font-size: 13px; color: var(--muted); line-height: 1.55; }

.buy-card {
  background: var(--surface);
  border: 1px solid var(--lime);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: 0 12px 50px rgba(195,255,54,0.12);
}
@media (min-width: 980px) { .buy-card { position: sticky; top: 96px; } }
.buy-card-eyebrow { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lime); margin-bottom: 14px; }
.buy-card-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 10px; }

/* Tier selector inside buy-card */
.tier-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.tier {
  position: relative;
  background: var(--surface-2);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .1s;
  display: block;
  width: 100%;
}
.tier:hover { border-color: var(--line-2); }
.tier.selected {
  border-color: var(--lime);
  background: rgba(195,255,54,0.05);
}
.tier-badge {
  position: absolute;
  top: -9px; right: 14px;
  background: var(--lime);
  color: #0A0A12;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
}
.tier-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
}
.tier-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.tier-tagline { font-size: 12px; color: var(--muted); line-height: 1.35; }
.tier-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  text-align: right;
  flex-shrink: 0;
  line-height: 1;
}
.tier-price small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.tier.selected .tier-price { color: var(--lime); }
.tier-save {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 800;
  color: var(--lime);
  background: var(--lime-dim);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.tier-mark {
  position: absolute;
  top: 50%; right: -8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--surface);
  transform: translateY(-50%) scale(0);
  transition: transform .15s ease;
}
.tier.selected .tier-mark { transform: translateY(-50%) scale(1); }

.tier-includes { margin-bottom: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.tier-includes-h {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-2); margin-bottom: 10px;
}
.tier-includes ul { list-style: none; }
.tier-includes ul li {
  display: flex; gap: 10px;
  padding: 7px 0;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
}
.tier-includes ul li::before { content: '✓'; color: var(--lime); font-weight: 800; flex-shrink: 0; }

/* Add-ons */
.addons { margin-bottom: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.addons-h {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-2); margin-bottom: 12px;
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.addons-h-note { font-size: 10px; font-weight: 600; color: var(--muted); text-transform: none; letter-spacing: 0; }
.addon-list { display: flex; flex-direction: column; gap: 8px; }
.addon {
  display: flex; gap: 12px;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.addon:hover { border-color: var(--line-2); }
.addon.selected { border-color: var(--lime); background: rgba(195,255,54,0.05); }
.addon-tick {
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--line-2);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  background: transparent;
  transition: all .15s;
  margin-top: 1px;
}
.addon-tick svg { width: 13px; height: 13px; }
.addon.selected .addon-tick {
  background: var(--lime);
  border-color: var(--lime);
  color: #0A0A12;
}
.addon-body { flex: 1; min-width: 0; }
.addon-head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 3px; }
.addon-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.addon-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--text);
  flex-shrink: 0;
}
.addon-price small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 5px;
}
.addon.selected .addon-price { color: var(--lime); }
.addon-desc { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* Cart line pill for add-ons */
.cart-line-pill {
  display: inline-block;
  background: var(--lime-dim);
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 999px;
  margin-right: 4px;
}

/* =========================================
   Simple page (about / contact / faq)
   ========================================= */

.page { padding: 56px 0 90px; }
.page-hero { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: var(--muted); line-height: 1.6; }
.page-body { max-width: 760px; margin: 0 auto; }
.page-body p { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.page-body h2 { font-size: 26px; font-weight: 700; margin: 36px 0 12px; }

/* Contact form */
.form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 12px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.06em; }
.form-row input, .form-row textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .15s;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--lime); }
.form-row textarea { min-height: 140px; resize: vertical; }

/* =========================================
   Spacing helpers
   ========================================= */

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
