/* ==========================================================================
   landing.css — shared light-theme shell for Chitmunk marketing + guides.

   Used by: index.html (Architecture 2 rewrite), guides/index.html,
   guides/*.html, for/*.html, card-sizes.html, brand.html, contact.html,
   privacy.html, terms.html.

   Architecture:
     - Base CSS from the index.html rewrite (mockup.html blueprint):
       theme vars, typography, buttons, nav + mega dropdown, hero,
       trust bar, showcase tabs, how-it-works, personas, comparison,
       pricing, final CTA, footer, scroll reveal.
     - Guide-specific additions appended below:
       section utilities, guides hub grid, individual guide page
       (sidebar + article typography), mobile utilities.

   Keep in sync with:
     - index.html (class structure)
     - site/landing-shell.js (nav + footer injection, guide sidebar)
     - tokens.css (shared editor + marketing color/type tokens)
   ========================================================================== */

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-page: #FAFAF8;
  --bg-white: #FFFFFF;
  --bg-dark: #1A1612;
  --bg-dark-card: #252019;
  --bg-accent-tint: #FFF7EE;
  --bg-muted: #F3F0EB;
  --text-primary: #1A1612;
  --text-secondary: #6B5D4F;
  --text-muted: #9A8E80;
  --text-inverse: #FAFAF8;
  --accent: #E8913A;
  --accent-hover: #D4801F;
  --accent-glow: rgba(232, 145, 58, 0.15);
  --accent-light: #FFF3E6;
  --border: #E8E2DA;
  --border-light: #F0ECE6;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(26,22,18,0.04);
  --shadow-md: 0 4px 20px rgba(26,22,18,0.06);
  --shadow-lg: 0 12px 40px rgba(26,22,18,0.08);
  --shadow-hero: 0 20px 60px rgba(26,22,18,0.12);
  --font-heading: 'Bricolage Grotesque', 'Nunito', system-ui, sans-serif;
  --font-body: 'DM Sans', 'Nunito', sans-serif;
  --max-width: 1200px;
  --nav-height: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; }

h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 3.5vw, 48px); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 22px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  font-weight: 400;
  line-height: 1.6;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 8px rgba(232, 145, 58, 0.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 145, 58, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--text-secondary);
  background: var(--bg-muted);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}
.btn-dark:hover {
  background: #2C2418;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  transition: box-shadow 0.3s;
}
/* backdrop-filter on ::before avoids creating a containing block
   for position:fixed descendants (the mobile nav overlay). */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-brand svg { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-links > li > .nav-dropdown-trigger {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}
.nav-links > li > a:hover,
.nav-links > li > .nav-dropdown-trigger:hover,
.nav-links > li.open > .nav-dropdown-trigger {
  color: var(--text-primary);
  background: var(--bg-muted);
}

.nav-chevron {
  width: 10px;
  height: 10px;
  border: none;
  display: inline-block;
  transition: transform 0.2s;
}
.nav-links > li.open .nav-chevron { transform: rotate(180deg); }

/* ========== MEGA DROPDOWN ========== */
.nav-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
  min-width: 480px;
}

.nav-mega.narrow { min-width: 240px; }

.nav-links > li.open .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.nav-mega.narrow .nav-mega-grid {
  grid-template-columns: 1fr;
}

.nav-mega-item {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.15s;
  text-decoration: none;
  color: var(--text-primary);
}
.nav-mega-item:hover {
  background: var(--bg-muted);
}

.nav-mega-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.nav-mega-text { display: flex; flex-direction: column; }

.nav-mega-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.nav-mega-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 1px;
}

.nav-mega-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--border-light);
  margin: 8px 0;
}

.nav-mega-section-label {
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 4px 12px 2px;
}

/* Use Cases — single column with colored icons */
.nav-mega-item .persona-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ========== HAMBURGER (mobile) ========== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-page);
    flex-direction: column;
    padding: 24px 32px;
    gap: 8px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
  }
  .nav-links.mobile-open { display: flex; }

  .nav-links > li > a,
  .nav-links > li > .nav-dropdown-trigger {
    font-size: 17px;
    padding: 12px 0;
    width: 100%;
    justify-content: space-between;
  }

  .nav-mega {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 8px 0 8px 16px;
    min-width: unset;
    background: transparent;
  }
  .nav-links > li.open .nav-mega {
    transform: none;
  }
  .nav-mega-grid { grid-template-columns: 1fr; }

  .nav-cta {
    display: none;
    padding: 16px 32px;
    gap: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-page);
    border-top: 1px solid var(--border-light);
    z-index: 99;
  }
  .nav-cta.mobile-open { display: flex; }
  .nav-cta .btn { flex: 1; justify-content: center; }
}

