/* ============================================
   EXPLAINING MONEY — Master Stylesheet 2026
   ============================================ */

:root {
  --g: #1DFF6B;
  --gg: rgba(29,255,107,0.10);
  --ggg: rgba(29,255,107,0.05);
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #181818;
  --bg4: #1e1e1e;
  --text: #f0f0f0;
  --dim: #a0a0a0;
  --muted: #777777;
  --faint: #444444;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.14);
  --red: #ff4b4b;
  --amber: #ffb84d;
  --mono: 'Space Mono', monospace;
  --sans: 'DM Sans', system-ui, sans-serif;
  --display: 'Syne', sans-serif;
  --radius: 10px;
  --radius-lg: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--g); text-decoration: none; }
a:hover { opacity: 0.85; }
h1,h2,h3,h4,h5 { font-family: var(--display); font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(2rem, 6vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.75rem; }
p { color: var(--dim); line-height: 1.75; }
strong { color: var(--text); font-weight: 700; }
pre { white-space: pre-wrap; word-break: break-word; }

/* ============ LAYOUT ============ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.2rem; }
.section { padding: 3rem 0; }
.section-sm { padding: 2rem 0; }
.center { text-align: center; }
.green { color: var(--g); }
.green-bg { background: var(--gg); }

/* ============ SECTION HEADERS ============ */
.section-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--g);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.7rem;
}
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header .sub { color: var(--dim); font-size: 0.9rem; max-width: 500px; }
.section-header.center .sub { margin: 0 auto; }

/* ============ NAVIGATION ============ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--g);
  object-fit: cover;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-text .t1 { display: block; font-size: 0.68rem; font-weight: 700; color: var(--text); letter-spacing: 0.05em; font-family: var(--display); }
.nav-logo-text .t2 { display: block; font-size: 0.78rem; font-weight: 800; color: var(--g); letter-spacing: 0.05em; font-family: var(--display); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a { color: var(--muted); font-size: 0.82rem; font-weight: 500; transition: color 0.2s; text-decoration: none; }
.nav-links a:hover, .nav-links a.active { color: var(--g); }
.nav-ig-btn {
  border: 1.5px solid var(--g);
  color: var(--g) !important;
  border-radius: 20px;
  padding: 0.25rem 0.85rem;
  font-size: 0.78rem !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 0.4rem 0.65rem;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
  font-family: var(--sans);
}
.btn-primary { background: var(--g); color: #000; }
.btn-primary:hover { background: #3dffaa; color: #000; opacity: 1; }
.btn-ghost { background: transparent; color: var(--g); border: 1.5px solid var(--g); }
.btn-ghost:hover { background: var(--gg); opacity: 1; }
.btn-lg { padding: 0.88rem 1.8rem; font-size: 0.95rem; }
.btn-full { width: 100%; }
.mt1 { margin-top: 1rem !important; display: inline-flex; }

/* ============ HERO ============ */
.hero {
  padding: 4rem 1.2rem 3.5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,255,107,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,255,107,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29,255,107,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; }
