/* ─── RESET & TOKENS ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --rose: #F0E7E8;
  --rose-mid: #d4b8bb;
  --rose-dark: #9a6b70;
  --rose-deep: #6b3a3f;
  --black: #1a1918;
  --gray: #4a4946;
  --gray2: #7a7774;
  --gray3: #c8c6c2;
  --bg: #faf9f7;
  --surface: #ffffff;
  --border: #e8e6e1;
  --radius: 14px;
  --radius-sm: 9px;
  --focus: #9a6b70;
}

body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--black); min-height: 100vh; display: flex; justify-content: center; padding: 2rem 1rem 5rem; }
.app { width: 100%; max-width: 600px; }

.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--black); color: var(--rose); padding: 8px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; text-decoration: none; z-index: 999; transition: top 0.2s; }
.skip-link:focus { top: 1rem; }

/* ─── LOGO ───────────────────────────────────────────────────────────────── */
.logo { display: flex; align-items: center; gap: 10px; margin-bottom: 2rem; }
.logo-mark { width: 36px; height: 36px; background: var(--black); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 500; color: var(--black); }
.logo-tag { font-size: 11px; color: var(--gray2); margin-top: 1px; }

/* ─── PROGRESS ───────────────────────────────────────────────────────────── */
.progress-wrap { margin-bottom: 1.75rem; }
.progress-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--gray2); margin-bottom: 6px; }
.progress-section { font-weight: 500; color: var(--rose-deep); font-size: 11px; }
.track { height: 2px; background: var(--border); border-radius: 2px; }
.fill { height: 100%; background: var(--black); border-radius: 2px; transition: width 0.5s ease; }

/* ─── CARD ───────────────────────────────────────────────────────────────── */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; margin-bottom: 1rem; box-shadow: 0 2px 12px rgba(26,25,24,0.06); }
.display { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; color: var(--black); line-height: 1.25; margin-bottom: 8px; }
.sub { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.q-label { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray2); margin-bottom: 8px; }
.q-label-opt { font-size: 10px; font-weight: 400; color: var(--gray3); margin-left: 6px; text-transform: none; letter-spacing: 0; }
.q-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; color: var(--black); line-height: 1.4; margin-bottom: 10px; }
.q-edu { font-size: 12px; color: var(--rose-deep); background: var(--rose); padding: 8px 12px; margin-bottom: 1.25rem; line-height: 1.6; border-left: 2px solid var(--rose-mid); }

/* ─── FORM ───────────────────────────────────────────────────────────────── */
.field-label { font-size: 11px; font-weight: 500; color: var(--gray); margin-bottom: 5px; letter-spacing: 0.02em; display: block; }
.text-input { width: 100%; padding: 11px 14px; font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--black); background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: border-color 0.2s, box-shadow 0.2s; margin-bottom: 12px; }
.text-input:focus { outline: none; border-color: var(--focus); box-shadow: 0 0 0 3px rgba(154,107,112,0.15); }
.text-input::placeholder { color: var(--gray3); }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; padding: 11px 24px; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.15s; border: 1px solid var(--border); background: transparent; color: var(--black); }
.btn:hover { background: var(--rose); border-color: var(--rose-mid); }
.btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.btn:active { transform: scale(0.98); }
.btn.primary { background: var(--black); color: var(--rose); border-color: var(--black); }
.btn.primary:hover { background: #2d2b2a; }
.btn.full { width: 100%; text-align: center; display: block; padding: 13px; }
.actions { display: flex; align-items: center; gap: 10px; margin-top: 1.25rem; flex-wrap: wrap; }
.skip-msg { font-size: 12px; color: var(--rose-deep); padding: 8px 12px; background: var(--rose); border-left: 2px solid var(--rose-mid); margin-top: 8px; }

/* ─── GENRE PAGES ────────────────────────────────────────────────────────── */
.genre-page-label { font-size: 13px; font-weight: 500; color: var(--gray2); margin-bottom: 1rem; }
.genre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 1.25rem; }
.genre-btn { padding: 12px 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); cursor: pointer; text-align: left; transition: all 0.15s; display: flex; align-items: center; gap: 8px; width: 100%; }
.genre-btn:hover { border-color: var(--rose-dark); background: var(--rose); }
.genre-btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.genre-btn.selected { border-color: var(--black); background: var(--rose); }
.genre-btn.selected .gcheck { opacity: 1; }
.g-emoji { font-size: 16px; line-height: 1; flex-shrink: 0; }
.g-name { font-size: 12px; font-weight: 500; color: var(--black); line-height: 1.3; flex: 1; text-align: left; }
.gcheck { width: 16px; height: 16px; border-radius: 50%; background: var(--black); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.15s; flex-shrink: 0; }
.gcheck svg { width: 8px; height: 8px; stroke: var(--rose); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.genre-page-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.genre-dots { display: flex; gap: 6px; }
.genre-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: background 0.2s; }
.genre-dot.active { background: var(--black); }
.genre-nav-btn { font-size: 12px; font-weight: 500; color: var(--gray2); background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; padding: 6px 4px; }
.genre-nav-btn:hover { color: var(--black); }
.genre-nav-btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 3px; }