/* ========== HERO ========== */
.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232,145,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--text-primary);
}

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

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  font-weight: 400;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Editor mockup */
.hero-visual {
  position: relative;
  z-index: 1;
}

.editor-mock {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  border: 1px solid rgba(255,255,255,0.06);
}

.editor-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.editor-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.editor-dot.red { background: #FF6059; }
.editor-dot.yellow { background: #FFBD2E; }
.editor-dot.green { background: #28CA42; }

.editor-titlebar span {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
}

.editor-body {
  display: grid;
  grid-template-columns: 48px 1fr 220px;
  height: 380px;
}

.editor-toolbar-mock {
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tool-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}
.tool-icon.active {
  background: var(--accent);
  color: white;
}

.editor-canvas-mock {
  background: #2C2418;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.editor-canvas-mock::before {
  content: '';
  position: absolute;
  inset: 20px;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 19px, rgba(255,255,255,0.02) 19px, rgba(255,255,255,0.02) 20px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 19px, rgba(255,255,255,0.02) 19px, rgba(255,255,255,0.02) 20px
  );
}

/* Card being "designed" in the mock editor */
.mock-card {
  width: 180px;
  height: 260px;
  background: linear-gradient(135deg, #1B3A4B 0%, #2D5F74 100%);
  border-radius: 10px;
  padding: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

.mock-card-header {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.mock-card-art {
  flex: 1;
  background: linear-gradient(180deg, #3D8DA6 0%, #1B5A6B 100%);
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mock-card-art::after {
  content: '';
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  position: absolute;
}

.mock-card-stats {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.mock-card-stat {
  background: rgba(255,255,255,0.12);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Selection handles */
.mock-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  pointer-events: none;
}

.selection-handle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border: 2px solid var(--accent);
  border-radius: 2px;
}
.handle-tl { top: -6px; left: -6px; }
.handle-tr { top: -6px; right: -6px; }
.handle-bl { bottom: -6px; left: -6px; }
.handle-br { bottom: -6px; right: -6px; }

.editor-props-mock {
  background: rgba(255,255,255,0.03);
  border-left: 1px solid rgba(255,255,255,0.06);
  padding: 16px;
  overflow: hidden;
}

.prop-section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
  font-weight: 700;
}

.prop-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.prop-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  width: 28px;
  flex-shrink: 0;
}

.prop-input {
  flex: 1;
  height: 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 0 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
}

.prop-color {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.prop-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 12px 0;
}

/* Floating CSV indicator on mock */
.mock-csv-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(40, 167, 69, 0.9);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-white);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
}

.trust-stat .number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.trust-stat .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ========== PRODUCT SHOWCASE (Tabs) ========== */
.showcase {
  padding: 100px 0;
}

.showcase-header {
  text-align: center;
  margin-bottom: 48px;
}

.showcase-header h2 { margin-bottom: 12px; }
.showcase-header .section-subtitle { margin: 0 auto; }

.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  background: var(--bg-muted);
  border-radius: var(--radius-pill);
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.showcase-tab {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: transparent;
  font-family: var(--font-body);
}

.showcase-tab.active {
  background: var(--bg-white);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.showcase-tab:hover:not(.active) {
  color: var(--text-primary);
}

.showcase-panels { position: relative; }

.showcase-panel {
  display: none;
  gap: 48px;
  align-items: center;
}

.showcase-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.showcase-text h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.showcase-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.showcase-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.showcase-features li {
  display: flex;
  align-items: start;
  gap: 8px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.showcase-features li > span:last-child { flex: 1; }

.showcase-features li .check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.showcase-image {
  background: var(--bg-muted);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
}

/* Stylized preview panels */
.preview-visual {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Card editor preview */
.preview-editor {
  background: linear-gradient(135deg, #F7F5F2 0%, #EDE8E0 100%);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding: 24px;
  height: 100%;
  align-content: start;
}

.preview-minicard {
  background: white;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  aspect-ratio: 2.5/3.5;
  display: flex;
  flex-direction: column;
}

.preview-minicard-top {
  height: 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.preview-minicard-art {
  flex: 1;
  border-radius: 4px;
  margin-bottom: 6px;
}

.preview-minicard-text {
  height: 4px;
  border-radius: 2px;
  background: #E0DCD6;
}
.preview-minicard-text + .preview-minicard-text { margin-top: 4px; width: 70%; }

/* CSV data preview */
.preview-csv {
  background: linear-gradient(135deg, #F0F7F0 0%, #E8F0E8 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: 100%;
}

.preview-csv-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
  gap: 2px;
  flex-shrink: 0;
}

.preview-csv-cell {
  height: 28px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--font-body);
}

.preview-csv-header .preview-csv-cell {
  background: #2D6B3F;
  color: white;
}

.preview-csv-data .preview-csv-cell {
  background: rgba(255,255,255,0.7);
  color: #4A7A56;
}

.preview-csv-data:nth-child(odd) .preview-csv-cell {
  background: rgba(255,255,255,0.45);
}

.preview-csv-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D6B3F;
  font-size: 24px;
  font-weight: 700;
  padding: 12px 0;
  flex-shrink: 0;
}

/* Generator preview */
.preview-generators {
  background: linear-gradient(135deg, #F5F0FA 0%, #EBE4F5 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  height: 100%;
  align-content: center;
}

.preview-gen-item {
  background: white;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.preview-gen-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.preview-gen-label {
  font-size: 11px;
  font-weight: 700;
  color: #5B4A8A;
  text-align: center;
}

/* Export preview */
.preview-export {
  background: linear-gradient(135deg, #FFF5EB 0%, #FFECD6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  height: 100%;
}

.preview-export-formats {
  display: flex;
  gap: 12px;
}

.preview-format-card {
  background: white;
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.preview-format-icon {
  font-size: 28px;
  margin-bottom: 6px;
}

.preview-format-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-white);
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header h2 { margin-bottom: 12px; }
.how-header .section-subtitle { margin: 0 auto; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

/* Connection line */
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 36px);
  right: calc(16.66% + 36px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--bg-white);
}

.how-step h3 {
  margin-bottom: 8px;
}

.how-step p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}
.how-step-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.how-step-link:hover { text-decoration: underline; }

/* ========== WHO IT'S FOR ========== */
.personas {
  padding: 100px 0;
}

.personas-header {
  text-align: center;
  margin-bottom: 48px;
}

.personas-header h2 { margin-bottom: 12px; }
.personas-header .section-subtitle { margin: 0 auto; }

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.persona-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s ease;
}

.persona-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.persona-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.persona-card h3 { margin-bottom: 8px; }

.persona-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.persona-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}
.persona-link:hover { gap: 8px; }

/* ========== TESTIMONIAL ========== */
.testimonial {
  padding: 80px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-mark {
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: -8px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
}

.testimonial-meta {
  text-align: left;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== WHY CHITMUNK (Comparison) ========== */
.comparison {
  padding: 100px 0;
}

.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}

.comparison-header h2 { margin-bottom: 12px; }
.comparison-header .section-subtitle { margin: 0 auto; }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-col {
  border-radius: var(--radius-lg);
  padding: 32px;
}

.comparison-col.without {
  background: #F8F5F2;
  border: 1px solid var(--border);
}

.comparison-col.with {
  background: var(--accent-light);
  border: 1px solid rgba(232, 145, 58, 0.25);
}

.comparison-col-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.without .comparison-col-title { color: var(--text-muted); }
.with .comparison-col-title { color: var(--accent); }

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.comparison-list li > span:last-child { flex: 1; }

.without .comparison-list li { color: var(--text-muted); }
.with .comparison-list li { color: var(--text-primary); }

.comparison-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.without .comparison-icon {
  background: #E8E2DA;
  color: var(--text-muted);
}

.with .comparison-icon {
  background: var(--accent);
  color: white;
}

/* ========== PRICING ========== */
.pricing {
  padding: 100px 0;
  background: var(--bg-white);
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header h2 { margin-bottom: 12px; }
.pricing-header .section-subtitle { margin: 0 auto; }

/* Billing toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.billing-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.billing-label.active { color: var(--text-primary); }

.toggle-track {
  width: 48px;
  height: 26px;
  background: var(--accent);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-dot {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.toggle-track.annual .toggle-dot { transform: translateX(22px); }

.save-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.25s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
  position: relative;
}

.pricing-popular {
  display: inline-block;
  background: #EFF6FF;
  color: #4A9FE8;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.pricing-features .check {
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

.pricing-card .btn { width: 100%; justify-content: center; }

.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-dark);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,145,58,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta h2 {
  color: var(--text-inverse);
  margin-bottom: 16px;
  position: relative;
}

.final-cta p {
  color: rgba(250,250,248,0.6);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.final-cta .btn-primary { position: relative; }

.final-cta-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  position: relative;
}

.final-cta-links a {
  font-size: 14px;
  color: rgba(250,250,248,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}

.final-cta-links a:hover { color: rgba(250,250,248,0.8); }

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
  color: rgba(250,250,248,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .nav-brand { color: var(--text-inverse); }

.footer-tagline {
  font-size: 14px;
  color: rgba(250,250,248,0.4);
}

.footer-col h4 {
  color: rgba(250,250,248,0.8);
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col a {
  font-size: 14px;
  color: rgba(250,250,248,0.4);
  transition: color 0.15s;
}
.footer-col a:hover { color: rgba(250,250,248,0.7); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { text-align: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-ctas { justify-content: center; }
  .hero-note { text-align: center; }
  .persona-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .comparison-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .how-steps::before { display: none; }
  .showcase-tabs { flex-wrap: wrap; border-radius: var(--radius); }
  .showcase-panel.active { grid-template-columns: 1fr; }
  .trust-inner { gap: 24px; }
  .trust-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .editor-body { grid-template-columns: 1fr; height: auto; }
  .editor-toolbar-mock, .editor-props-mock { display: none; }
  .editor-canvas-mock { min-height: 280px; }
}

/* ==========================================================================
   SHARED UTILITIES AND GUIDE PAGES
   (merged from the pre-rewrite landing.css — these were used by other
   marketing pages and the guides hub + guide article layout)
   ========================================================================== */

/* Aliases for the `-landing`-suffixed custom properties used by the guide
   sections below. The Architecture 2 rewrite (:root above) declares the
   canonical names without suffix; aliases map the old names to the new. */
:root {
  --border-landing: var(--border);
  --border-light-landing: var(--border-light);
  --radius-landing: var(--radius);
  --shadow-sm-landing: var(--shadow-sm);
  --shadow-md-landing: var(--shadow-md);
  --shadow-lg-landing: var(--shadow-lg);
}

/* ========== GENERIC CONTENT SECTIONS ==========
   Used by /brand, /blog, /card-sizes, etc. (the index.html Architecture 2
   rewrite uses its own <section class="hero/showcase/pricing/..."> layouts
   declared above.) Vertical landing pages (/for/*) have a body.vertical-page
   .section override in site.css that takes precedence. */
.section {
  padding: 80px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-wide { max-width: 1200px; }
.section-center { text-align: center; }
.section-center .section-desc { margin-left: auto; margin-right: auto; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-primary);
}
.section-desc {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.6;
}

/* ========== GUIDES HUB (guides/index.html) ========== */
.guides-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.guides-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,145,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.guides-hero h1 { margin: 0 0 16px; }
.guides-hero .section-subtitle { margin: 0 auto; }

.guides-main { padding: 24px 0 100px; }

.guide-category { margin-bottom: 64px; }
.guide-category:last-child { margin-bottom: 0; }

.guide-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-landing);
  gap: 24px;
  flex-wrap: wrap;
}
.guide-category-head h2 {
  font-size: 28px;
  color: var(--text-primary);
  margin: 0;
}
.guide-category-head .count {
  font-size: 13px;
  color: #9A8E80;
  font-weight: 600;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius-landing);
  background: var(--bg-white);
  border: 1px solid var(--border-landing);
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}
.guide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.guide-card:hover {
  border-color: var(--border-landing);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md-landing);
  color: var(--text-primary);
}
.guide-card:hover::before { transform: scaleX(1); }

.guide-card-level {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--accent-light);
  color: var(--accent);
  margin-bottom: 12px;
  align-self: flex-start;
}
.guide-card-level.level-intermediate { background: #EBF5FF; color: #2B6CB0; }
.guide-card-level.level-advanced { background: #F5EBF8; color: #6B46C1; }

.guide-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-primary);
  font-family: var(--font-heading);
}
.guide-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}
.guide-card .read-more {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ========== BLOG ========== */
.blog-featured-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-featured-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.blog-featured-visual {
  background: linear-gradient(135deg, #2A2520, #1A1612);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.blog-featured-content {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
}
.blog-featured-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.blog-meta {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-visual { min-height: 120px; }
}

/* ========== INDIVIDUAL GUIDE PAGE (guides/*.html) ========== */
.guide-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 56px) 32px 80px;
}

.guide-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  align-self: start;
  max-height: calc(100vh - var(--nav-height) - 48px);
  overflow-y: auto;
  padding-right: 8px;
}
.guide-sidebar h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9A8E80;
  margin: 24px 0 8px;
  font-family: var(--font-body);
  font-weight: 700;
}
.guide-sidebar h4:first-child { margin-top: 0; }
.guide-sidebar a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.guide-sidebar a:hover {
  color: var(--text-primary);
  background: var(--bg-muted);
}
.guide-sidebar a.active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: var(--accent-light);
  font-weight: 600;
}