.hero-tag {
  display: inline-flex;
  background: var(--gg);
  border: 1px solid rgba(29,255,107,0.25);
  color: var(--g);
  font-family: var(--mono);
  font-size: 0.7rem;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.3rem;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 span { color: var(--g); }
.hero-sub { font-size: 0.95rem; color: var(--dim); max-width: 520px; margin-bottom: 1.8rem; line-height: 1.75; }
.hero-buttons { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat { }
.hero-stat-num {
  display: block;
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--g);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-lbl { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }

/* ============ TICKER ============ */
.ticker-wrap {
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}
.ticker-inner {
  display: inline-flex;
  white-space: nowrap;
  gap: 1.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--g);
  letter-spacing: 0.08em;
  animation: ticker 24s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ PRODUCTS ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover { border-color: rgba(29,255,107,0.3); transform: translateY(-2px); }
.product-card.featured { border-color: var(--g); }
.pc-top { flex: 1; }
.pc-badge {
  display: inline-block;
  background: var(--g);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.22rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.85rem;
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.pc-badge-outline {
  display: inline-block;
  border: 1px solid var(--g);
  color: var(--g);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.22rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.85rem;
  font-family: var(--mono);
}
.pc-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.product-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.product-card > .pc-top > p { font-size: 0.84rem; color: var(--dim); margin-bottom: 1rem; line-height: 1.6; }
.pc-list { list-style: none; margin-bottom: 1.3rem; }
.pc-list li { font-size: 0.78rem; color: var(--dim); padding: 0.25rem 0; display: flex; gap: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
.tick { color: var(--g); font-size: 0.82rem; flex-shrink: 0; margin-top: 0.05rem; }
.pc-price { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.9rem; flex-wrap: wrap; }
.pc-main { font-family: var(--mono); font-size: 1.6rem; font-weight: 700; color: var(--g); }
.pc-old { font-size: 0.9rem; color: var(--faint); text-decoration: line-through; }
.pc-save { font-size: 0.65rem; background: var(--gg); color: var(--g); padding: 0.18rem 0.6rem; border-radius: 20px; font-family: var(--mono); }

/* ============ HOW IT WORKS ============ */
.steps-bg { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step { padding: 1.6rem 1.2rem; border-right: 1px solid var(--border); }
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--g);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.7rem;
}
.step h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
.step p { color: var(--dim); font-size: 0.8rem; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 0.9rem; }
.about-text p { font-size: 0.88rem; margin-bottom: 0.9rem; line-height: 1.75; }
.about-card {
  background: var(--bg2);
  border: 1px solid rgba(29,255,107,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.about-card-row { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.2rem; }
.about-card-img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--g); object-fit: cover; flex-shrink: 0; }
.about-card-info h4 { font-size: 0.95rem; margin-bottom: 0.15rem; }
.about-card-info p { font-size: 0.78rem; color: var(--dim); }
.about-divider { height: 1px; background: var(--border); margin-bottom: 1rem; }
.about-niche { font-family: var(--mono); font-size: 0.68rem; color: var(--g); margin-bottom: 0.6rem; letter-spacing: 0.1em; }
.about-quote { color: var(--dim); font-style: italic; font-size: 0.88rem; }

/* ============ INSTAGRAM FEED ============ */
.ig-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.ig-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.ig-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2.5px solid var(--g);
  object-fit: cover;
  flex-shrink: 0;
}
.ig-info h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.ig-info p { font-size: 0.78rem; color: var(--dim); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.ig-post {
  aspect-ratio: 1;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.ig-post:hover .ig-overlay { opacity: 1; }
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.ig-overlay span { font-family: var(--mono); font-size: 0.65rem; color: #fff; }
.ig-post-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
}
.ig-post-icon { font-size: 1.8rem; opacity: 0.3; }
.ig-cta { text-align: center; }

/* ============ EMAIL CAPTURE ============ */
.lead-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lead-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.lead-badge {
  display: inline-block;
  background: var(--g);
  color: #000;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.lead-inner h2 { margin-bottom: 0.7rem; }
.lead-inner p { font-size: 0.88rem; margin-bottom: 1.3rem; }
.email-form { display: flex; gap: 0.65rem; max-width: 440px; margin: 0 auto 0.65rem; }
.email-form input {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.88rem;
  outline: none;
}
.email-form input:focus { border-color: var(--g); }
.fine-print { font-size: 0.72rem; color: var(--faint); text-align: center; }

/* ============ SHOP PAGE ============ */
.page-hero {
  text-align: center;
  padding: 3.5rem 1.2rem 2rem;
}
.page-hero h1 { margin-bottom: 0.6rem; }
.page-hero p { color: var(--dim); font-size: 0.9rem; }
.product-detail { padding: 2.5rem 0; }
.pd-grid { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.pd-grid.reverse { grid-template-columns: 300px 1fr; }
.pd-grid.reverse .pd-main { order: 2; }
.pd-grid.reverse .pd-sidebar { order: 1; }
.pd-cat {
  display: inline-block;
  background: var(--gg);
  border: 1px solid rgba(29,255,107,0.25);
  color: var(--g);
  font-family: var(--mono);
  font-size: 0.68rem;
  padding: 0.28rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}
.pd-main h2 { margin-bottom: 0.6rem; }
.pd-tagline { color: var(--g); font-style: italic; font-size: 0.95rem; margin-bottom: 1rem; }
.pd-main > p { font-size: 0.88rem; margin-bottom: 1.2rem; line-height: 1.75; }
.pd-main h4 { margin-bottom: 0.75rem; margin-top: 1.2rem; }
.pd-features { list-style: none; margin-bottom: 1.5rem; }
.pd-features li { display: flex; gap: 0.6rem; font-size: 0.84rem; color: var(--dim); padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); line-height: 1.5; }
.pd-sidebar { position: sticky; top: 90px; }
.preview-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
}
.prev-bar { display: flex; align-items: center; gap: 0.6rem; padding: 0.65rem 0.9rem; background: var(--bg3); border-bottom: 1px solid var(--border); }
.prev-dots { display: flex; gap: 5px; }
.prev-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--faint); }
.prev-name { font-family: var(--mono); font-size: 0.65rem; color: var(--muted); }
.prev-lines { padding: 1.2rem; display: flex; flex-direction: column; gap: 7px; }
.pl { height: 8px; border-radius: 4px; background: var(--bg4); }
.pl.g { background: rgba(29,255,107,0.2); }
.pl.sp { height: 12px; background: transparent; }
.w45 { width: 45%; } .w50 { width: 50%; } .w60 { width: 60%; } .w65 { width: 65%; }
.w70 { width: 70%; } .w75 { width: 75%; } .w80 { width: 80%; } .w85 { width: 85%; } .w90 { width: 90%; }
.prev-lock { text-align: center; padding: 0.6rem; font-size: 0.72rem; color: var(--muted); border-top: 1px solid var(--border); }
.pd-buy-box { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem; margin-bottom: 1rem; }
.pd-buy-price { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 1rem; flex-wrap: wrap; }
.pd-after { font-size: 0.73rem; color: var(--muted); text-align: center; margin-top: 0.6rem; }
.pd-unlock { display: block; text-align: center; font-size: 0.78rem; color: var(--dim); margin-top: 0.5rem; }
.pd-meta { display: flex; flex-direction: column; gap: 0.4rem; }
.pd-meta-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--dim); padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.icon { font-size: 0.9rem; }
.divider { height: 1px; background: var(--border); margin: 1rem 0; }

/* ============ FAQ ============ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.faq-item { padding: 1.3rem; background: var(--bg3); border-radius: var(--radius); border: 1px solid var(--border); }
.faq-item h4 { font-size: 0.9rem; margin-bottom: 0.6rem; color: var(--text); }
.faq-item p { font-size: 0.83rem; color: var(--dim); }

/* ============ UNLOCK PAGE ============ */
.unlock-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.2rem;
}
.unlock-box { width: 100%; max-width: 420px; text-align: center; }
.unlock-icon { font-size: 3rem; margin-bottom: 1rem; }
.unlock-box h1 { margin-bottom: 0.7rem; font-size: 1.8rem; }
.unlock-box > p { color: var(--dim); font-size: 0.88rem; margin-bottom: 1.8rem; }
.unlock-form { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.unlock-input {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  color: var(--text);
  font-family: var(--mono);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.08em;
  outline: none;
  width: 100%;
}
.unlock-input:focus { border-color: var(--g); }
.unlock-error { color: var(--red); font-size: 0.82rem; min-height: 1.2em; }
.unlock-help { }
.unlock-help p { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.3rem; }
.access-panel { padding: 4rem 1.2rem; }
.access-card { max-width: 560px; margin: 0 auto; }
.access-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.access-icon { font-size: 2.5rem; }
.access-header h2 { margin-bottom: 0.2rem; }
.access-header p { color: var(--dim); font-size: 0.88rem; }
.access-downloads { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.dl-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s;
}
.dl-btn:hover { border-color: var(--g); }
.dl-btn-icon { font-size: 1.4rem; flex-shrink: 0; }
.dl-btn strong { display: block; color: var(--text); font-size: 0.9rem; margin-bottom: 0.15rem; }
.dl-btn span { color: var(--dim); font-size: 0.78rem; }
.access-note { background: var(--gg); border: 1px solid rgba(29,255,107,0.2); border-radius: var(--radius); padding: 1rem 1.2rem; }
.access-note p { font-size: 0.82rem; color: var(--dim); margin-bottom: 0.35rem; }
.access-note p:last-child { margin-bottom: 0; }

/* ============ RESOURCES PAGE ============ */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.resource-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem; }
.resource-card .icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.resource-card h4 { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--text); }
.resource-card p { font-size: 0.8rem; margin-bottom: 1rem; }
.checklist-preview { background: var(--bg2); border: 1px solid rgba(29,255,107,0.2); border-radius: var(--radius-lg); padding: 1.4rem; }
.cl-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0; font-size: 0.82rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
.cl-item.blur { filter: blur(4px); user-select: none; }

