/* ==========================================================================
   COLORING CREATOR VAULT — PREMIUM REDESIGN
   Brand: Baheri DigiTech
   Palette: Sky Blue / Royal Indigo / Violet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Brand */
  --blue:           #3796C5;
  --blue-deep:      #2878A8;
  --indigo:         #4845C4;
  --indigo-deep:    #3532A3;
  --violet:         #5B00B8;
  --violet-deep:    #4800A0;

  /* Light backgrounds */
  --bg-white:       #FFFFFF;
  --bg-page:        #F9FAFB;
  --bg-blue-light:  #EEF8FC;
  --bg-indigo-light:#F0F0FF;
  --bg-violet-light:#F5EEFF;
  --bg-lavender:    #FAF8FF;
  --bg-soft:        #F8F9FC;

  /* Text */
  --text:           #182033;
  --text-secondary: #374151;
  --muted:          #667085;
  --xmuted:         #9DAAB8;

  /* Border */
  --border:         #E6EAF0;
  --border-blue:    rgba(55,150,197,0.25);
  --border-indigo:  rgba(72,69,196,0.25);

  /* Gradients */
  --grad-btn:       linear-gradient(135deg, #4845C4 0%, #5B00B8 100%);
  --grad-text:      linear-gradient(90deg, #3796C5 0%, #4845C4 55%, #5B00B8 100%);
  --grad-hero-bg:   linear-gradient(180deg, #FFFFFF 0%, #F4F6FF 100%);
  --grad-stats:     linear-gradient(160deg, #FFFFFF 0%, #EEF8FC 50%, #FAF8FF 100%);

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(24,32,51,0.06), 0 1px 2px rgba(24,32,51,0.04);
  --shadow-md:      0 4px 16px rgba(24,32,51,0.08), 0 2px 4px rgba(24,32,51,0.04);
  --shadow-lg:      0 12px 32px rgba(24,32,51,0.10), 0 4px 8px rgba(24,32,51,0.05);
  --shadow-indigo:  0 8px 24px rgba(72,69,196,0.22);
  --shadow-btn:     0 4px 14px rgba(72,69,196,0.32), 0 1px 3px rgba(72,69,196,0.15);

  /* Typography */
  --font-head:      'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body:      'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-pad:    100px;
  --container:      1200px;

  /* Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   22px;
  --r-2xl:  28px;
  --r-pill: 9999px;
}

/* ── RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-secondary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 72px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
a { color: var(--indigo); text-decoration: none; transition: color .2s; }
a:hover { color: var(--indigo-deep); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--text);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  word-spacing: 0.15em;
}

/* ── UTILITIES ─────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section-pad) 0; position: relative; }
@media (max-width: 768px) { .section { padding: 72px 0; } .container { padding: 0 20px; } }

.bg-white       { background: var(--bg-white); }
.bg-page        { background: var(--bg-page); }
.bg-blue-light  { background: var(--bg-blue-light); }
.bg-indigo-light{ background: var(--bg-indigo-light); }
.bg-violet-light{ background: var(--bg-violet-light); }
.bg-lavender    { background: var(--bg-lavender); }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Kicker / overline */
.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 700px;
}
@media (min-width: 768px) { .section-title { font-size: 2.75rem; } }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border-radius: var(--r-lg);
  font-family: var(--font-head); font-size: 1rem; font-weight: 800;
  cursor: pointer; border: none; transition: all .22s ease;
  text-align: center; white-space: nowrap; position: relative;
}
.btn-primary {
  background: var(--grad-btn);
  color: #FFF;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(72,69,196,0.38);
  color: #FFF;
}
.btn-outline {
  background: #FFF;
  color: var(--indigo);
  border: 2px solid var(--border-indigo);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--indigo);
  background: var(--bg-indigo-light);
  transform: translateY(-2px);
  color: var(--indigo);
}
.btn-lg { padding: 20px 44px; font-size: 1.1rem; border-radius: var(--r-xl); }
@keyframes pulse-glow {
  0%,100% { box-shadow: var(--shadow-btn); }
  50%      { box-shadow: 0 12px 36px rgba(91,0,184,0.40); }
}
.btn-pulse { animation: pulse-glow 2.8s ease-in-out infinite; }

/* ── ANNOUNCEMENT BAR ──────────────────────────────────────────────── */
.announcement-bar {
  background: var(--indigo);
  color: #FFF;
  padding: 11px 20px;
  text-align: center;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.announcement-pill {
  background: rgba(255,255,255,0.2);
  color: #FFF;
  padding: 2px 11px;
  border-radius: var(--r-pill);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── S1: HERO ──────────────────────────────────────────────────────── */
.hero {
  background: var(--grad-hero-bg);
  padding: 72px 0 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-blue-light);
  border: 1px solid var(--border-blue);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 28px;
}
.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) { .hero-title { font-size: 2.8rem; } }
@media (max-width: 600px) { .hero-title { font-size: 2.1rem; } }
.hero-stanza { display: block; }
.hero-stanza-2 {
  display: block;
  margin-top: 6px;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
@media (max-width: 600px) { .hero-sub { font-size: 1.05rem; } }
.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
@media (min-width: 480px) { .hero-cta-row { flex-direction: row; justify-content: center; } }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
  font-size: .875rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust-item .tick {
  width: 16px; height: 16px;
  background: var(--bg-blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item .tick svg { color: var(--blue); }
.hero-image-wrap {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: 16px 16px 0;
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 -6px 32px rgba(72,69,196,0.08);
}
.hero-image-wrap img {
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  width: 100%;
}

/* ── S2: PRODUCT PROOF ("THIS IS WHAT'S INSIDE") ───────────────────── */
.proof-section {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}
.proof-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px) {
  .proof-layout {
    grid-template-areas:
      "hero side"
      "row1 row1";
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
  }
  .proof-hero { grid-area: hero; }
  .proof-side { grid-area: side; }
  .proof-bottom-row { grid-area: row1; }
}
.proof-bottom-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .proof-bottom-row { grid-template-columns: repeat(3, 1fr); } }

.proof-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--indigo);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.proof-card.accent-blue  { border-top-color: var(--blue); }
.proof-card.accent-indigo{ border-top-color: var(--indigo); }
.proof-card.accent-violet{ border-top-color: var(--violet); }

.proof-card-img-wrap { overflow: hidden; flex-shrink: 0; }
.proof-card-img-wrap img { width: 100%; height: 220px; object-fit: cover; transition: transform .3s ease; }
.proof-hero .proof-card-img-wrap img { height: 320px; }
.proof-card:hover .proof-card-img-wrap img { transform: scale(1.03); }

.proof-card-body { padding: 20px 22px; flex: 1; }
.proof-card-label {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--indigo);
  margin-bottom: 6px;
}
.proof-card-title { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.proof-card-desc  { font-size: .875rem; color: var(--muted); line-height: 1.55; }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(24,32,51,0.82);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  z-index: 9990; padding: 24px;
}
.lightbox-inner {
  max-width: 680px; width: 100%;
  background: var(--bg-white);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.lightbox-inner img { width: 100%; display: block; }
.lightbox-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: var(--text);
  transition: all .2s;
}
.lightbox-close:hover { background: var(--text); color: #FFF; }
.lightbox-caption {
  padding: 18px 22px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
}

/* ── S3: VALUE STATS (20 / 16) ─────────────────────────────────────── */
.stats-section {
  background: var(--grad-stats);
  border-bottom: 1px solid var(--border);
}
.stats-header { text-align: center; margin-bottom: 52px; }
.stats-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 640px) { .stats-cards { grid-template-columns: 1fr 1fr; } }
.stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.stat-card.blue-stat::before  { background: var(--blue); }
.stat-card.violet-stat::before{ background: var(--violet); }
.stat-number {
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.stat-card.blue-stat   .stat-number { color: var(--indigo); }
.stat-card.violet-stat .stat-number { color: var(--violet); }
.stat-label {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 12px;
}
.stat-math {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg-page);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.stat-desc { font-size: .875rem; color: var(--muted); line-height: 1.6; }
.stat-disclaimer {
  text-align: center;
  max-width: 600px;
  margin: 32px auto 0;
  font-size: .8rem;
  color: var(--xmuted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ── S4: BOOK CONCEPT CARDS ─────────────────────────────────────────── */
.books-section { background: var(--bg-white); }
.books-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px)  { .books-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .books-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; } }

.book-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
  cursor: default;
}
.book-card:hover { transform: translateY(-5px) rotate(-0.5deg); box-shadow: var(--shadow-lg); }

