/*
 * Self-hosted fonts (dropped Google Fonts @import on 2026-04-22).
 *
 * Files live in /fonts/ and are copied from the @fontsource npm packages by
 * scripts/copy-fonts.js. Latin-subset only. Weight range matches what the
 * previous Google Fonts @import requested, so visual output is identical.
 *
 * If adding a weight/style, also add it to scripts/copy-fonts.js.
 */
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/cormorant-garamond-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300; font-display: swap; src: url('../fonts/cormorant-garamond-latin-300-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 500; font-display: swap; src: url('../fonts/cormorant-garamond-latin-500-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 600; font-display: swap; src: url('../fonts/cormorant-garamond-latin-600-italic.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/inter-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-latin-600-normal.woff2') format('woff2'); }

/* ─── Brand Materials Shared Styles ─── */
/* Blue-dominant palette, stage colors only where semantically meaningful */

:root {
  --bg: #07070a;
  --surface: #0e0e14;
  --card: #12121a;
  --border: #1e1e28;
  --text: #fffdf9;
  --text-2: #c1bfbd;
  --text-3: #9c9a99;
  /* Was #7e7d7c (4.90:1 — AA but marginal). Bumped to #8f8e8e for 6.16:1
     on #07070a, AA solid. Matches tokens.css --text-dim 0.55 alpha intent
     (site-wide canonical contrast level). */
  --text-dim: #8f8e8e;
  --blue: #82afff;
  --green: #8adfc0;
  --amber: #ffc78f;
  --rose: #ffa0a0;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-2);
  line-height: 1.7;
  min-height: 100vh;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
}

/* ─── Header ─── */

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.site-name {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.25rem;
}

.doc-type {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 2.6rem;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.subtitle {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--blue);
  margin: 1.5rem auto;
  border-radius: 1px;
  opacity: 0.6;
}

/* ─── Section Headers ─── */

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}

.section-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

/* ─── Step Cards (Getting Started) ─── */

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  gap: 0 1rem;
  align-items: start;
}

.step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--blue);
  line-height: 1;
  padding-top: 0.15rem;
}

.step-body {
  min-width: 0;
}

.step-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.7;
}

.step-time {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-style: italic;
  white-space: nowrap;
  padding-top: 0.2rem;
}

/* ─── Content Cards (Generic) ─── */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
}

.card-accent {
  border-left: 3px solid var(--blue);
}

.card-accent h3 {
  color: var(--blue);
}

.card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card p, .card li {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.7;
}

.card ul, .card ol {
  padding-left: 1.2rem;
}

.card li {
  margin-bottom: 0.35rem;
}

/* ─── Two-Column Layout ─── */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* ─── Quote Blocks ─── */

.quote-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  padding: 1rem 1.4rem;
  margin-bottom: 0.75rem;
}

.quote-block p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.6;
}

.quote-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

/* Stage-specific accent colors — only for journey stage content */
.stage-identity { border-left-color: var(--blue); }
.stage-identity .quote-label { color: var(--blue); }
.stage-fear { border-left-color: var(--rose); }
.stage-fear .quote-label { color: var(--rose); }
.stage-permission { border-left-color: var(--green); }
.stage-permission .quote-label { color: var(--green); }
.stage-manifesto { border-left-color: var(--amber); }
.stage-manifesto .quote-label { color: var(--amber); }
.stage-dedication { border-left-color: var(--blue); }
.stage-dedication .quote-label { color: var(--blue); }

/* Stage card titles (for participant takeaway, etc) */
.stage-title-identity { color: var(--blue); }
.stage-title-fear { color: var(--rose); }
.stage-title-permission { color: var(--green); }
.stage-title-manifesto { color: var(--amber); }

/* ─── Info Row (Duration/Cost/Privacy/Device) ─── */

.info-row {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  padding: 1rem 1.4rem;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.info-item {
  flex: 1;
}

.info-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}

.info-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text);
}