/* ============ FOOTER ============ */
.footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand p { font-size: 0.78rem; color: var(--muted); margin-top: 0.5rem; }
.footer-col h5 {
  font-family: var(--display);
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.footer-col a { display: block; color: var(--faint); font-size: 0.8rem; margin-bottom: 0.45rem; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--g); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 0.4rem;
}
.footer-bottom p { font-size: 0.72rem; color: var(--faint); }

/* ============ GUIDE PAGES ============ */
.guide-gate {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.2rem;
}
.guide-gate-box { width: 100%; max-width: 400px; text-align: center; }
.guide-gate-box .icon { font-size: 3rem; margin-bottom: 1rem; }
.guide-gate-box h2 { margin-bottom: 0.6rem; }
.guide-gate-box p { color: var(--dim); font-size: 0.88rem; margin-bottom: 1.5rem; }
.guide-gate-form { display: flex; flex-direction: column; gap: 0.8rem; }
.guide-hero {
  text-align: center;
  padding: 4rem 1.2rem 2.5rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.guide-hero h1 { margin-bottom: 0.75rem; }
.guide-hero p { color: var(--dim); max-width: 560px; margin: 0 auto; font-size: 0.92rem; }
.guide-steps-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.2rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 62px;
  z-index: 50;
}
.guide-steps-nav a {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--muted);
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.guide-steps-nav a:hover { color: var(--g); border-color: var(--g); }
.guide-wrap { max-width: 780px; margin: 0 auto; padding: 0 1.2rem 4rem; }
.guide-step { padding: 3rem 0; border-bottom: 1px solid var(--border); }
.guide-step:last-child { border-bottom: none; }
.step-marker { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.step-marker-num {
  background: var(--g);
  color: #000;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.step-marker-line { flex: 1; height: 1px; background: var(--border); }
.guide-step h2 { margin-bottom: 1rem; }
.guide-step h4 { margin-top: 1.5rem; margin-bottom: 0.75rem; }
.guide-step > p { margin-bottom: 1rem; font-size: 0.9rem; }

/* GUIDE COMPONENTS */
.tip-box {
  background: var(--gg);
  border: 1px solid rgba(29,255,107,0.2);
  border-left: 3px solid var(--g);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.86rem;
  color: var(--dim);
  margin: 1.5rem 0;
  line-height: 1.7;
}
.tip-box strong { color: var(--g); }
.callout-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
}
.callout-box h4 { font-size: 0.88rem; color: var(--g); margin-bottom: 0.85rem; }
.warning-box {
  background: rgba(255,75,75,0.07);
  border: 1px solid rgba(255,75,75,0.25);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.86rem;
  color: var(--dim);
  margin: 1.5rem 0;
}
.warning-box strong { color: var(--red); }
.prompt-box {
  background: #0d1a0f;
  border: 1px solid rgba(29,255,107,0.25);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
  position: relative;
}
.prompt-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--g);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.8rem;
}
.prompt-box pre { font-family: var(--mono); font-size: 0.8rem; color: #9de8a8; line-height: 1.7; }
.copy-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: var(--gg);
  border: 1px solid rgba(29,255,107,0.3);
  color: var(--g);
  font-family: var(--mono);
  font-size: 0.65rem;
  padding: 0.25rem 0.65rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.15s;
}
.copy-btn:hover { background: rgba(29,255,107,0.2); }
.check-list { list-style: none; margin: 0.5rem 0 1rem; }
.check-list li {
  display: flex;
  gap: 0.65rem;
  padding: 0.45rem 0;
  font-size: 0.86rem;
  color: var(--dim);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.6;
}
.cross { color: var(--red); font-size: 0.82rem; flex-shrink: 0; margin-top: 0.05rem; }