.book-cover {
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-cover::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 6px; height: 100%;
  background: rgba(0,0,0,0.12);
}
.book-cover-icon { font-size: 2.5rem; margin-bottom: 10px; line-height: 1; }
.book-cover-title {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 900;
  color: #FFF;
  line-height: 1.25;
  text-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.book-cover-sub {
  font-size: .68rem;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: .05em;
}

/* Cover color themes */
.cover-animals   { background: linear-gradient(150deg, #3796C5 0%, #4845C4 100%); }
.cover-dinos     { background: linear-gradient(150deg, #059669 0%, #3796C5 100%); }
.cover-ocean     { background: linear-gradient(150deg, #0891B2 0%, #3796C5 100%); }
.cover-fantasy   { background: linear-gradient(150deg, #7C3AED 0%, #5B00B8 100%); }
.cover-mandalas  { background: linear-gradient(150deg, #4845C4 0%, #7C3AED 100%); }
.cover-cozy      { background: linear-gradient(150deg, #D97706 0%, #DC2626 100%); }

.book-card-info {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: none;
  padding: 12px 14px;
  flex: 1;
}
.book-card-cat {
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--indigo);
  margin-bottom: 3px;
}
.book-card-name { font-size: .78rem; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 4px; }
.book-card-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--bg-indigo-light);
  color: var(--indigo);
  padding: 2px 7px;
  border-radius: var(--r-pill);
}
.books-footnote {
  text-align: center;
  margin-top: 36px;
  font-size: .9rem;
  color: var(--muted);
  font-weight: 600;
}
.books-footnote span { color: var(--indigo); font-weight: 800; }

/* ── PROMPT LIBRARY SECTION (existing, restyled) ────────────────────── */
.prompt-lib-section { background: var(--bg-indigo-light); }
.prompt-lib-split {
  display: grid; grid-template-columns: 1fr; gap: 52px; align-items: center;
}
@media (min-width: 900px) { .prompt-lib-split { grid-template-columns: 1fr 1fr; } }
.prompt-lib-visual {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.prompt-lib-visual img { width: 100%; }

.field-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 24px; }
.field-tag {
  background: var(--bg-white);
  border: 1px solid var(--border-indigo);
  color: var(--indigo);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 5px 13px;
  border-radius: var(--r-pill);
}
.sample-prompt-box {
  background: var(--text);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.08);
}
.sample-prompt-label {
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--xmuted);
  margin-bottom: 10px;
}
.sample-prompt-text {
  font-family: 'Courier New', monospace;
  font-size: .88rem;
  color: #60B8F0;
  line-height: 1.6;
  word-break: break-word;
  margin-bottom: 14px;
}
.copy-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--grad-btn);
  color: #FFF;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s;
}
.copy-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-indigo); }

/* ── S5: 3-COLUMN PROMPT DEMO ───────────────────────────────────────── */
.demo-section { background: var(--bg-white); }
.demo-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 900px) { .demo-3col { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 0; } }

.demo-step {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.demo-step-header {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.demo-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grad-btn);
  color: #FFF;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.demo-step-title {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--indigo);
}
.demo-step-body { padding: 20px; }

/* Step 1: COPY */
.demo-step-1 { background: var(--bg-white); }
.xlsx-row-mockup {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.xlsx-row-header {
  display: grid;
  grid-template-columns: 60px 80px 1fr;
  background: var(--bg-blue-light);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}
.xlsx-cell-h {
  padding: 0 10px;
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  border-right: 1px solid var(--border);
}
.xlsx-row-data {
  display: grid;
  grid-template-columns: 60px 80px 1fr;
  background: var(--bg-white);
  padding: 8px 0;
}
.xlsx-cell {
  padding: 0 10px;
  font-size: .78rem;
  color: var(--text-secondary);
  border-right: 1px solid var(--border);
  line-height: 1.4;
}
.xlsx-cell.prompt-cell {
  font-family: 'Courier New', monospace;
  font-size: .72rem;
  color: var(--indigo-deep);
  line-height: 1.5;
}

/* Step 2: PASTE (generic AI interface) */
.demo-step-2 { background: var(--bg-page); }
.ai-interface-mock {
  background: var(--text);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.ai-mock-bar {
  background: #1E293B;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ai-mock-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.ai-mock-title {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-left: 4px;
}
.ai-mock-input-area {
  padding: 14px;
  min-height: 80px;
  font-family: 'Courier New', monospace;
  font-size: .78rem;
  color: #60B8F0;
  line-height: 1.55;
}
.ai-mock-input-label {
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.3);
  margin-bottom: 8px;
}
.ai-mock-btn {
  margin: 0 14px 14px;
  background: var(--grad-btn);
  color: #FFF;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: var(--r-md);
  border: none;
  cursor: default;
  width: calc(100% - 28px);
  text-align: center;
}

/* Step 3: CREATE */
.demo-step-3 { background: var(--bg-white); }
.demo-step-3 img { width: 100%; border-radius: var(--r-md); border: 1px solid var(--border); }
.demo-output-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-deep);
  margin-top: 12px;
  text-align: center;
}

/* Connecting arrows */
.demo-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--indigo);
  font-size: 1.5rem;
  font-weight: 900;
}
@media (min-width: 900px) { .demo-arrow { display: flex; } }
.demo-step-mobile-gap { height: 16px; display: block; }
@media (min-width: 900px) { .demo-step-mobile-gap { display: none; } }