/* ─── CTA Button ─── */

.cta-section {
  text-align: center;
  padding: 2rem 0 1rem;
}

.cta-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-btn {
  display: inline-block;
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 0.8rem 2.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--blue);
  text-decoration: none;
  transition: all 0.2s var(--ease);
}

.cta-btn:hover {
  background: rgba(130, 175, 255, 0.08);
}

/* ─── Body Text ─── */

.body-text {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.closing-note {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-3);
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ─── Bullet Lists ─── */

.bullet-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1.5rem;
}

.bullet-list li {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.bullet-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.78rem;
  color: var(--blue);
  list-style: none;
  padding: 0;
  margin-bottom: 0.75rem;
}

.bullet-inline li::before {
  content: '•';
  margin-right: 0.4rem;
}

/* ─── Bold Labels ─── */

strong {
  color: var(--text);
  font-weight: 500;
}

/* ─── Index Table ─── */

.index-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.4rem;
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: border-color 0.15s var(--ease);
}

.index-item:hover {
  border-color: var(--blue);
}

.index-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.index-desc {
  font-size: 0.78rem;
  color: var(--text-2);
}

.index-file {
  font-size: 0.7rem;
  color: var(--text-dim);
  white-space: nowrap;
  margin-left: 1rem;
}

/* ─── Timeline Cards (Run of Show) ─── */

.timeline-bar {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  height: 32px;
}

.timeline-seg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.5rem;
  font-size: 0.55rem;
  color: var(--text);
}

.timeline-seg .seg-time {
  font-size: 0.5rem;
  color: rgba(255,253,249,0.7);
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.timeline-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: 6px;
  padding: 1.2rem 1.3rem;
}

.timeline-card .tc-time {
  font-size: 0.7rem;
  color: var(--blue);
  margin-bottom: 0.3rem;
}

.timeline-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.timeline-card p {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.timeline-card .say-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.2rem;
}