.guide-content { min-width: 0; }

.guide-content h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 12px;
  color: var(--text-primary);
}
.guide-content .guide-meta {
  font-size: 13px;
  color: #9A8E80;
  margin-bottom: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.guide-content h2 {
  font-size: 28px;
  margin: 48px 0 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-landing);
  color: var(--text-primary);
}
.guide-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 32px;
}
.guide-content h3 {
  font-size: 20px;
  margin: 32px 0 12px;
  color: var(--text-primary);
}
.guide-content p {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}
.guide-content strong { color: var(--text-primary); font-weight: 700; }
.guide-content a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.guide-content a:hover { border-bottom-color: var(--accent); }
.guide-content ul, .guide-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}
.guide-content li { margin-bottom: 8px; }

.guide-content code {
  background: var(--bg-muted);
  padding: 2px 7px;
  border-radius: 4px;
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 13px;
  color: var(--accent);
  border: 1px solid var(--border-light-landing);
}
.guide-content pre {
  background: var(--bg-dark);
  border-radius: var(--radius-landing);
  padding: 20px 24px;
  overflow-x: auto;
  margin: 0 0 20px;
}
.guide-content pre code {
  background: none;
  padding: 0;
  border: none;
  font-size: 13px;
  color: #E8E2DA;
}

.guide-content .tip {
  padding: 20px 24px;
  border-radius: var(--radius-landing);
  margin: 0 0 20px;
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
}
.guide-content .tip strong { color: var(--accent); }
.guide-content .tip p { margin: 0; color: var(--text-primary); }
.guide-content .tip p + p { margin-top: 8px; }

.guide-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 14px;
  background: var(--bg-white);
  border-radius: var(--radius-landing);
  overflow: hidden;
  border: 1px solid var(--border-landing);
}
.guide-content th, .guide-content td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light-landing);
  text-align: left;
}
.guide-content th {
  background: var(--bg-muted);
  font-weight: 700;
  color: var(--text-primary);
}
.guide-content td { color: var(--text-secondary); }
.guide-content tr:last-child td { border-bottom: none; }

.guide-content kbd {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--bg-white);
  border: 1px solid var(--border-landing);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: 0 1px 0 var(--border-landing);
}
/* ========== SCROLL REVEAL (shared across landing + vertical pages) ========== */
/* Progressive enhancement: no animation until JS loads */
.reveal {
  opacity: 1;
  transform: none;
}
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-loaded .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-loaded .reveal { opacity: 1; transform: none; transition: none; }
}

/* ========== MOBILE UTILITIES ========== */
.mobile-only { display: none; }
.hide-mobile {}
.mobile-cta-note {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}
@media (max-width: 768px) {
  .mobile-only { display: inline; }
  .hide-mobile { display: none !important; }
}