/* ── BEFORE/AFTER SLIDER ─────────────────────────────────────────────── */
.ba-section { background: var(--bg-page); }
.ba-wrapper { max-width: 760px; margin: 0 auto; }
.ba-container {
  position: relative; width: 100%; height: 480px;
  border-radius: var(--r-2xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}
@media (min-width: 768px) { .ba-container { height: 560px; } }
@media (max-width: 600px)  { .ba-container { height: 340px; } }
.ba-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-img.ba-overlay { clip-path: polygon(0 0,50% 0,50% 100%,0 100%); }
.ba-range {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; z-index: 10;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: #FFF;
  box-shadow: 0 0 12px rgba(0,0,0,.4);
  pointer-events: none;
  transform: translateX(-50%); z-index: 5;
}
.ba-handle-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-btn);
  color: #FFF;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.28);
}
.ba-labels {
  display: flex; justify-content: space-between;
  margin-top: 14px; font-size: .875rem; font-weight: 800;
}
.ba-labels .left  { color: #DC2626; }
.ba-labels .right { color: var(--blue-deep); }
.ba-disclaimer {
  text-align: center; margin-top: 12px;
  font-size: .8rem; color: var(--xmuted); font-style: italic;
}

/* ── S6: B&W → COLORED ──────────────────────────────────────────────── */
.bw-color-section { background: var(--bg-lavender); }
.bw-color-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) { .bw-color-grid { grid-template-columns: 1fr auto 1fr; align-items: center; } }
.bw-color-panel {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.bw-color-panel-label {
  padding: 13px 20px;
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.bw-panel-num {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: .72rem; font-weight: 900;
  color: #FFF; flex-shrink: 0;
}
.bw-panel-num.num-1 { background: var(--muted); }
.bw-panel-num.num-2 { background: var(--indigo); }
.bw-panel-text {
  font-family: var(--font-head); font-size: .72rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .08em;
}
.bw-panel-text.text-1 { color: var(--muted); }
.bw-panel-text.text-2 { color: var(--indigo); }
.bw-color-panel img {
  display: block; width: 100%;
  border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.bw-divider {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 8px;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
@media (min-width: 768px) { .bw-divider { display: flex; } }
.bw-divider-arrow { font-size: 1.5rem; color: var(--indigo); }
.bw-color-note {
  text-align: center; margin-top: 24px;
  font-size: .875rem; color: var(--muted); font-style: italic;
}

/* ── S7: CATEGORY CARDS ─────────────────────────────────────────────── */
.categories-section { background: var(--bg-white); }
.cat-search-wrap {
  max-width: 560px; margin: 0 auto 44px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  display: flex; align-items: center; gap: 10px; padding: 12px 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.cat-search-wrap:focus-within { border-color: var(--indigo); }
.cat-search-wrap svg { color: var(--muted); flex-shrink: 0; }
.cat-search-input {
  border: none; outline: none; width: 100%;
  font-family: var(--font-body); font-size: .95rem;
  color: var(--text); background: transparent;
}
.cat-search-input::placeholder { color: var(--xmuted); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px)  { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .category-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

/* Alternating bg tints for category cards */
.category-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: var(--r-lg);
  padding: 20px 18px;
  cursor: pointer;
  transition: all .22s ease;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 8px;
}
.category-card:nth-child(4n+1) { background: var(--bg-white);        border-top-color: var(--blue); }
.category-card:nth-child(4n+2) { background: var(--bg-blue-light);   border-top-color: var(--indigo); }
.category-card:nth-child(4n+3) { background: var(--bg-indigo-light); border-top-color: var(--violet); }
.category-card:nth-child(4n+0) { background: var(--bg-violet-light); border-top-color: var(--blue); }
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--indigo) !important;
  border-top-color: var(--indigo) !important;
}
.cat-card-top {
  display: flex; align-items: center; justify-content: space-between;
}
.cat-icon { font-size: 1.6rem; line-height: 1; }
.cat-badge {
  font-family: var(--font-head); font-size: .65rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--indigo); background: var(--bg-indigo-light);
  padding: 3px 9px; border-radius: var(--r-pill);
}
.cat-num-label {
  font-family: var(--font-head); font-size: .65rem; font-weight: 800;
  color: var(--xmuted); letter-spacing: .04em;
}
.cat-name { font-family: var(--font-head); font-size: .95rem; font-weight: 800; color: var(--text); }
.cat-subjects { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.cat-audience {
  font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; color: var(--blue-deep);
}
.cat-open {
  display: flex; align-items: center; gap: 4px;
  margin-top: 4px;
  font-family: var(--font-head); font-size: .75rem; font-weight: 800;
  color: var(--indigo);
  transition: gap .2s;
}
.category-card:hover .cat-open { gap: 8px; }

/* ── MODAL ─────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(24,32,51,0.72);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  z-index: 9999; padding: 20px;
}
.modal-box {
  background: var(--bg-white);
  border-radius: var(--r-2xl);
  max-width: 680px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--bg-page); border: 1px solid var(--border);
  width: 34px; height: 34px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: var(--muted); transition: all .2s;
}
.modal-close:hover { background: var(--text); color: #FFF; }
.modal-title { font-size: 1.5rem; margin-bottom: 4px; }
.modal-badge {
  display: inline-block; background: var(--bg-indigo-light); color: var(--indigo);
  font-family: var(--font-head); font-size: .75rem; font-weight: 800;
  padding: 4px 12px; border-radius: var(--r-pill); margin-bottom: 22px;
}
.modal-label {
  font-size: .68rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .09em; color: var(--indigo); margin-bottom: 7px;
}
.modal-section { margin-bottom: 18px; }
.modal-subjects { display: flex; flex-wrap: wrap; gap: 6px; }
.subject-pill {
  background: var(--bg-page); border: 1px solid var(--border);
  padding: 4px 12px; border-radius: var(--r-pill);
  font-size: .8rem; font-weight: 600; color: var(--text-secondary);
}
.modal-sample {
  background: var(--text); color: #60B8F0;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-md); padding: 14px;
  font-family: 'Courier New', monospace; font-size: .85rem; line-height: 1.55;
}

/* ── S8: FOUR USES ──────────────────────────────────────────────────── */
.uses-section { background: var(--bg-indigo-light); }
.uses-hub-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 900px) { .uses-hub-layout { grid-template-columns: repeat(2, 1fr) auto repeat(2, 1fr); gap: 16px; } }

.use-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, box-shadow .2s ease;
}
.use-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.use-card-icon {
  width: 48px; height: 48px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 14px;
}
.use-card-icon.blue-icon  { background: var(--bg-blue-light); }
.use-card-icon.indigo-icon{ background: var(--bg-indigo-light); }
.use-card-icon.violet-icon{ background: var(--bg-violet-light); }
.use-card-icon.teal-icon  { background: #F0FDFB; }

.use-card-label {
  font-family: var(--font-head); font-size: .65rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--indigo); margin-bottom: 6px;
}
.use-card-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 14px; color: var(--text); }
.use-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.use-card ul li {
  font-size: .875rem; color: var(--muted);
  display: flex; align-items: flex-start; gap: 8px;
}
.use-card ul li::before { content: '→'; color: var(--indigo); font-weight: 800; flex-shrink: 0; }

.uses-hub-center {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 24px 16px;
}
.uses-hub-badge {
  background: var(--grad-btn);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-indigo);
  text-align: center;
}
.uses-hub-icon { font-size: 2.5rem; margin-bottom: 10px; }
.uses-hub-name {
  font-family: var(--font-head); font-size: .78rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.75); margin-bottom: 4px;
}
.uses-hub-title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 900;
  color: #FFF; line-height: 1.2;
}