/* Signal / Algorithm grid */
.signal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.signal-card {
  display: flex;
  gap: 0.9rem;
  padding: 1.1rem;
  background: var(--bg3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.signal-rank {
  font-family: var(--mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--g);
  opacity: 0.6;
  flex-shrink: 0;
  line-height: 1.2;
}
.signal-card h4 { font-size: 0.88rem; margin-bottom: 0.35rem; color: var(--text); }
.signal-card p { font-size: 0.78rem; color: var(--dim); }

/* Format grid */
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.format-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
}
.format-card h4 { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--text); }
.best { font-family: var(--mono); font-size: 0.62rem; color: var(--g); margin-bottom: 0.8rem; letter-spacing: 0.05em; }

/* Mistake cards */
.mistake-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.mistake-item { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; }
.mistake-item h4 { font-size: 0.9rem; margin: 0.35rem 0; }
.mistake-item p { font-size: 0.83rem; color: var(--dim); line-height: 1.65; }
.bad-label { font-family: var(--mono); font-size: 0.65rem; color: var(--red); letter-spacing: 0.05em; }
.good-label { font-family: var(--mono); font-size: 0.65rem; color: var(--g); letter-spacing: 0.05em; margin-top: 0.7rem; }

/* Insights grid */
.insights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.ins-card { background: var(--bg3); border-radius: var(--radius); padding: 1rem; border: 1px solid var(--border); }
.ins-card h4 { font-size: 0.88rem; margin: 0.35rem 0; }
.ins-card p { font-size: 0.78rem; color: var(--dim); }
.label { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.07em; margin-bottom: 0.3rem; }
.label.good { color: var(--g); }
.label.vanity { color: var(--muted); }

