/* Preppers Vault — Global Stylesheet */
:root {
  --bg: #0D0D0D;
  --bg2: #141414;
  --bg3: #1A1A1A;
  --fg: #FFFFFF;
  --muted: #999999;
  --accent: #F5621E;
  --accent-dark: #C94D16;
  --rule: #2A2A2A;
  --light-bg: #F8F6F3;
  --light-text: #1A1A1A;
  --light-muted: #666666;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'Courier New', Courier, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--light-bg);
  color: var(--light-text);
  line-height: 1.65;
  font-size: 16px;
}

/* ── NAV ── */
nav {
  background: var(--bg);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 1.5rem; list-style: none; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
  background: var(--bg);
  color: var(--fg);
  padding: 5rem 1.5rem 4rem;
  text-align: left;
}

.hero-inner { max-width: 860px; margin: 0 auto; }

.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero h1 span { color: var(--accent); }

.hero p {
  font-size: 1.15rem;
  color: #BBBBBB;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--accent-dark); }

.btn-secondary {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--fg); }

/* ── STAT ROW ── */
.stat-row {
  background: var(--bg3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  padding: 1.6rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--rule);
  flex: 1;
  min-width: 140px;
}

.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); display: block; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ── SECTIONS ── */
section { padding: 4rem 1.5rem; }

.section-inner { max-width: 860px; margin: 0 auto; }

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

section p { color: #444; line-height: 1.7; margin-bottom: 1rem; }

/* dark section */
.section-dark {
  background: var(--bg);
  color: var(--fg);
}

.section-dark h2 { color: var(--fg); }
.section-dark p { color: #AAAAAA; }
.section-dark .section-tag { color: var(--accent); }

/* ── PILLAR GRID ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--bg3);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  padding: 1.4rem;
  border-radius: 4px;
}

.pillar-num {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.pillar-card h3 { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 0.4rem; }
.pillar-card p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* ── PRODUCT CARDS ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-card {
  background: #fff;
  border: 1px solid #E0DAD5;
  border-radius: 6px;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.product-cat {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--light-text); }
.product-card p { font-size: 0.85rem; color: var(--light-muted); margin-bottom: 1rem; }

.product-card .price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 0.8rem;
}

.btn-product {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-product:hover { background: var(--accent-dark); }

/* ── EBOOK CALLOUT ── */
.ebook-block {
  background: var(--bg);
  color: var(--fg);
  border-left: 4px solid var(--accent);
  padding: 2.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ebook-block h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.6rem; }
.ebook-block p { color: #AAAAAA; font-size: 0.9rem; margin-bottom: 1rem; }
.ebook-price { font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-bottom: 1rem; }

/* ── GUIDE CONTENT ── */
.guide-header {
  background: var(--bg);
  color: var(--fg);
  padding: 4rem 1.5rem 3rem;
}

.guide-header-inner { max-width: 740px; margin: 0 auto; }

.guide-body { max-width: 740px; margin: 0 auto; padding: 2.5rem 1.5rem; }

.guide-body h2 { font-size: 1.5rem; font-weight: 800; margin: 2rem 0 0.8rem; color: var(--light-text); }
.guide-body h3 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 0.6rem; color: var(--light-text); }
.guide-body p { margin-bottom: 1rem; color: #333; }
.guide-body ul, .guide-body ol { padding-left: 1.5rem; margin-bottom: 1rem; color: #333; }
.guide-body li { margin-bottom: 0.4rem; }

.callout {
  background: #FFF5F0;
  border-left: 3px solid var(--accent);
  padding: 1rem 1.2rem;
  border-radius: 0 4px 4px 0;
  margin: 1.5rem 0;
}

.callout strong { color: var(--accent); }
.callout p { margin: 0; color: #333; font-size: 0.9rem; }

/* ── TABLE ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.88rem;
}

.data-table th {
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 0.9rem;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.data-table td {
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid #E5E0DB;
  vertical-align: top;
}

.data-table tr:nth-child(even) td { background: #F2EEE9; }
.data-table tr:hover td { background: #EDE8E2; }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  color: var(--muted);
  padding: 3rem 1.5rem;
  border-top: 2px solid var(--accent);
}

.footer-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand .nav-logo { font-size: 0.9rem; margin-bottom: 0.5rem; display: block; }
.footer-brand p { font-size: 0.8rem; max-width: 260px; }

.footer-links h4 {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }

.footer-bottom {
  max-width: 860px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.75rem;
  color: #555;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a { color: #555; text-decoration: none; }
.footer-bottom a:hover { color: var(--muted); }

/* ── AFFILIATE DISCLAIMER ── */
.affiliate-note {
  background: #F2EEE9;
  border: 1px solid #DDD8D2;
  border-radius: 4px;
  padding: 0.8rem 1rem;
  font-size: 0.78rem;
  color: var(--light-muted);
  margin: 1.5rem 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--rule); }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .ebook-block { flex-direction: column; }
}