/* Uses - simple 2x2 grid layout on mobile */
.uses-grid-fallback {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .uses-grid-fallback { grid-template-columns: 1fr 1fr; } }

/* ── TRANSFORMATION CHAIN (premium redesign) ──────────────────────── */
.transform-section { background: var(--bg-page); position: relative; overflow: hidden; }
.transform-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; background: radial-gradient(circle, rgba(72,69,196,0.05) 0%, transparent 70%); pointer-events: none;
}
.transformation-chain { display: flex; flex-direction: column; align-items: center; max-width: 680px; margin: 0 auto; position: relative; }
.transform-step {
  width: 100%; display: flex; align-items: center; gap: 20px;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 24px 28px;
  box-shadow: var(--shadow-sm); position: relative; z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.transform-step:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: var(--shadow-lg); 
  border-color: var(--border-indigo);
}
.transform-step.is-hero {
  background: var(--grad-btn); border-color: transparent;
  box-shadow: var(--shadow-indigo);
  padding: 28px 32px;
}
.transform-step.is-hero .transform-label { color: rgba(255,255,255,.8); }
.transform-step.is-hero .transform-name  { color: #FFF; font-size: 1.1rem; }
.transform-step.is-hero .transform-step-num { 
  background: rgba(255,255,255,.2); color: #FFF; width: 44px; height: 44px; font-size: 1.1rem;
}
.transform-connector { 
  width: 4px; height: 32px; margin: 0 auto; 
  background: linear-gradient(180deg, var(--indigo) 0%, var(--violet) 100%);
  opacity: 0.6;
  border-radius: var(--r-pill);
}
.transform-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-indigo-light); color: var(--indigo);
  font-family: var(--font-head); font-size: .95rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(72,69,196,0.15);
}
.transform-label { font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--indigo); margin-bottom: 4px; }
.transform-name  { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.transform-desc  { font-size: .85rem; color: var(--muted); line-height: 1.5; }

/* ── MARKETPLACE SECTION (Premium Redesign) ──────────────── */
.marketplace-section { background: var(--bg-blue-light); }
.marketplace-grid { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 960px; margin: 0 auto; }
@media (min-width: 768px) { .marketplace-grid { grid-template-columns: 1fr 1fr; } }

.marketplace-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 36px; box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.marketplace-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.marketplace-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.marketplace-card.card-kdp::before  { background: var(--indigo); }
.marketplace-card.card-etsy::before { background: var(--violet); }

.mkt-badge {
  display: inline-block; font-size: .7rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px; border-radius: var(--r-pill); margin-bottom: 16px;
}
.mkt-badge.kdp  { background: var(--bg-indigo-light); color: var(--indigo); }
.mkt-badge.etsy { background: var(--bg-violet-light); color: var(--violet); }
.mkt-badge.note { background: var(--bg-page); color: var(--muted); margin-left: 8px; border: 1px solid var(--border); }

.marketplace-card h3 { font-size: 1.4rem; margin-bottom: 24px; color: var(--text); letter-spacing: -0.02em; }

.workflow-steps { display: flex; flex-direction: column; gap: 14px; }
.workflow-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: var(--bg-white);
  border-radius: var(--r-lg); border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 2px 4px rgba(24,32,51,0.02);
}
.workflow-step:hover { border-color: var(--border-indigo); box-shadow: var(--shadow-sm); }