/* Money grid */
.money-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.money-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}
.money-card .icon { font-size: 1.8rem; margin-bottom: 0.7rem; }
.money-card h4 { font-size: 0.92rem; margin-bottom: 0.5rem; }
.money-card p { font-size: 0.78rem; color: var(--dim); margin-bottom: 0.7rem; }
.money-card .from { font-family: var(--mono); font-size: 0.65rem; color: var(--g); }

/* Rate table */
.rate-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.83rem; }
.rate-table th {
  background: var(--g);
  color: #000;
  font-weight: 700;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  text-align: left;
}
.rate-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); color: var(--dim); }
.rate-table tr:hover td { background: var(--bg3); color: var(--text); }

/* Username examples */
.username-examples { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.ue-col { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; }
.ue-col h4 { font-size: 0.85rem; margin-bottom: 0.7rem; }
.ue-col h4.good { color: var(--g); }
.ue-col h4.bad { color: var(--red); }
.ue-col ul { list-style: none; }
.ue-col li { font-family: var(--mono); font-size: 0.78rem; color: var(--dim); padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; gap: 0.5rem; }

/* Stat grid */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.stat-card { background: var(--bg3); border-radius: var(--radius); padding: 1rem; text-align: center; border: 1px solid var(--border); }
.stat-card .num { font-family: var(--mono); font-size: 1.8rem; font-weight: 700; color: var(--g); line-height: 1; margin-bottom: 0.4rem; }
.stat-card .label { font-size: 0.75rem; color: var(--muted); }

/* Schedule grid */
.schedule-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin: 1.5rem 0; }
.sched-day { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.8rem 0.4rem; text-align: center; }
.sched-day .day { font-family: var(--mono); font-size: 0.6rem; color: var(--muted); margin-bottom: 0.4rem; }
.sched-day .count { font-family: var(--mono); font-size: 1.3rem; font-weight: 700; color: var(--g); }

/* Tables */
.guide-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.83rem; }
.guide-table th { background: var(--bg3); color: var(--text); font-weight: 700; padding: 0.75rem 1rem; text-align: left; border-bottom: 2px solid var(--border); font-size: 0.78rem; }
.guide-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); color: var(--dim); }
.guide-table tr:hover td { background: var(--bg3); color: var(--text); }

/* Edits App / CapCut styles */
.app-steps { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.app-step { display: flex; gap: 1rem; align-items: flex-start; }
.app-step-num {
  background: var(--g);
  color: #000;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.app-step-body { }
.app-step-body strong { display: block; font-size: 0.88rem; color: var(--text); margin-bottom: 0.2rem; }
.app-step-body p { font-size: 0.82rem; color: var(--dim); margin: 0; }

/* 90-day plan */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.plan-col { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; }
.plan-col h4 { font-family: var(--mono); font-size: 0.75rem; color: var(--g); margin-bottom: 0.8rem; letter-spacing: 0.05em; }
.plan-col ul { list-style: none; }
.plan-col li { font-size: 0.78rem; color: var(--dim); padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; gap: 0.5rem; }

/* Shake animation */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.shake { animation: shake 0.4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .pd-grid, .pd-grid.reverse { grid-template-columns: 1fr; }
  .pd-grid.reverse .pd-main { order: 1; }
  .pd-grid.reverse .pd-sidebar { order: 2; }
  .pd-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .faq-grid { grid-template-columns: 1fr; }
  .signal-grid { grid-template-columns: 1fr; }
  .money-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .resource-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 58px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 1.2rem 1.5rem; gap: 1rem; z-index: 200; }
  .nav-toggle { display: block; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .username-examples { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .email-form { flex-direction: column; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}