/* ─── GENRE EXPLANATION ──────────────────────────────────────────────────── */
.genre-explain-badge { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose-deep); background: var(--rose); padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.genre-explain-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 400; color: var(--black); margin-bottom: 1.25rem; line-height: 1.3; }
.genre-explain-body { font-size: 14px; color: var(--gray); line-height: 1.75; }
.genre-explain-mistake { font-size: 13px; color: var(--rose-deep); background: var(--rose); padding: 10px 14px; border-left: 2px solid var(--rose-mid); line-height: 1.65; margin-top: 1rem; }

/* ─── TARGET AUDIENCE EDUCATION ──────────────────────────────────────────── */
.edu-icon { width: 44px; height: 44px; background: var(--rose); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.edu-icon svg { width: 22px; height: 22px; stroke: var(--rose-deep); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.edu-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: var(--black); margin-bottom: 10px; line-height: 1.3; }
.edu-body { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* ─── PAIN CATEGORIES ────────────────────────────────────────────────────── */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pain-cat { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px; cursor: pointer; background: var(--surface); transition: all 0.15s; width: 100%; text-align: left; }
.pain-cat:hover { border-color: var(--rose-dark); background: var(--rose); }
.pain-cat:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.pain-cat.selected { border-color: var(--black); background: var(--rose); }
.pain-cat-name { font-size: 12px; font-weight: 500; color: var(--black); margin-bottom: 3px; }
.pain-cat-desc { font-size: 10px; color: var(--gray2); line-height: 1.4; }
.sub-pain-wrap { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); display: none; }
.sub-pain-wrap.visible { display: block; }
.sub-label { font-size: 10px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gray2); margin-bottom: 10px; }

/* ─── CHIPS ──────────────────────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 4px; }
.chip { padding: 7px 14px; border: 1px solid var(--border); border-radius: 20px; font-size: 12px; cursor: pointer; background: var(--surface); color: var(--gray); transition: all 0.15s; user-select: none; font-family: 'DM Sans', sans-serif; }
@media (hover: hover) { .chip:hover { border-color: var(--rose-dark); color: var(--rose-deep); background: var(--rose); } }
.chip:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.chip.selected { border-color: var(--black); background: var(--rose); color: var(--black); font-weight: 500; }
.chip.disabled { opacity: 0.35; cursor: default; pointer-events: none; }

/* ─── CALLOUTS ───────────────────────────────────────────────────────────── */
.pub-explain { font-size: 12px; color: var(--rose-deep); background: var(--rose); padding: 8px 12px; margin-top: 10px; line-height: 1.6; border-left: 2px solid var(--rose-mid); display: none; }
.pub-explain.visible { display: block; }
.matrix-opts { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.25rem; }
.matrix-opt { padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); cursor: pointer; font-size: 13px; color: var(--gray); text-align: left; transition: all 0.15s; font-family: 'DM Sans', sans-serif; }
@media (hover: hover) { .matrix-opt:hover { border-color: var(--rose-dark); background: var(--rose); color: var(--black); } }
.matrix-opt.selected { border-color: var(--black); background: var(--rose); color: var(--black); font-weight: 500; }
.matrix-rec { font-size: 12px; color: var(--rose-deep); background: var(--rose); padding: 10px 14px; border-left: 2px solid var(--rose-mid); margin-bottom: 1rem; line-height: 1.6; display: none; }
.matrix-rec.visible { display: block; }