.wf-num {
  width: 28px; height: 28px; border-radius: 50%;
  font-family: var(--font-head); font-size: .8rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.card-kdp .wf-num  { background: var(--indigo); color: #FFF; box-shadow: 0 4px 8px rgba(72,69,196,0.2); }
.card-etsy .wf-num { background: var(--violet); color: #FFF; box-shadow: 0 4px 8px rgba(91,0,184,0.2); }

.wf-text { font-size: .9rem; font-weight: 600; color: var(--text-secondary); line-height: 1.5; padding-top: 3px; }

/* ── DELIVERABLES SECTION ───────────────────────────────────────────── */
.deliverables-section { background: var(--bg-white); }
.deliverables-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media (min-width: 640px)  { .deliverables-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .deliverables-grid { grid-template-columns: repeat(3, 1fr); } }
.deliverable-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.deliverable-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.deliverable-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.deliverable-card-body { padding: 20px; }
.deliverable-format { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.format-chip {
  font-family: var(--font-head); font-size: .65rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .07em;
  background: var(--bg-indigo-light); color: var(--indigo);
  padding: 3px 8px; border-radius: var(--r-sm);
}
.deliverable-title { font-size: 1.02rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.deliverable-desc  { font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* ── BUSINESS POSSIBILITY (Premium Redesign) ───────────────────────── */
.possibility-section { 
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet-deep) 100%); 
  color: #FFF;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.possibility-section .section-title, .possibility-section .kicker { color: #FFF; }
.possibility-section .kicker { background: rgba(255,255,255,0.1); padding: 4px 12px; border-radius: var(--r-pill); display: inline-block; margin-bottom: 20px;}
.possibility-section .section-sub { color: rgba(255,255,255,0.7); }
.use-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 36px 0; }
.use-tag {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 20px; border-radius: var(--r-pill);
  font-family: var(--font-head); font-size: .875rem; font-weight: 700;
  color: #FFF; box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all .25s ease;
}
.use-tag:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); border-color: rgba(255,255,255,0.3); }
.hypothetical-box {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 32px 36px;
  max-width: 600px; margin: 0 auto; text-align: center;
  box-shadow: 0 20px 48px rgba(0,0,0,0.25);
  position: relative; overflow: hidden;
}
.hypothetical-label {
  display: block; font-family: var(--font-head); font-size: .75rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--violet); margin-bottom: 12px;
}
.hypothetical-math { 
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; 
  color: var(--text); letter-spacing: -0.03em; margin-bottom: 4px;
}
.hypothetical-math .highlight { color: #059669; font-size: 2.2rem; display: block; margin-top: 8px; }
.hypothetical-disc { font-size: .8rem; color: var(--muted); margin-top: 18px; font-style: italic; line-height: 1.5; }

/* ── S10: VISUAL PROOF STRIP ────────────────────────────────────────── */
.proof-strip-section { background: var(--bg-indigo-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-strip-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 40px 0;
}
.strip-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px 20px; min-width: 96px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.strip-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.strip-item-icon { font-size: 1.8rem; line-height: 1; }
.strip-item-label {
  font-family: var(--font-head); font-size: .72rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .07em; color: var(--indigo);
}
.strip-arrow {
  color: var(--xmuted); font-size: 1.2rem; font-weight: 700; padding: 0 4px;
}

/* ── S11: PRICING ───────────────────────────────────────────────────── */
.pricing-section { background: var(--bg-white); }
.pricing-card {
  max-width: 800px; margin: 0 auto;
  background: var(--bg-white);
  border: 2px solid var(--indigo);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-indigo);
}
.pricing-banner {
  background: var(--grad-btn);
  padding: 14px 20px; text-align: center;
  font-family: var(--font-head); font-size: .88rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .07em; color: #FFF;
}
.pricing-body { padding: 44px 48px; }
@media (max-width: 640px) { .pricing-body { padding: 28px 22px; } }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.pricing-check { color: #059669; flex-shrink: 0; }
.pricing-text { flex: 1; font-weight: 700; color: var(--text); font-size: .95rem; }
.pricing-format-tag {
  font-size: .72rem; font-weight: 800; color: var(--muted);
  background: var(--bg-white); border: 1px solid var(--border);
  padding: 2px 8px; border-radius: var(--r-pill);
  white-space: nowrap;
}
.pricing-divider { height: 1px; background: var(--border); margin: 28px 0; }
.pricing-center { text-align: center; }
.pricing-label-text { font-size: .9rem; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.pricing-amount {
  font-family: var(--font-head); font-size: 5.5rem; font-weight: 900;
  color: var(--indigo); line-height: 1; margin-bottom: 28px;
  letter-spacing: -0.04em;
}
@media (max-width: 640px) { .pricing-amount { font-size: 4rem; } }
.pricing-cta-btn { width: 100%; max-width: 440px; }
.pricing-assurances {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 18px; font-size: .85rem; color: var(--muted); font-weight: 600;
}
.assurance-item { display: flex; align-items: center; gap: 6px; }
.assurance-item svg { color: var(--indigo); }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq-section { background: var(--bg-page); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-white); border-radius: var(--r-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: border-color .2s;
}
.faq-item.active { border-color: var(--border-indigo); }
.faq-q {
  width: 100%; background: transparent; border: none;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-head); font-size: .975rem; font-weight: 700;
  color: var(--text); text-align: left; gap: 12px;
}
.faq-chevron { width: 20px; height: 20px; color: var(--indigo); transition: transform .25s; flex-shrink: 0; }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: .93rem; color: var(--muted); line-height: 1.7;
  padding: 0 24px;
}
.faq-item.active .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* ── NEW HERO BONUS CALLOUT ─────────────────────────────────────────── */
.hero-bonus-callout {
  background: var(--bg-white);
  border: 1px solid var(--border-blue);
  border-left: 4px solid var(--blue);
  padding: 16px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  display: inline-block;
  text-align: left;
}
.hero-bonus-badge {
  display: inline-block;
  background: var(--blue);
  color: #FFF;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  margin-right: 8px;
  vertical-align: middle;
}

/* ── 100 PAGES CALLOUT SECTION ──────────────────────────────────────── */
.pages-callout { background: var(--bg-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pages-callout-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .pages-callout-inner { grid-template-columns: 1fr 1fr; gap: 60px; } }
.pages-callout-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--blue);
  background: var(--bg-blue-light);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.pages-callout-title { font-size: 2rem; color: var(--text); margin-bottom: 16px; line-height: 1.1; }
.pages-callout-sub { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 24px; }
.pages-callout-value-box {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 24px;
}
.value-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.value-row:last-child { margin-bottom: 0; }
.value-label { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.value-amt { font-weight: 700; color: var(--text); }
.value-row.included .value-label { color: var(--text); font-weight: 800; }
.value-row.included .value-amt { color: var(--blue); font-size: 1.2rem; font-weight: 900; }
.pages-callout-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pages-callout-tags .tag {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  color: var(--text-secondary);
}
.pages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.pages-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ── DEDICATED BONUS SECTION ────────────────────────────────────────── */
.dedicated-bonus-section { background: var(--bg-white); padding-bottom: 80px; }
.bonus-cards-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .bonus-cards-layout { grid-template-columns: 1fr 1fr; }
  .bonus-card-hero { grid-column: 1 / -1; }
}
.bonus-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .bonus-card-hero { flex-direction: row; }
  .bonus-card-hero .bonus-card-visual { width: 45%; }
  .bonus-card-hero .bonus-card-content { width: 55%; padding: 40px; }
}
.bonus-card-visual { width: 100%; }
.bonus-card-visual img { width: 100%; height: 100%; object-fit: cover; }
.bonus-card-content { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.bonus-badge { display: flex; gap: 8px; margin-bottom: 16px; align-items: center; }
.badge-num {
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 900;
  background: #111; color: #FFF; padding: 3px 8px; border-radius: var(--r-sm);
}
.badge-tag { font-family: var(--font-head); font-size: 0.7rem; font-weight: 800; color: var(--text-secondary); }
.bonus-title { font-size: 1.4rem; color: var(--text); margin-bottom: 12px; }
.bonus-card-hero .bonus-title { font-size: 1.8rem; }
.bonus-desc { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.5; }
.bonus-includes { font-size: 0.85rem; color: var(--text); margin-bottom: 20px; }
.bonus-value-tag {
  margin-top: auto;
  display: inline-block;
  background: #FFF;
  color: #059669;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  text-align: center;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

/* ── COMPACT REMINDER ───────────────────────────────────────────────── */
.reminder-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media (min-width: 768px) {
  .reminder-box { flex-direction: row; justify-content: space-between; }
  .reminder-content { width: 60%; }
  .reminder-visuals { width: 40%; justify-content: flex-end; }
}
.reminder-list { list-style: none; padding: 0; }
.reminder-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.reminder-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
  font-size: 1.2rem;
}
.reminder-visuals {
  display: flex;
  gap: -20px;
}
.reminder-visuals img {
  width: 100px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 2px solid #FFF;
  box-shadow: var(--shadow-md);
  margin-left: -40px;
}
.reminder-visuals img:first-child { margin-left: 0; z-index: 3; }
.reminder-visuals img:nth-child(2) { z-index: 2; transform: scale(0.9) translateY(10px); }
.reminder-visuals img:last-child { z-index: 1; transform: scale(0.8) translateY(20px); }

/* ── FINAL OFFER VALUE STACK ────────────────────────────────────────── */
.value-stack-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--r-2xl);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.vs-core {
  padding: 30px;
  background: #FFF;
  border-bottom: 2px dashed var(--border);
}
.vs-bonus {
  padding: 24px 30px;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
}
.vs-bonus-1 {
  background: var(--bg-blue-light);
}
.vs-header {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vs-badge {
  background: var(--blue);
  color: #FFF;
  padding: 2px 8px;
  border-radius: var(--r-pill);
}
.vs-title { font-size: 1.4rem; color: var(--text); margin-bottom: 4px; }
.vs-ref-value { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; font-style: italic; }
.vs-format { font-size: 0.85rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 16px; }

.vs-core-grid { display: flex; gap: 20px; align-items: center; }
.vs-core-visual { width: 120px; flex-shrink: 0; }
.vs-core-visual img { width: 100%; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.vs-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 0.95rem; }
.vs-list li { display: flex; align-items: center; gap: 8px; }

.vs-bonus-flex { display: flex; gap: 20px; align-items: center; }
.vs-bonus-visual { width: 80px; flex-shrink: 0; }
.vs-bonus-visual img { width: 100%; border-radius: var(--r-sm); box-shadow: var(--shadow-sm); }
.vs-bonus-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 100px;
  flex-shrink: 0;
}
.vs-bonus-visual-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; }

