/* ============================================
   FunnelsQuickStart — Main Stylesheet
   ============================================ */

:root {
  --ink: #0e0e0e;
  --paper: #f5f0e8;
  --cream: #ede8dc;
  --accent: #c8420a;
  --accent-light: #e8572a;
  --gold: #c9a84c;
  --muted: #6b6456;
  --border: #d4cfc5;
  --white: #fdfaf4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.4;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: inherit; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--accent);
  transition: all 0.25s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: transparent; color: var(--accent); }

.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--ink); }

/* ── LABELS ── */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent);
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 0;
  overflow: hidden;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #888;
}
.ticker-item strong { color: var(--gold); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── UTILITIES ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.tag {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}
.tag-yes { background: rgba(100,180,100,0.15); color: #6eb96e; }
.tag-no  { background: rgba(200,66,10,0.15);  color: #e07060; }
.tag-mid { background: rgba(201,168,76,0.15); color: var(--gold); }

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.inline-link:hover { opacity: 0.7; }

.arrow-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.arrow-link::after { content: '→'; }
.arrow-link:hover { gap: 0.8rem; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
}
.footer-brand-name {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.8;
  max-width: 300px;
}
.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a {
  font-size: 0.85rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: #444;
}
.footer-legal { display: flex; gap: 2rem; list-style: none; }
.footer-legal a {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #444;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-legal a:hover { color: #888; }

/* ── ARTICLE LAYOUT ── */
.article-hero {
  padding: 10rem 5rem 5rem;
  border-bottom: 1px solid var(--border);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.article-category {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.article-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.article-hero .lead {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.article-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  padding: 4rem 5rem;
  align-items: start;
}

.article-content h2 {
  font-size: 1.7rem;
  margin: 3rem 0 1rem;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.8rem;
}
.article-content p {
  font-size: 0.97rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}
.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.article-content li {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.article-content strong { color: var(--ink); font-weight: 500; }

.article-callout {
  background: var(--cream);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
}
.article-callout p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--ink);
}
.article-callout strong { color: var(--accent); }

.verdict-box {
  background: var(--ink);
  color: var(--paper);
  padding: 2rem;
  margin: 2.5rem 0;
}
.verdict-box .verdict-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.verdict-box p { color: #aaa; margin: 0; }
.verdict-box strong { color: var(--paper); }

/* ── SIDEBAR ── */
.article-sidebar { position: sticky; top: 7rem; }

.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}
.sidebar-box-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-toc { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.sidebar-toc a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  padding-left: 0.8rem;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}
.sidebar-toc a:hover { color: var(--accent); border-left-color: var(--accent); }

.sidebar-cta {
  background: var(--accent);
  color: white;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}
.sidebar-cta-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.8rem;
}
.sidebar-cta h4 {
  font-size: 1rem;
  color: white;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.sidebar-cta p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.sidebar-cta .btn-white {
  display: block;
  padding: 0.7rem 1rem;
  background: white;
  color: var(--accent);
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}
.sidebar-cta .btn-white:hover { background: transparent; color: white; border: 1px solid white; }

/* ── EMAIL SECTION (shared) ── */
.email-section {
  padding: 6rem 5rem;
  background: var(--accent);
  color: white;
  position: relative;
  overflow: hidden;
}
.email-section::before {
  content: 'FREE';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 30vw;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}
.email-inner { max-width: 780px; position: relative; z-index: 2; }
.email-section .section-label { color: rgba(255,255,255,0.6); }
.email-section .section-label::before { background: rgba(255,255,255,0.6); }
.email-section h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 0.8rem; }
.email-section h2 em { font-style: italic; text-decoration: underline; text-underline-offset: 6px; }
.email-offer-list { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.7rem; }
.email-offer-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: rgba(255,255,255,0.9);
}
.email-offer-list li::before { content: '✓'; font-family: 'DM Mono', monospace; flex-shrink: 0; margin-top: 0.1rem; }
.email-form { display: flex; gap: 0; margin-top: 1.8rem; max-width: 480px; }
.email-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 2px solid white;
  border-right: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
}
.email-form input::placeholder { color: rgba(255,255,255,0.5); }
.email-form input:focus { background: rgba(255,255,255,0.2); }
.email-form button {
  padding: 0.9rem 1.5rem;
  background: white;
  color: var(--accent);
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.email-form button:hover { background: transparent; color: white; }
.email-disclaimer { margin-top: 0.8rem; font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.success-msg {
  display: none;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.88rem;
  margin-top: 1rem;
}

/* ── RELATED ARTICLES ── */
.related-section {
  padding: 5rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2.5rem;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.related-card:hover { background: var(--paper); }
.related-card-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.related-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}
.related-card-read {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.related-card-read::after { content: '→'; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  footer { padding: 3rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .article-hero { padding: 8rem 1.5rem 3rem; }
  .article-body { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 3rem; }
  .article-sidebar { position: static; }
  .email-section { padding: 4rem 1.5rem; }
  .email-form { flex-direction: column; }
  .email-form input { border-right: 2px solid white; border-bottom: none; }
  .related-section { padding: 3rem 1.5rem; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ── INDEX-ONLY STYLES ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 5rem;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--accent); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 440px; margin-bottom: 3rem; line-height: 1.8; }
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 22vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
}
.books-stack { position: relative; width: 320px; height: 420px; }
.book-card {
  position: absolute;
  width: 200px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--border);
  transition: transform 0.3s, z-index 0s;
}
.book-card:nth-child(1) { top: 0; left: 20px; transform: rotate(-3deg); }
.book-card:nth-child(2) { top: 80px; left: 80px; transform: rotate(1.5deg); }
.book-card:nth-child(3) { top: 160px; left: 40px; transform: rotate(-1deg); background: var(--ink); color: var(--paper); border-color: var(--ink); }
.book-card:hover { transform: rotate(0deg) translateY(-4px) !important; z-index: 10; }
.book-label { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.book-card:nth-child(3) .book-label { color: var(--gold); }
.book-title-card { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.5rem; }
.book-desc-card { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }
.book-card:nth-child(3) .book-desc-card { color: #999; }

/* EXPLAINER */
.explainer {
  padding: 8rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.explainer-text h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 1.5rem; }
.explainer-text p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1rem; }
.funnel-diagram { display: flex; flex-direction: column; }
.funnel-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--white);
  transition: background 0.2s;
}
.funnel-step:last-child { border-bottom: 1px solid var(--border); }
.funnel-step:hover { background: var(--cream); }
.funnel-step-num { font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--accent); min-width: 2rem; }
.funnel-step-title { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.2rem; }
.funnel-step-desc { font-size: 0.8rem; color: var(--muted); }
.funnel-arrow { text-align: center; color: var(--accent); font-size: 1.2rem; padding: 0.3rem; background: var(--cream); border-left: 1px solid var(--border); border-right: 1px solid var(--border); }

/* BOOKS */
.books-section { padding: 8rem 5rem; border-bottom: 1px solid var(--border); }
.books-header { display: flex; justify-content: flex-start; align-items: flex-end; gap: 6rem; margin-bottom: 4rem; }
.books-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.book-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.book-item::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--accent); transition: height 0.3s; }
.book-item:hover::before { height: 100%; }
.book-item:hover { background: var(--cream); }
.book-number { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 900; color: var(--border); line-height: 1; margin-bottom: 1rem; transition: color 0.3s; }
.book-item:hover .book-number { color: var(--accent); opacity: 0.3; }
.book-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3; }
.book-author { font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; margin-bottom: 1rem; }
.book-summary { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }

/* TOOLS */
.tools-section { padding: 8rem 5rem; background: var(--ink); color: var(--paper); border-bottom: 1px solid #333; }
.tools-section .section-label { color: var(--gold); }
.tools-section .section-label::before { background: var(--gold); }
.tools-section h2 { color: var(--paper); margin-bottom: 1rem; font-size: clamp(2rem, 3vw, 2.8rem); }
.tools-section p { color: #666; margin-bottom: 2rem; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid #333; }
.comparison-table td { padding: 1rem 1.5rem; font-size: 0.88rem; border-bottom: 1px solid #1e1e1e; color: #aaa; vertical-align: top; }
.comparison-table tr:hover td { background: #161616; }
.comparison-table td:first-child { font-weight: 500; color: var(--paper); }

/* ARTICLES */
.articles-section { padding: 8rem 5rem; border-bottom: 1px solid var(--border); }
.articles-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
.articles-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2px; }
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article-card:hover { background: var(--cream); }
.article-card.featured { grid-row: span 2; background: var(--ink); color: var(--paper); border-color: var(--ink); }
.article-tag { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
.article-card.featured .article-tag { color: var(--gold); }
.article-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; line-height: 1.35; }
.article-card.featured .article-title { font-size: 1.6rem; }
.article-excerpt { font-size: 0.83rem; color: var(--muted); line-height: 1.7; flex: 1; }
.article-card.featured .article-excerpt { color: #888; }
.article-read { font-family: 'DM Mono', monospace; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 0.5rem; transition: gap 0.2s; }
.article-read::after { content: '→'; }
.article-card:hover .article-read { gap: 0.8rem; }

/* GLOSSARY */
.glossary-section { padding: 8rem 5rem; background: var(--cream); border-bottom: 1px solid var(--border); }
.glossary-section h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 3rem; }
.glossary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.glossary-item { background: var(--white); border: 1px solid var(--border); padding: 2rem; transition: background 0.2s; }
.glossary-item:hover { background: var(--paper); }
.glossary-term { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.glossary-def { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* FAQ */
.faq-section { padding: 8rem 5rem; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 1fr 2fr; gap: 8rem; align-items: start; }
.faq-left { position: sticky; top: 6rem; }
.faq-left h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 1rem; }
.faq-left p { color: var(--muted); font-size: 0.95rem; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); padding: 1.8rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; user-select: none; }
.faq-icon { font-size: 1.2rem; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq-answer { font-size: 0.9rem; color: var(--muted); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; padding-top: 1rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 1.5rem; }
  .hero-right { display: none; }
  .explainer { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  .books-section { padding: 4rem 1.5rem; }
  .books-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .books-grid { grid-template-columns: 1fr; }
  .tools-section { padding: 4rem 1.5rem; overflow-x: auto; }
  .articles-section { padding: 4rem 1.5rem; }
  .articles-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card.featured { grid-row: span 1; }
  .glossary-section { padding: 4rem 1.5rem; }
  .glossary-grid { grid-template-columns: 1fr; }
  .faq-section { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  .faq-left { position: static; }
}



.math-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 2rem 0;
}
.math-col {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--white);
  text-align: center;
}
.math-col.highlight {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.math-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.math-col.highlight .math-label { color: var(--gold); }
.math-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.math-col.highlight .math-price { color: var(--paper); }
.math-desc { font-size: 0.82rem; color: var(--muted); }
.math-col.highlight .math-desc { color: #888; }
.savings-banner {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
@media (max-width: 600px) { .math-box { grid-template-columns: 1fr; } }



.alt-card { border: 1px solid var(--border); padding: 2rem; background: var(--white); margin-bottom: 2px; }
.alt-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.alt-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; }
.alt-price { font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.08em; color: var(--accent); background: var(--cream); padding: 0.3rem 0.8rem; border: 1px solid var(--border); }
.alt-tagline { font-size: 0.88rem; color: var(--muted); margin-bottom: 1rem; font-style: italic; }
.alt-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.alt-col-label { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.alt-col ul { list-style: none; padding: 0; margin: 0; }
.alt-col li { font-size: 0.82rem; color: var(--muted); padding: 0.2rem 0; line-height: 1.5; padding-left: 1rem; position: relative; }
.alt-col li::before { content: '+'; position: absolute; left: 0; color: #2e7d32; }
.alt-col.cons li::before { content: '−'; color: var(--accent); }
.alt-verdict { margin-top: 1rem; padding: 0.8rem 1rem; background: var(--cream); border-left: 3px solid var(--accent); font-size: 0.83rem; }
@media (max-width: 600px) { .alt-cols { grid-template-columns: 1fr; } }



.steps { display: flex; flex-direction: column; gap: 2px; margin: 2rem 0; }
.step { display: flex; gap: 2rem; padding: 2rem; border: 1px solid var(--border); background: var(--white); transition: background 0.2s; }
.step:hover { background: var(--cream); }
.step-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--cream); line-height: 1; min-width: 60px; text-align: center; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; height: 60px; flex-shrink: 0; }
.step:hover .step-num { color: var(--accent); border-color: var(--accent); }
.step-body { flex: 1; }
.step-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.step-time { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 0.6rem; }



.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: 2rem 0; }
.pricing-card { border: 1px solid var(--border); padding: 2rem; background: var(--white); }
.pricing-card.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pricing-card-label { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
.pricing-card.featured .pricing-card-label { color: var(--gold); }
.pricing-card-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.pricing-card.featured .pricing-card-name { color: var(--paper); }
.pricing-amount { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 0.2rem; }
.pricing-card.featured .pricing-amount { color: var(--gold); }
.pricing-period { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.2rem; }
.pricing-card.featured .pricing-period { color: #888; }
.pricing-features { list-style: none; padding: 0; margin: 0; }
.pricing-features li { font-size: 0.82rem; padding: 0.4rem 0; border-bottom: 1px solid var(--border); color: var(--muted); display: flex; gap: 0.6rem; align-items: flex-start; }
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,0.1); color: #aaa; }
.pricing-features li::before { content: '—'; color: var(--accent); font-family: 'DM Mono', monospace; font-size: 0.7rem; margin-top: 0.1rem; flex-shrink: 0; }
.pricing-card.featured .pricing-features li::before { color: var(--gold); }
@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; } }



.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 2rem 0; }
.compare-col { padding: 2rem; border: 1px solid var(--border); background: var(--white); }
.compare-col.dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.compare-col-title { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.compare-col:not(.dark) .compare-col-title { color: var(--accent); }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.compare-col li { font-size: 0.88rem; padding-left: 1.2rem; position: relative; line-height: 1.5; }
.compare-col li::before { content: '–'; position: absolute; left: 0; color: var(--muted); }
.compare-col.dark li { color: #aaa; }
.compare-col.dark li::before { color: #555; }
@media (max-width: 600px) { .compare-grid { grid-template-columns: 1fr; } }



.book-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 2rem 0; }
.book-col { padding: 2rem; border: 1px solid var(--border); }
.book-col.left { background: var(--ink); color: var(--paper); }
.book-col.right { background: var(--white); }
.book-col-label { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.5rem; }
.book-col.left .book-col-label { color: var(--gold); }
.book-col.right .book-col-label { color: var(--accent); }
.book-col-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.book-col.left .book-col-title { color: var(--paper); }
.book-col ul { list-style: none; padding: 0; margin: 0; }
.book-col li { font-size: 0.83rem; padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); line-height: 1.5; }
.book-col.right li { border-color: var(--border); color: var(--muted); }
.book-col.left li { color: #bbb; }
.book-col li:last-child { border-bottom: none; }
@media (max-width: 600px) { .book-compare { grid-template-columns: 1fr; } }



.mistake-num { font-family:'Playfair Display',serif; font-size:5rem; font-weight:900; color:var(--border); line-height:1; margin-bottom:0.5rem; }
.mistake-block { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.mistake-block:last-of-type { border-bottom: none; }



.articles-hero {
  padding: 10rem 5rem 5rem;
  border-bottom: 1px solid var(--border);
}
.articles-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.articles-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 2rem 5rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.filter-btn {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.all-articles {
  padding: 4rem 5rem 8rem;
}
.articles-count {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.articles-count span { color: var(--accent); }
.full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.article-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.article-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.3s;
}
.article-item:hover::before { height: 100%; }
.article-item:hover { background: var(--cream); }
.article-item[data-category="Books"]:hover::before { background: var(--gold); }

.item-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-item[data-category="Books"] .item-tag { color: var(--gold); }

.item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  flex: 1;
}
.item-excerpt {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}
.item-read {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.item-read::after { content: '→'; }
.article-item:hover .item-read { gap: 0.7rem; }

/* hidden by filter */
.article-item.hidden { display: none; }

@media (max-width: 900px) {
  .articles-hero { padding: 8rem 1.5rem 3rem; }
  .filter-bar { padding: 1.5rem; }
  .all-articles { padding: 3rem 1.5rem 5rem; }
  .full-grid { grid-template-columns: 1fr; }
}



.script-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2rem 0;
}
.script-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--white);
  align-items: flex-start;
  transition: background 0.2s;
}
.script-step:last-child { border-bottom: 1px solid var(--border); }
.script-step:hover { background: var(--cream); }
.script-step-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  min-width: 2rem;
  margin-top: 0.15rem;
}
.script-step-title { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.2rem; }
.script-step-desc { font-size: 0.82rem; color: var(--muted); }



.feature-table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.85rem; }
.feature-table th { background: var(--ink); color: var(--paper); padding: 0.8rem 1.2rem; text-align: left; font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; }
.feature-table td { padding: 0.8rem 1.2rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.feature-table tr:last-child td { border-bottom: none; }
.feature-table tr:nth-child(even) td { background: var(--cream); }
.feature-table .check { color: #2e7d32; font-weight: 600; }
.feature-table .limit { color: var(--accent); }
.feature-table .no { color: var(--muted); }



.traffic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 2rem 0;
}
.traffic-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.8rem;
  transition: background 0.2s;
}
.traffic-card:hover { background: var(--cream); }
.traffic-card-type {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.traffic-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.traffic-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 600px) { .traffic-grid { grid-template-columns: 1fr; } }



.examples-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 2rem 0; }
.example-item { padding: 1.5rem; border: 1px solid var(--border); background: var(--white); }
.example-item:hover { background: var(--cream); }
.example-type { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.example-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.4rem; }
.example-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 600px) { .examples-grid { grid-template-columns: 1fr; } }