.length-callout { font-size: 12px; color: var(--rose-deep); background: var(--rose); padding: 8px 12px; margin-top: 10px; line-height: 1.6; border-left: 2px solid var(--rose-mid); display: none; }
.length-callout.visible { display: block; }

/* ─── RANGE ──────────────────────────────────────────────────────────────── */
.range-row { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 12px; }
.range-sep { font-size: 13px; color: var(--gray2); flex-shrink: 0; padding-bottom: 12px; }
select.styled-select { flex: 1; padding: 11px 14px; font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--black); background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); appearance: none; cursor: pointer; transition: border-color 0.2s; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7774' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; width: 100%; }
select.styled-select:focus { outline: none; border-color: var(--focus); box-shadow: 0 0 0 3px rgba(154,107,112,0.15); }

/* ─── SUMMARY ────────────────────────────────────────────────────────────── */
.summary-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose-deep); background: var(--rose); padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.sum-section { margin-bottom: 1.25rem; }
.sum-section-title { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose-deep); padding-bottom: 7px; border-bottom: 1px solid var(--border); margin-bottom: 10px; }
.sum-row { display: flex; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--bg); }
.sum-row:last-child { border-bottom: none; }
.sum-lbl { font-size: 11px; color: var(--gray2); min-width: 130px; flex-shrink: 0; padding-top: 1px; }
.sum-val { font-size: 13px; color: var(--black); font-weight: 500; line-height: 1.5; }
.sum-empty { font-size: 13px; color: var(--gray3); font-style: italic; }

/* ─── INSIGHT ────────────────────────────────────────────────────────────── */
.insight { background: var(--rose); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.insight-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 400; color: var(--black); margin-bottom: 10px; line-height: 1.4; }
.insight-body { font-size: 13px; color: var(--rose-deep); line-height: 1.75; margin-bottom: 10px; }
.insight-body:last-child { margin-bottom: 0; }

/* ─── SUMMARY ACTIONS ────────────────────────────────────────────────────── */
.sum-actions { display: flex; gap: 8px; margin: 1.5rem 0; }
.sum-btn { flex: 1; padding: 10px; font-size: 13px; font-weight: 500; text-align: center; border-radius: var(--radius-sm); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.15s; border: none; }
.sum-btn.email { background: var(--black); color: var(--rose); }
.sum-btn.email:hover { background: #2d2b2a; }
.sum-btn.email:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.sum-btn.print { background: transparent; color: var(--gray); border: 1px solid var(--border); }
.sum-btn.print:hover { background: var(--rose); border-color: var(--rose-mid); }
.print-note { font-size: 11px; color: var(--gray3); text-align: center; margin-top: 6px; }

/* ─── YOUR NEXT STEP SECTION ─────────────────────────────────────────────── */
.next-steps-title { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray2); margin-bottom: 20px; }