.vs-bonus-values { flex: 1; text-align: right; }
.vs-ref { font-size: 0.75rem; color: var(--muted); text-decoration: line-through; margin-bottom: 4px; }
.vs-today { font-size: 0.95rem; color: var(--text); }
.vs-today strong { color: #059669; }

.vs-price-area {
  padding: 40px 30px;
  background: var(--bg-indigo-light);
  text-align: center;
}
.vs-price-note { font-size: 1rem; font-weight: 700; color: var(--indigo); margin-bottom: 16px; }
.vs-price { font-family: var(--font-head); font-size: 4rem; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 16px; letter-spacing: -0.04em; }
.vs-price-sub { display: flex; justify-content: center; gap: 12px; font-size: 0.75rem; font-weight: 800; color: var(--muted); margin-bottom: 24px; }
.vs-cta { width: 100%; font-size: 1.1rem; padding: 18px 24px; }
.vs-start-note { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-top: 16px; }

@media (max-width: 600px) {
  .vs-core-grid, .vs-bonus-flex { flex-direction: column; align-items: flex-start; }
  .vs-bonus-values { text-align: left; margin-top: 12px; }
  .vs-price-sub { flex-direction: column; gap: 4px; }
}

/* ── FINAL CTA ───────────────────────────────────────────────────────── */
.final-cta-section {
  background: var(--text);
  padding: 100px 0;
  text-align: center;
}
.final-cta-section h2 { color: #FFF; font-size: 2.75rem; margin-bottom: 16px; }
@media (max-width: 600px) { .final-cta-section h2 { font-size: 2rem; } }
.final-cta-section p { color: var(--xmuted); font-size: 1.1rem; max-width: 580px; margin: 0 auto 36px; }
.final-price-note { margin-top: 24px; font-size: .88rem; color: var(--xmuted); }
.ecosystem-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.ecosystem-chip {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 14px 22px; text-align: center;
}
.eco-label { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--xmuted); margin-bottom: 3px; }
.eco-name  { font-size: .95rem; font-weight: 800; color: #FFF; }
.eco-plus  { color: rgba(255,255,255,.3); font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; }

/* ── STICKY MOBILE CTA ──────────────────────────────────────────────── */
.sticky-mobile {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(24,32,51,.97); backdrop-filter: blur(10px);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 999; border-top: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 768px) { .sticky-mobile { display: none; } }
.sticky-info { color: #FFF; }
.sticky-price { font-family: var(--font-head); font-weight: 900; font-size: 1.3rem; }
.sticky-sub   { font-size: .72rem; color: var(--xmuted); }
.sticky-btn   { padding: 12px 22px; font-size: .9rem; border-radius: var(--r-md); white-space: nowrap; }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text); color: var(--xmuted);
  padding: 56px 0 44px; border-top: 1px solid rgba(255,255,255,.05);
}
.footer-inner { text-align: center; max-width: 860px; margin: 0 auto; }
.footer-brand { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: #FFF; margin-bottom: 8px; }
.footer-tagline { font-size: .875rem; color: var(--xmuted); margin-bottom: 24px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-bottom: 24px; }
.footer-links a { color: var(--xmuted); font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: #FFF; }
.footer-disclaimer {
  background: rgba(255,255,255,.04); border-radius: var(--r-md);
  padding: 18px 22px; margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.06);
  font-size: .8rem; line-height: 1.65; text-align: left; color: var(--xmuted);
}
.footer-copyright { font-size: .78rem; color: #475569; }

/* ── LEGAL PAGES ─────────────────────────────────────────────────────── */
.legal-header {
  background: var(--text); padding: 56px 0 44px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.legal-header h1 { color: #FFF; font-size: 2rem; margin-bottom: 10px; }
.legal-header p  { color: var(--xmuted); }
.legal-content { max-width: 800px; margin: 0 auto; padding: 52px 24px; }
.legal-content h2 { font-size: 1.25rem; margin: 32px 0 10px; }
.legal-content p  { margin-bottom: 14px; line-height: 1.75; color: var(--text-secondary); }
.legal-content ul { margin: 14px 0 14px 20px; }
.legal-content li { margin-bottom: 8px; color: var(--text-secondary); }

/* ── MOBILE RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 767px) {
  :root { --section-pad: 72px; }
  .section-title { font-size: 2rem; }
  .stat-number { font-size: 4.5rem; }
  .uses-hub-layout { display: flex; flex-direction: column; }
  .bw-color-grid { display: grid; grid-template-columns: 1fr; }
  .demo-3col { display: flex; flex-direction: column; gap: 0; }
  .proof-hero .proof-card-img-wrap img { height: 220px; }
}

/* ── FADE-UP ANIMATION ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-d1 { animation-delay: .1s; }
.fade-up-d2 { animation-delay: .2s; }
.fade-up-d3 { animation-delay: .3s; }

/* ── PAGES PREVIEW NOTE (Phase 5 — honest bonus preview) ────────────── */
.pages-preview-note {
  background: var(--bg-blue-light);
  border: 1.5px solid var(--border-blue);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  text-align: center;
}
.pages-preview-icon { font-size: 2.5rem; margin-bottom: 10px; }
.pages-preview-count {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.pages-preview-formats {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pages-preview-mockup { margin: 0 auto; max-width: 320px; }

/* ── POSSIBILITY DISCLAIMER (Phase 4 — no income claims) ─────────────── */
.possibility-disclaimer {
  margin-top: 32px;
  padding: 18px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ── ACCESSIBLE CATEGORY CARDS ────────────────────────────────────────── */
.category-card { cursor: pointer; }
.category-card:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 3px;
}

/* ==========================================================================
   PREMIUM USES SECTION — "ONE VAULT. FOUR DIFFERENT USES."
   ========================================================================== */

/* ── ECOSYSTEM GRID ─────────────────────────────────────────────────────── */
.uses-ecosystem {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  grid-template-rows: auto auto;
  gap: 24px 20px;
  align-items: center;
  margin-top: 56px;
  position: relative;
}
.uses-top-row,
.uses-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.uses-top-row { grid-column: 1; grid-row: 1 / 3; }
.uses-vault-center { grid-column: 2; grid-row: 1 / 3; display: flex; flex-direction: column; align-items: center; position: relative; }
.uses-bottom-row { grid-column: 3; grid-row: 1 / 3; }

/* ── PRIMARY USE CARDS ──────────────────────────────────────────────────── */
.use-pcard {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 22px 20px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  box-shadow: var(--shadow-sm);
}
.use-pcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  transition: opacity 0.22s ease;
}
.use-pcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.use-pcard:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 3px;
}

/* Color variants — top accent bar + icon/number tinting */
.use-pcard--blue { border-color: rgba(55,150,197,0.25); }
.use-pcard--blue::before { background: linear-gradient(90deg, #3796C5, #2878A8); }
.use-pcard--blue:hover { border-color: rgba(55,150,197,0.55); }
.use-pcard--blue .use-pcard-num { color: #3796C5; }
.use-pcard--blue .use-pcard-icon { color: #3796C5; background: var(--bg-blue-light); }
.use-pcard--blue .use-pcard-tags span { background: var(--bg-blue-light); color: #2878A8; border-color: rgba(55,150,197,0.25); }

.use-pcard--indigo { border-color: rgba(72,69,196,0.22); }
.use-pcard--indigo::before { background: linear-gradient(90deg, #4845C4, #3532A3); }
.use-pcard--indigo:hover { border-color: rgba(72,69,196,0.5); }
.use-pcard--indigo .use-pcard-num { color: #4845C4; }
.use-pcard--indigo .use-pcard-icon { color: #4845C4; background: var(--bg-indigo-light); }
.use-pcard--indigo .use-pcard-tags span { background: var(--bg-indigo-light); color: #3532A3; border-color: rgba(72,69,196,0.22); }

.use-pcard--violet { border-color: rgba(91,0,184,0.18); }
.use-pcard--violet::before { background: linear-gradient(90deg, #5B00B8, #4800A0); }
.use-pcard--violet:hover { border-color: rgba(91,0,184,0.4); }
.use-pcard--violet .use-pcard-num { color: #5B00B8; }
.use-pcard--violet .use-pcard-icon { color: #5B00B8; background: var(--bg-violet-light); }
.use-pcard--violet .use-pcard-tags span { background: var(--bg-violet-light); color: #4800A0; border-color: rgba(91,0,184,0.18); }

.use-pcard--teal { border-color: rgba(5,150,105,0.2); }
.use-pcard--teal::before { background: linear-gradient(90deg, #059669, #047857); }
.use-pcard--teal:hover { border-color: rgba(5,150,105,0.45); }
.use-pcard--teal .use-pcard-num { color: #059669; }
.use-pcard--teal .use-pcard-icon { color: #059669; background: #ECFDF5; }
.use-pcard--teal .use-pcard-tags span { background: #ECFDF5; color: #047857; border-color: rgba(5,150,105,0.2); }

/* Card inner elements */
.use-pcard-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  opacity: 0.8;
}
.use-pcard-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.22s ease;
}
.use-pcard:hover .use-pcard-icon { transform: translateY(-2px) scale(1.05); }

.use-pcard-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.use-pcard-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 14px;
}
.use-pcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.use-pcard-tags span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  border: 1px solid;
  text-transform: uppercase;
}

/* ── VAULT CENTER ───────────────────────────────────────────────────────── */
.uses-vault-center {
  position: relative;
  z-index: 2;
}
.uses-vault-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(72,69,196,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.uses-vault-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1.5px solid var(--border-indigo);
  border-radius: var(--r-2xl);
  padding: 16px 16px 14px;
  box-shadow: 0 12px 40px rgba(72,69,196,0.15), 0 2px 8px rgba(72,69,196,0.08);
  text-align: center;
  transition: box-shadow 0.3s ease;
}
.uses-vault-card:hover {
  box-shadow: 0 20px 56px rgba(72,69,196,0.22), 0 4px 12px rgba(72,69,196,0.1);
}
.uses-vault-badge {
  display: inline-block;
  background: var(--grad-btn);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
  white-space: nowrap;
}
.uses-vault-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(24,32,51,0.1);
}
.uses-vault-img-wrap img {
  width: 100%;
  display: block;
  border-radius: var(--r-lg);
}
.uses-vault-meta {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.8;
}
.uses-vault-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── CONNECTOR INDICATORS ───────────────────────────────────────────────── */
.uses-connectors {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.uses-conn {
  position: absolute;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(72,69,196,0.35), transparent);
  border-radius: 2px;
}
.uses-conn::after {
  content: '';
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--indigo);
  opacity: 0.5;
}
.uses-conn--tl { top: 30%; left: -32px; transform: rotate(180deg); }
.uses-conn--bl { bottom: 30%; left: -32px; transform: rotate(180deg); }
.uses-conn--tr { top: 30%; right: -32px; }
.uses-conn--br { bottom: 30%; right: -32px; }

/* ── SECONDARY USE CHIPS ────────────────────────────────────────────────── */
.uses-secondary {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.uses-secondary-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--xmuted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.uses-secondary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: left;
}
.use-chip {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.use-chip:hover {
  border-color: var(--border-indigo);
  background: var(--bg-indigo-light);
  box-shadow: var(--shadow-sm);
}
.use-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--bg-indigo-light);
  border-radius: var(--r-sm);
  color: var(--indigo);
  margin-top: 1px;
}
.use-chip-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.3;
}
.use-chip-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── TRUST NOTE ─────────────────────────────────────────────────────────── */
.uses-trust-note {
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--xmuted);
  line-height: 1.65;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .uses-ecosystem {
    grid-template-columns: 1fr 240px 1fr;
    gap: 18px 14px;
  }
}

@media (max-width: 768px) {
  /* Stack into single column: vault top, then 2×2 cards, then secondary */
  .uses-ecosystem {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .uses-top-row,
  .uses-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .uses-vault-center { order: -1; } /* vault appears first */
  .uses-top-row { order: 0; }
  .uses-bottom-row { order: 1; }
  .uses-connectors { display: none; }
  .uses-vault-card { max-width: 280px; margin: 0 auto; }
  .uses-secondary-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .uses-top-row,
  .uses-bottom-row {
    grid-template-columns: 1fr;
  }
  .uses-secondary-grid { grid-template-columns: 1fr; }
  .uses-vault-badge { font-size: 0.58rem; padding: 4px 10px; }
}

/* ==========================================================================
   AFFILIATE / JV RESOURCE CENTER STYLES
   ========================================================================== */

/* ── AFFILIATE FOOTER LINK (SALES PAGE) ────────────────────────────────── */
.footer-affiliate-link {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 24px;
}
.footer-affiliate-link a {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px dotted var(--muted);
  transition: color 0.2s, border-color 0.2s;
}
.footer-affiliate-link a:hover {
  color: var(--indigo);
  border-color: var(--indigo);
}

/* ── AFFILIATE PAGE GLOBALS ────────────────────────────────────────────── */
body.affiliate-page {
  background: var(--bg-page);
  padding-top: 60px; /* Space for sticky nav */
}

/* ── NAVIGATION ────────────────────────────────────────────────────────── */
.aff-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.aff-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.aff-nav-brand {
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--text);
  font-size: 1.1rem;
}
.aff-nav-brand span {
  color: var(--indigo);
  background: var(--bg-indigo-light);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  margin-left: 8px;
}
.aff-nav-links {
  display: flex;
  gap: 20px;
}
.aff-nav-links a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.aff-nav-links a:hover {
  color: var(--indigo);
}

/* ── HERO ──────────────────────────────────────────────────────────────── */
.aff-hero {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  padding: 80px 0;
  text-align: center;
}
.aff-link-box {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 24px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.aff-link-label {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.aff-link-display {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 16px;
  word-break: break-all;
}
.aff-commission {
  color: rgba(255,255,255,0.8);
  margin-top: 20px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.aff-commission strong {
  color: #fff;
  font-size: 1.2rem;
}

/* ── SNAPSHOT ──────────────────────────────────────────────────────────── */
.aff-snapshot-card {
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 40px;
  max-width: 900px;
  margin: -40px auto 40px;
  position: relative;
  z-index: 10;
}
.snapshot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 24px;
}
.snapshot-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--indigo);
}
.snapshot-price {
  background: var(--bg-blue-light);
  color: var(--blue);
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--r-pill);
}
.snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.snapshot-col h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text);
}
.snapshot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.snapshot-col li {
  margin-bottom: 10px;
  color: var(--muted);
}
.bonus-list li {
  background: var(--bg-page);
  padding: 10px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.snapshot-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── FEATURES GRID ─────────────────────────────────────────────────────── */
.aff-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.aff-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
}
.aff-feature-num {
  width: 40px; height: 40px;
  background: var(--bg-indigo-light);
  color: var(--indigo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.aff-feature-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.aff-feature-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ── TABS (ANGLES) ─────────────────────────────────────────────────────── */
.aff-tabs {
  margin-top: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.tab-buttons {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--bg-page);
  overflow-x: auto;
}
.tab-btn {
  flex: 1;
  padding: 16px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.tab-btn:hover {
  background: rgba(0,0,0,0.02);
  color: var(--text);
}
.tab-btn.active {
  color: var(--indigo);
  border-bottom-color: var(--indigo);
  background: #fff;
}
.tab-content {
  padding: 30px;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.angle-card h3 {
  font-size: 1.2rem;
  color: var(--indigo);
  margin-bottom: 20px;
}
.angle-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
}
.angle-body strong {
  color: var(--indigo);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ── COPY LISTS & CARDS (SWIPES, SCRIPTS, CTAS) ────────────────────────── */
.swipe-list, .social-grid, .video-hooks-grid, .scripts-layout {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}
.social-grid {
  grid-template-columns: repeat(4, 1fr);
}
.video-hooks-grid {
  grid-template-columns: repeat(3, 1fr);
}
.scripts-layout {
  grid-template-columns: 1fr 1fr;
}
.swipe-card, .script-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.swipe-header, .script-header {
  background: var(--bg-page);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.swipe-header h4, .script-header h3 {
  margin: 0;
  font-size: 1rem;
}
.swipe-body, .script-body {
  padding: 24px;
  white-space: pre-wrap;
  font-family: monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}
.social-col h3 {
  font-size: 1.1rem;
  color: var(--indigo);
  margin-bottom: 20px;
  text-align: center;
}
.social-card, .hook-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  position: relative;
}
.social-card div, .hook-card div {
  margin-bottom: 16px;
}
.social-card div br { display: block; content: ""; margin-top: 8px; }

/* Copy Item Lists (Headlines, CTAs) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.copy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}
.copy-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-weight: 500;
}
.copy-item span {
  flex: 1;
  padding-right: 16px;
}

/* Copy Button Success State */
.copy-btn.copied-state {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* ── CREATIVES / ASSETS ────────────────────────────────────────────────── */
.assets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.asset-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.asset-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--border);
  display: block;
}
.asset-actions {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ── BANNERS ───────────────────────────────────────────────────────────── */
.banner-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.banner-spec {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
}
.banner-spec h4 { color: var(--indigo); margin-bottom: 12px; }
.banner-spec p { font-size: 0.85rem; margin-bottom: 6px; }

/* ── AUDIENCE & CALENDAR ───────────────────────────────────────────────── */
.audience-type {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin: 30px 0 16px;
}
.audience-card {
  background: #fff;
  border-left: 4px solid var(--indigo);
  padding: 16px 20px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.audience-card p {
  margin: 8px 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.calendar-day {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--r-md);
  margin-bottom: 16px;
}
.day-badge {
  background: var(--bg-indigo-light);
  color: var(--indigo);
  font-weight: 800;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  height: fit-content;
  white-space: nowrap;
}
.day-content p {
  margin: 8px 0 0;
  font-size: 0.85rem;
}

/* ── COMPLIANCE, FAQ, SUPPORT ──────────────────────────────────────────── */
.compliance-box {
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  padding: 30px;
  border-radius: var(--r-lg);
  color: #92400E;
}
.compliance-box ul {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 40px;
  margin-top: 20px;
}
.compliance-box li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  break-inside: avoid;
}
.aff-faq strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text);
  margin-top: 24px;
}
.aff-faq p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 0.95rem;
}
.download-box, .support-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: var(--r-lg);
  text-align: center;
}

/* ── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .video-hooks-grid { grid-template-columns: repeat(2, 1fr); }
  .assets-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .aff-nav-links { display: none; } /* Hide links on mobile for simplicity, or implement hamburger */
  .snapshot-grid { grid-template-columns: 1fr; }
  .split-layout { grid-template-columns: 1fr; }
  .scripts-layout { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .video-hooks-grid { grid-template-columns: 1fr; }
  .assets-grid { grid-template-columns: 1fr; }
  .compliance-box ul { columns: 1; }
  .aff-link-box { padding: 16px; }
  .aff-link-display { font-size: 0.9rem; }
}

/* ========================================================================= */
/* DYNAMIC ASSET LIBRARY STYLES */
/* ========================================================================= */

.asset-library-controls {
  margin-bottom: 40px;
}

.asset-search-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.asset-search-input {
  flex: 1;
  min-width: 280px;
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.2s ease;
}

.asset-search-input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.1);
}

.asset-count {
  font-weight: 800;
  font-size: 0.9rem;
  color: #4f46e5;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  background-color: var(--bg-indigo-light);
  border-radius: 50px;
}

.asset-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  padding: 8px 16px;
  border-radius: 50px;
  background: white;
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip:hover, .filter-chip:focus-visible {
  background: var(--bg-blue-light);
  color: var(--text);
  border-color: #4f46e5;
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
}

.filter-chip.active, .filter-chip[aria-pressed="true"] {
  background: #4f46e5;
  color: white;
  border-color: #4f46e5;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.asset-library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
  align-items: start;
}

.asset-lib-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.asset-lib-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.asset-lib-img {
  width: 100%;
  background: var(--bg-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.asset-lib-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.asset-lib-img.missing-state {
  background: #f8fafc;
  flex-direction: column;
  border-bottom: 1px dashed var(--border-light);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 20px;
}

.asset-lib-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.asset-lib-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.asset-lib-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: var(--text);
}

.asset-lib-meta-grid span {
  display: block;
  font-weight: 800;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.asset-lib-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.asset-copyright-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  background: var(--bg-gray-light);
  border-radius: 8px;
  line-height: 1.6;
}

/* Modal Styles */
.asset-modal {
  border: none;
  border-radius: 24px;
  padding: 0;
  background: transparent;
  max-width: 90vw;
  width: 1000px;
  margin: auto;
}

.asset-modal::backdrop {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.05);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(0,0,0,0.1);
}

.modal-body {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .modal-body {
    flex-direction: row;
  }
}

.modal-img-container {
  flex: 1;
  background: var(--bg-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 300px;
}

.modal-img-container img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  border-radius: 8px;
}

.modal-meta {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .modal-meta {
    width: 380px;
    border-left: 1px solid var(--border-light);
  }
}

.modal-meta h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 32px;
}

.modal-meta-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.modal-meta-grid strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.modal-meta-grid span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.modal-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-actions .btn {
  width: 100%;
}