.funnel-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2rem 0;
}
.funnel-stage {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.8rem;
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--white);
  transition: background 0.2s;
  position: relative;
}
.funnel-stage:last-child { border-bottom: 1px solid var(--border); }
.funnel-stage:hover { background: var(--cream); }
.funnel-stage-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  min-width: 2rem;
}
.funnel-stage-body { flex: 1; }
.funnel-stage-title { font-weight: 500; font-size: 1rem; margin-bottom: 0.25rem; }
.funnel-stage-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.funnel-stage-arrow {
  text-align: center;
  color: var(--accent);
  font-size: 1rem;
  padding: 0.25rem;
  background: var(--cream);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.example-box {
  background: var(--ink);
  color: var(--paper);
  padding: 2.5rem;
  margin: 2rem 0;
}
.example-box-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.example-box h3 { color: var(--paper); font-size: 1.1rem; margin-bottom: 1rem; }
.example-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
  color: #aaa;
  align-items: flex-start;
}
.example-step-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--gold);
  min-width: 1.5rem;
  margin-top: 0.15rem;
}



.ladder {
  display: flex;
  flex-direction: column-reverse;
  gap: 2px;
  margin: 2rem 0;
}
.ladder-rung {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.8rem;
  border: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s;
  position: relative;
}
.ladder-rung:hover { background: var(--cream); }
.ladder-rung.top { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.ladder-rung.top:hover { background: #1a1a1a; }
.ladder-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  min-width: 80px;
  color: var(--accent);
}
.ladder-rung.top .ladder-price { color: var(--gold); }
.ladder-body { flex: 1; }
.ladder-title { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.2rem; }
.ladder-rung.top .ladder-title { color: var(--paper); }
.ladder-desc { font-size: 0.8rem; color: var(--muted); }
.ladder-rung.top .ladder-desc { color: #888; }
.ladder-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  background: var(--cream);
  color: var(--muted);
  border: 1px solid var(--border);
}
.ladder-rung.top .ladder-label { background: rgba(255,255,255,0.1); color: var(--gold); border-color: rgba(255,255,255,0.2); }



.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 2rem 0; }
.two-col-item { padding: 1.8rem; border: 1px solid var(--border); background: var(--white); }
.two-col-item.dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.two-col-label { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
.two-col-item.dark .two-col-label { color: var(--gold); }
.two-col-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.two-col-item.dark .two-col-title { color: var(--paper); }
.two-col-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }
.two-col-item.dark .two-col-desc { color: #888; }
@media (max-width: 600px) { .two-col { grid-template-columns: 1fr; } }


.mt-2rem{margin-top:2rem;}
.mt-1rem{margin-top:1rem;}






.text-small-muted-mb1{font-size:0.82rem;color:var(--muted);line-height:1.7;margin-bottom:1rem;}


.footer-note{margin-top:1rem;font-size:0.75rem;color:#444;}



/* Auto extracted inline styles */
.auto_c9d9eb{margin-top:1.5rem;}
.auto_01e277{max-width:300px; color:var(--muted); font-size:0.9rem;}
.auto_3a103c{margin-top:3rem;}
.auto_570b9f{margin-top: 1rem; font-size: 0.82rem; color: var(--muted);}
.auto_346568{font-size:0.88rem; line-height:1.7;}
.auto_9a48d3{margin-top: 2rem; font-size: 0.85rem; color: var(--muted);}
.auto_b477c9{font-size:0.82rem; color:var(--muted); line-height:1.7; margin-bottom:0.8rem;}
.auto_5aea1c{font-size:0.82rem; color:var(--muted); line-height:1.7; margin: 0.8rem 0;}
.auto_ea4e46{margin-top: 0.8rem; font-size: 0.82rem; color: var(--muted);}
.auto_38b8fc{display:inline-block; margin-top:1rem;}
.auto_f293f6{display:block; margin-bottom:0.8rem;}
.auto_bb2b0e{color:var(--accent)}
.auto_78d335{margin-top: 0.5rem; font-size: 0.82rem; color: var(--muted);}


.breadcrumbs{
font-size:0.8rem;
color:#777;
margin:1rem auto;
max-width:900px;
}
.breadcrumbs a{
color:#777;
text-decoration:none;
}
.breadcrumbs a:hover{
text-decoration:underline;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 1rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  z-index: 9999;
  border-top: 3px solid var(--accent);
  font-size: 0.82rem;
  line-height: 1.6;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner a { color: var(--gold); text-decoration: underline; }
#cookie-accept {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.55rem 1.4rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
#cookie-accept:hover { background: #a8340a; }
@media (max-width: 900px) {
  #cookie-banner { padding: 1rem 1.5rem; }
}

/* ── ARTICLE TABLE ── */
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}
.article-table thead tr {
  border-bottom: 2px solid var(--ink);
}
.article-table th {
  text-align: left;
  padding: 0.8rem 0;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-table td {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.article-table tbody tr:last-child td {
  border-bottom: none;
}

/* ── THANK YOU PAGE ─────────────────────────────────────────────────────── */
.ty-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
}
.ty-hero {
  padding: 10rem 5rem 5rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.ty-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.ty-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--accent);
}
.ty-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.ty-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.ty-download-box {
  background: var(--ink);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.ty-download-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--accent);
}
.ty-download-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.ty-download-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.ty-download-desc {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ty-download-contents {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ty-download-contents li {
  font-size: 0.85rem;
  color: #aaa;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.5;
}
.ty-download-contents li::before {
  content: '→';
  color: var(--accent);
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--accent);
  color: white;
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: background 0.2s;
  width: 100%;
  justify-content: center;
}
.btn-download:hover { background: #a8340a; }
.btn-download-icon { font-size: 1rem; }
.ty-next {
  padding: 6rem 5rem;
}
.ty-next h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ty-next-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 3rem;
}
.ty-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ty-next-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background 0.2s;
  position: relative;
}
.ty-next-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.3s;
}
.ty-next-card:hover { background: var(--cream); }
.ty-next-card:hover::before { height: 100%; }
.ty-next-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.ty-next-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  flex: 1;
}
.ty-next-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.ty-next-read {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
@media (max-width: 900px) {
  .ty-hero { grid-template-columns: 1fr; padding: 8rem 1.5rem 4rem; gap: 3rem; }
  .ty-next { padding: 4rem 1.5rem; }
  .ty-next-grid { grid-template-columns: 1fr; }
}

/* ── ARTICLE DISCLOSURE ─────────────────────────────────────────────────── */
.article-disclosure { font-size: 0.78rem; color: var(--muted); margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