/* Primary card */
.primary-card { background: var(--black); border: none; border-radius: var(--radius); padding: 1.75rem; margin-bottom: 24px; }
.primary-card .card-title { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.primary-card .card-desc { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 10px; }
.primary-card .card-proof { font-size: 12px; color: rgba(255,255,255,0.55); font-style: italic; margin-bottom: 18px; }
.primary-card .card-btn { display: block; width: 100%; padding: 13px; font-size: 14px; font-weight: 600; text-align: center; border-radius: var(--radius-sm); background: var(--rose-dark); color: #fff; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.15s; text-decoration: none; letter-spacing: 0.01em; }
.primary-card .card-btn:hover { background: var(--rose-deep); }
.primary-card .card-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Secondary group */
.secondary-label { font-size: 12px; color: var(--gray2); margin-bottom: 12px; padding-left: 1px; }
.secondary-cards { display: flex; flex-direction: column; gap: 8px; }
.secondary-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 0.9rem 1.1rem; transition: border-color 0.2s; }
.secondary-card:hover { border-color: var(--rose-dark); }
.secondary-card-label { font-size: 11px; font-weight: 500; color: var(--gray2); margin-bottom: 4px; }
.secondary-card-title { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 4px; line-height: 1.3; }
.secondary-card-desc { font-size: 12px; color: var(--gray); line-height: 1.6; margin-bottom: 4px; }
.secondary-card-proof { font-size: 11px; color: var(--rose-deep); font-style: italic; margin-bottom: 10px; }
.secondary-card-btn { font-size: 12px; font-weight: 400; color: var(--black); border: 1.5px solid var(--black); border-radius: var(--radius-sm); padding: 7px 14px; text-decoration: none; font-family: 'DM Sans', sans-serif; white-space: nowrap; transition: all 0.15s; display: inline-block; }
.secondary-card-btn:hover { background: var(--black); color: #fff; border-color: var(--black); }
.secondary-card-btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }

/* ─── DIVIDER & BIO ──────────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.bio-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.25rem; }
.bio-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--rose); border: 1px solid var(--rose-mid); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 14px; color: var(--rose-deep); flex-shrink: 0; overflow: hidden; }
.bio-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.bio-name { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 3px; }
.bio-text { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ─── YOUTUBE ────────────────────────────────────────────────────────────── */
.yt-row { display: flex; align-items: center; gap: 12px; padding: 9px 12px; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-sm); text-decoration: none; transition: border-color 0.2s; }
.yt-row:hover { border-color: var(--rose-dark); }
.yt-row:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.yt-icon-wrap { width: 28px; height: 28px; background: #FF0000; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.yt-icon-wrap svg { width: 14px; height: 14px; fill: #ffffff; }
.yt-text { font-size: 12px; font-weight: 400; color: var(--gray); }
.yt-sub { font-size: 11px; color: var(--gray3); }
.yt-arrow { margin-left: auto; font-size: 13px; color: var(--gray3); flex-shrink: 0; }

/* ─── SHARE ──────────────────────────────────────────────────────────────── */
.share-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.share-text { font-size: 13px; font-weight: 500; color: var(--text2); }
.share-btn { font-size: 13px; font-weight: 400; color: var(--rose-deep); background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: underline; text-underline-offset: 3px; padding: 0; }
.share-copied { font-size: 12px; color: var(--rose-deep); display: none; font-weight: 500; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.privacy-note { font-size: 11px; color: var(--gray2); text-align: center; line-height: 1.6; margin-top: 8px; }
.return-link { font-size: 11px; color: var(--gray2); text-align: center; margin-top: 10px; }
.return-link span { color: var(--rose-deep); text-decoration: underline; cursor: pointer; }
.footer-links { text-align: center; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.footer-link { font-size: 11px; color: var(--gray3); text-decoration: underline; text-underline-offset: 2px; background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; padding: 0; margin: 0 8px; }
.footer-link:hover { color: var(--gray2); }

/* ─── MODAL ──────────────────────────────────────────────────────────────── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(26,25,24,0.5); z-index: 100; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--surface); border-radius: var(--radius); padding: 2rem; width: 100%; max-width: 420px; box-shadow: 0 16px 48px rgba(0,0,0,0.2); }
.modal h2 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; margin-bottom: 8px; }
.modal p { font-size: 13px; color: var(--gray); margin-bottom: 1.25rem; line-height: 1.65; }
.modal-actions { display: flex; gap: 10px; margin-top: 1rem; }

/* ─── PRIVACY ────────────────────────────────────────────────────────────── */
.privacy-content h3 { font-size: 14px; font-weight: 500; color: var(--black); margin: 1.25rem 0 6px; }
.privacy-content h3:first-child { margin-top: 0; }
.privacy-content p { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 8px; }

/* ─── STEP 2 PROGRESS DOTS ───────────────────────────────────────────────── */
.progress-bar { display: flex; gap: 6px; margin-top: 6px; }
.s2-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: background 0.2s; }
.s2-dot.s2-active { background: var(--black); }
.s2-dot.s2-done { background: var(--rose-dark); }

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
.shake { animation: shake 0.3s ease; }
@keyframes shake { 0%,100%{transform:translateX(0);} 25%{transform:translateX(-5px);} 75%{transform:translateX(5px);} }

/* ─── MOBILE ─────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  body { padding: 1.25rem 0.75rem 4rem; }
  .card { padding: 1.5rem 1.25rem; }
  .display { font-size: 22px; }
  .q-title { font-size: 17px; }
  .genre-grid { gap: 6px; }
  .g-name { font-size: 11px; }
  .g-emoji { font-size: 14px; }
  .pain-grid { gap: 6px; }
  .pain-cat { padding: 10px; }
  .pain-cat-name { font-size: 11px; }
  .actions { gap: 8px; }
  .btn { padding: 10px 16px; font-size: 13px; }
  .sum-actions { flex-direction: column; }
  .sum-btn { width: 100%; }
  .range-row { flex-direction: column; align-items: stretch; gap: 4px; }
  .range-sep { text-align: center; padding-bottom: 0; }
  .modal { padding: 1.5rem; }
}

/* ─── PRINT ──────────────────────────────────────────────────────────────── */
@media print {
  body { background: white; padding: 0; font-size: 12px; display: block; -webkit-print-color-adjust: exact; print-color-adjust: exact; font-family: 'DM Sans', Arial, sans-serif; }
  .app { max-width: 600px; margin: 0 auto; padding: 0; }
  .print-hide, .actions, .sum-actions, .path-card, .yt-row, .bio-row, .divider, .next-steps-title, .share-row, .footer-links, .print-note, .primary-card, .secondary-card, .card-btn, .progress-wrap, .summary-badge { display: none !important; }
  .insight { display: block !important; }
  .card { box-shadow: none; border: none; padding: 0; }
  .logo { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 2px solid #9a6b70; margin-bottom: 20px; }
  .logo-name { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 600; color: #1a1918; }
  .logo-tag { font-size: 10px; color: #9a6b70; font-family: 'DM Sans', Arial, sans-serif; }
  .display { font-size: 22px; margin-bottom: 4px; font-family: 'Playfair Display', Georgia, serif; font-weight: 400; color: #1a1918; }
  .sub { font-size: 12px; color: #4a4946; margin-bottom: 16px; font-family: 'DM Sans', Arial, sans-serif; line-height: 1.6; }
  .sum-section { display: block; width: 100%; margin-bottom: 14px; page-break-inside: avoid; }
  .sum-section-title { display: block; overflow: hidden; white-space: nowrap; height: 1.4em; font-size: 9px; font-weight: 700; color: #9a6b70; padding-bottom: 5px; border-bottom: 1px solid #e8e0da; margin-bottom: 8px; font-family: 'DM Sans', Arial, sans-serif; text-transform: none !important; letter-spacing: 0.05em; }
  .sum-row { display: block; overflow: hidden; padding: 3px 0; border-bottom: 1px solid #f0ebe6; font-size: 11px; font-family: 'DM Sans', Arial, sans-serif; }
  .sum-lbl { display: inline-block; width: 140px; color: #7a7774; vertical-align: top; }
  .sum-val { display: inline-block; color: #1a1918; font-weight: 500; vertical-align: top; }
  .sum-empty { display: inline-block; color: #c8c6c2; font-style: italic; vertical-align: top; }
  .insight { background-color: #F0E7E8 !important; border-left: 3px solid #9a6b70 !important; padding: 14px 16px !important; margin-top: 16px !important; page-break-inside: avoid; border-radius: 0 !important; box-shadow: none !important; }
  .insight-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; color: #1a1918 !important; font-family: 'Playfair Display', Georgia, serif; text-transform: none !important; }
  .insight-body { font-size: 11px; color: #6b3a3f !important; line-height: 1.75; font-family: 'DM Sans', Arial, sans-serif; margin-bottom: 8px; }
  /* Logo image in print */
  .logo-mark { display: flex !important; background: var(--black) !important; border-radius: 9px !important; width: 36px !important; height: 36px !important; }
  .logo-mark img { display: block !important; width: 36px !important; height: 36px !important; object-fit: contain !important; }
  @page { margin: 1.5cm; }
  body::after { content: "Created with The Write One App by Stefanie Newell  |  thewriteoneapp.com"; display: block; margin-top: 12px; padding-top: 10px; border-top: 1px solid #e8e0da; font-size: 9px; color: #999; font-family: 'DM Sans', Arial, sans-serif; text-align: center; page-break-before: avoid; }
}