.timeline-card .say-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.timeline-card .tc-tip {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ─── Email Template Blocks ─── */

.email-context {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.email-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.5rem;
}

.email-subject {
  font-size: 0.82rem;
  color: var(--blue);
  margin-bottom: 1.2rem;
}

.email-body {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.8;
}

.email-body p {
  margin-bottom: 1rem;
}

.email-body p:last-child {
  margin-bottom: 0;
}

/* ─── Color Swatches (Brand Guidelines) ─── */

.swatch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.swatch {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.swatch-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

.swatch-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.swatch-label strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
}

.swatch-label .hex {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.swatch-desc {
  font-size: 0.72rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* ─── Typography Showcase ─── */

.type-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.6rem;
}

.type-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.type-name {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.type-desc {
  font-size: 0.78rem;
  color: var(--text-2);
  margin-bottom: 0.35rem;
}

/* ─── Tone of Voice Cards ─── */

.tone-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
}

.tone-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.tone-card p {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─── FAQ ─── */

.faq-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 0.75rem;
}

.faq-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.faq-card p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── Remember / Tips Section ─── */

.remember-item {
  margin-bottom: 1rem;
}

.remember-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.remember-item p {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─── Footer ─── */

.page-footer {
  text-align: center;
  padding-top: 1rem;
}

.page-footer .footer-url {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ─── Download Bar ─── */

.download-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7, 7, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  z-index: 100;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s var(--ease);
}

.download-btn:hover {
  opacity: 0.9;
}

.download-btn svg {
  width: 14px;
  height: 14px;
}

/* ─── Agent-Created Class Aliases & Extras ─── */

/* Layout aliases */
.content-section { margin-bottom: 2rem; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.three-column { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.four-column { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }

/* Section headers */
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}
.section-header { margin-bottom: 1.25rem; }
.subsection-title {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

/* Index page */
.index-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
}

/* Card variants */
.card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.card-desc, .card-text {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.7;
}
.card-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 0.75rem;
  line-height: 1.6;
}
.card-list {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}
.card-list li {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 0.35rem;
}
.card-items { margin-top: 0.5rem; }
.card-item { margin-bottom: 0.75rem; }
.card-item-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.card-italic-list {
  list-style: none;
  padding: 0;
}
.card-italic-list li {
  margin-bottom: 0.6rem;
}
.card-italic-list li em,
.card-italic-list li i {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
}
.card-italic-list li span,
.card-italic-list li small {
  font-size: 0.75rem;
  color: var(--text-2);
}

/* Stage cards (participant takeaway) */
.stage-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 0.75rem;
}
.stage-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.stage-card p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.7;
}
.stage-card.stage-identity { border-left: 3px solid var(--blue); }
.stage-card.stage-identity h3 { color: var(--blue); }
.stage-card.stage-fear { border-left: 3px solid var(--rose); }
.stage-card.stage-fear h3 { color: var(--rose); }
.stage-card.stage-permission { border-left: 3px solid var(--green); }
.stage-card.stage-permission h3 { color: var(--green); }
.stage-card.stage-manifesto { border-left: 3px solid var(--amber); }
.stage-card.stage-manifesto h3 { color: var(--amber); }

/* FAQ variants */
.faq-question {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.faq-answer {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* Email templates */
.email-section { margin-bottom: 2rem; }
.email-list {
  list-style: disc;
  padding-left: 1.2rem;
}
.email-list li {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

/* Quote blocks wrapper */
.quote-blocks { margin-bottom: 1.5rem; }

/* Brand guidelines extras */
.swatch-grid-small {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.swatch-color {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-bottom: 0.2rem;
  border: 1px solid var(--border);
}
.swatch-code {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-family: monospace;
}

/* Color meaning row */
.color-meaning-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.color-meaning-item { }
.color-meaning-label {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.color-meaning-desc {
  font-size: 0.75rem;
  color: var(--text-2);
}

/* Typography showcase extras */
.type-family {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.type-details { margin-top: 0.5rem; }
.type-detail-item {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-bottom: 0.15rem;
}
.font-code {
  font-family: monospace;
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* Tone grid */
.tone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.tone-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 0.4rem;
}
.tone-desc {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* Timeline card extras */
.timeline-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.timeline-desc {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.timeline-time {
  font-size: 0.7rem;
  color: var(--blue);
  margin-bottom: 0.3rem;
}
.timeline-say {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.timeline-tip {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-style: italic;
}

/* Tips list */
.tips-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1.5rem;
}
.tips-list li {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

/* List note (italic note after a list) */
.list-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* CTA button variant */
.cta-button {
  display: inline-block;
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 0.8rem 2.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--blue);
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.cta-button:hover { background: rgba(130, 175, 255, 0.08); }
.cta-subtext {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* Extra bottom padding so content doesn't hide behind download bar */
body { padding-bottom: 4rem; }

/* ─── Print / PDF Styles ─── */

@media print {
  .download-bar { display: none; }
  body { padding-bottom: 0; background: #07070a; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .page { padding: 2rem 1.5rem; }
}

/* ─── Responsive ─── */

@media (max-width: 600px) {
  .page { padding: 2.5rem 1.25rem 4rem; }
  h1 { font-size: 1.8rem; }
  .two-col, .three-col, .two-column, .three-column { grid-template-columns: 1fr; }
  .four-column { grid-template-columns: 1fr 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .swatch-grid { grid-template-columns: 1fr 1fr; }
  .swatch-grid-small { grid-template-columns: repeat(3, 1fr); }
  .color-meaning-row { grid-template-columns: 1fr 1fr; }
  .tone-grid { grid-template-columns: 1fr; }
  .info-row { flex-direction: column; gap: 0.75rem; }
  .step-card { grid-template-columns: 1.8rem 1fr; }
  .step-time { grid-column: 2; font-size: 0.68rem; margin-top: 0.3rem; }
}
