/* ============================================================
   DESIGN TOKENS
   Ink #14171F   Paper #FFFFFF   Mist #F5F6F9   Line #E4E7EF
   Brass (accent/seal) #A9782F   Teal (free) #1F6F5E
   Display: Fraunces   Body: Inter   Utility: JetBrains Mono
   ============================================================ */
:root{
  --ink:#14171F;
  --ink-soft:#3B4050;
  --graphite:#6B7280;
  --paper:#FFFFFF;
  --mist:#F5F6F9;
  --mist-deep:#ECEEF3;
  --line:#E4E7EF;
  --line-strong:#D6DAE4;
  --brass:#A9782F;
  --brass-deep:#8A6224;
  --brass-tint:#F6EEDF;
  --teal:#1F6F5E;
  --teal-tint:#E7F3EF;
  --danger:#B23B2E;
  --radius-sm:6px;
  --radius:12px;
  --radius-lg:20px;
  --shadow-card:0 1px 2px rgba(20,23,31,.04), 0 8px 24px -12px rgba(20,23,31,.12);
  --shadow-paper:0 2px 4px rgba(20,23,31,.06), 0 30px 60px -24px rgba(20,23,31,.28);
  --font-display:'Fraunces', Georgia, serif;
  --font-ui:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:'JetBrains Mono', monospace;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto;} *{animation-duration:.001ms !important; transition-duration:.001ms !important;} }
html,body{margin:0;padding:0;}
body{
  background:var(--mist);
  font-family:var(--font-ui);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{font-family:var(--font-display);}
a{color:var(--brass-deep);}
:focus-visible{outline:2px solid var(--brass); outline-offset:2px;}

.skip-link{
  position:absolute; left:-999px; top:0; z-index:200;
  background:var(--ink); color:#fff; padding:10px 16px; border-radius:0 0 8px 0;
}
.skip-link:focus{left:0;}

/* ---------- TOPBAR ---------- */
.topbar{
  display:flex;
  align-items:center;
  gap:18px;
  padding:16px clamp(20px,4vw,48px);
  background:var(--paper);
  border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:40;
}
.topbar__brand{display:flex;align-items:baseline;gap:6px;}
.topbar__mark{
  font-family:var(--font-display); font-weight:700; font-size:22px;
  color:var(--brass); letter-spacing:.02em;
}
.topbar__name{font-family:var(--font-display); font-weight:500; font-size:22px; color:var(--ink);}
.topbar__tag{font-size:12.5px; color:var(--graphite); margin:0 0 0 auto; font-family:var(--font-mono);}
.topbar__progress{display:flex; align-items:center; gap:10px;}
.stamp{width:34px;height:34px;transform:rotate(-90deg);}
.stamp__track{fill:none; stroke:var(--line-strong); stroke-width:4;}
.stamp__fill{fill:none; stroke:var(--brass); stroke-width:4; stroke-linecap:round;
  stroke-dasharray:113; stroke-dashoffset:113; transition:stroke-dashoffset .5s ease;}
.topbar__progress-text{font-family:var(--font-mono); font-size:11.5px; line-height:1.3; color:var(--graphite);}
.topbar__progress-text span{display:block; font-weight:700; color:var(--ink); font-size:13px;}
@media (max-width:700px){ .topbar__tag{display:none;} }

/* ---------- HERO ---------- */
.hero{
  padding:64px clamp(20px,4vw,48px) 48px;
  max-width:720px;
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.hero__eyebrow{
  font-family:var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:.12em;
  color:var(--teal); margin:0 0 14px;
}
.hero__title{
  font-weight:600; font-size:clamp(30px,4.2vw,46px); line-height:1.08; margin:0 0 18px; color:var(--ink);
}
.hero__lead{font-size:16px; line-height:1.65; color:var(--ink-soft); margin:0 0 26px; max-width:560px;}
.hero__cta{display:inline-block; text-decoration:none;}
.hero__trust{font-size:12.5px; color:var(--graphite); margin:16px 0 0;}

/* ---------- SHARED SECTION TITLE ---------- */
.section-title{font-weight:600; font-size:28px; color:var(--ink); margin:0 0 30px;}

/* ---------- HOW IT WORKS ---------- */
.how{ padding:64px clamp(20px,4vw,48px); background:var(--paper); border-bottom:1px solid var(--line); }
.how__steps{ list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; counter-reset:step; }
@media (max-width:760px){ .how__steps{grid-template-columns:1fr;} }
.how__steps li{
  background:var(--mist); border:1px solid var(--line); border-radius:var(--radius); padding:26px 22px;
  counter-increment:step; position:relative;
}
.how__steps li::before{
  content:counter(step); display:inline-flex; align-items:center; justify-content:center;
  width:28px; height:28px; border-radius:50%; background:var(--ink); color:#fff;
  font-family:var(--font-mono); font-weight:700; font-size:13px; margin-bottom:14px;
}
.how__steps h3{font-size:16.5px; margin:0 0 8px; color:var(--ink); font-weight:600;}
.how__steps p{font-size:13.5px; line-height:1.6; color:var(--graphite); margin:0;}

/* ---------- FAQ ---------- */
.faq{ padding:64px clamp(20px,4vw,48px); max-width:760px; background:var(--paper); border-bottom:1px solid var(--line); }
.faq__item{ border-bottom:1px solid var(--line); padding:18px 0; }
.faq__item summary{ cursor:pointer; font-weight:600; font-size:15px; color:var(--ink); list-style:none; display:flex; align-items:center; gap:10px;}
.faq__item summary::-webkit-details-marker{display:none;}
.faq__item summary::before{ content:'+'; display:inline-block; width:18px; color:var(--brass); font-weight:700; font-size:18px;}
.faq__item[open] summary::before{content:'–';}
.faq__item p{ font-size:14px; line-height:1.65; color:var(--graphite); margin:12px 0 0 28px; }

/* ---------- FOOTER ---------- */
.site-footer{ background:var(--ink); color:#C6CAD6; padding:52px clamp(20px,4vw,48px) 0; }
.site-footer__grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px; max-width:1100px; margin:0 auto;
  padding-bottom:40px; border-bottom:1px solid #2A2E3B;
}
@media (max-width:760px){ .site-footer__grid{grid-template-columns:1fr 1fr;} }
.site-footer__brand p{font-size:13px; line-height:1.6; color:#9AA0B0; max-width:280px;}
.site-footer__ssl{font-size:12px !important; color:#7C8296 !important;}
.site-footer__col h3{ font-family:var(--font-ui); font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:#7C8296; margin:0 0 14px; font-weight:600;}
.site-footer__col{display:flex; flex-direction:column; gap:10px;}
.site-footer__col a{ color:#C6CAD6; text-decoration:none; font-size:13.5px;}
.site-footer__col a:hover{color:#fff;}
.site-footer__bottom{ max-width:1100px; margin:0 auto; padding:22px 0; text-align:center;}
.site-footer__bottom p{font-size:12px; color:#7C8296; margin:0;}

/* ---------- WORKSPACE LAYOUT ---------- */
.workspace{ display:grid; grid-template-columns:minmax(340px,440px) 1fr; min-height:calc(100vh - 68px); }
@media (max-width:900px){ .workspace{grid-template-columns:1fr;} }

/* ---------- BUILD PANEL ---------- */
.build{ padding:30px clamp(18px,3vw,36px) 90px; overflow-y:auto; background:var(--paper); border-right:1px solid var(--line); }
.build__section{ padding-bottom:26px; margin-bottom:26px; border-bottom:1px solid var(--line); }
.build__section:last-child{border-bottom:none;}
.build__heading{ font-weight:600; font-size:12.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--brass-deep); margin:0 0 16px; font-family:var(--font-ui);}
.build__heading-row{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:16px; flex-wrap:wrap;}
.build__heading-row .build__heading{margin:0;}
.badge-soft{ font-family:var(--font-mono); font-size:10px; font-weight:600; color:var(--teal); background:var(--teal-tint); padding:2px 7px; border-radius:8px; text-transform:none; letter-spacing:0; margin-left:6px;}

.field-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px 12px; }
.field-grid--tight{margin-bottom:10px;}
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:14px; font-size:12.5px; color:var(--graphite); }
.field span{font-weight:600; color:var(--ink-soft);}
.field-hint{font-size:12px; color:var(--graphite); margin:6px 0 12px; line-height:1.5;}
.field input, .field select, .field textarea{
  font-family:var(--font-ui); font-size:14px; color:var(--ink);
  background:var(--mist); border:1px solid var(--line); border-radius:var(--radius-sm);
  padding:10px 12px; resize:vertical;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:2px solid var(--brass); outline-offset:1px; background:#fff;}
.field input::placeholder, .field textarea::placeholder{color:#9AA0AE;}

.photo-row{display:flex; align-items:center; gap:16px; margin-bottom:18px;}
.photo-drop{
  width:76px; height:76px; border-radius:50%; background:var(--mist); border:1.5px dashed var(--line-strong);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; cursor:pointer; overflow:hidden;
}
.photo-drop img{width:100%; height:100%; object-fit:cover;}
#photoPlaceholder{font-size:10.5px; color:var(--graphite); text-align:center; padding:0 6px;}
.photo-row__meta{display:flex; flex-direction:column; align-items:flex-start; gap:6px;}

.btn-add{ font-family:var(--font-ui); font-size:12.5px; font-weight:600; color:#fff; background:var(--ink);
  border:none; border-radius:var(--radius-sm); padding:8px 14px; cursor:pointer; white-space:nowrap;}
.btn-add:hover{background:var(--brass-deep);}
.btn-add--file{display:inline-flex; align-items:center; margin-top:4px;}
.btn-ghost{ font-family:var(--font-ui); font-size:12.5px; font-weight:600; color:var(--ink); background:#fff;
  border:1px solid var(--line-strong); border-radius:var(--radius-sm); padding:8px 14px; cursor:pointer;}
.btn-ghost:hover{border-color:var(--brass);}
.btn-text{ font-family:var(--font-ui); font-size:12px; font-weight:600; color:var(--danger); background:none; border:none; cursor:pointer; padding:4px 0;}

.toggle{display:inline-flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600; color:var(--ink-soft); cursor:pointer;}
.toggle input{accent-color:var(--brass); width:15px; height:15px;}

.repeat-item{ position:relative; background:var(--mist); border:1px solid var(--line); border-radius:var(--radius); padding:18px 18px 6px; margin-bottom:14px;}
.repeat-item__remove{ position:absolute; top:10px; right:10px; width:24px; height:24px; border-radius:50%; border:none; background:transparent; color:var(--graphite); font-size:18px; line-height:1; cursor:pointer;}
.repeat-item__remove:hover{color:var(--danger); background:#fff;}

/* add-section menu */
.add-section-grid{ display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.add-section-chip{
  display:flex; align-items:center; justify-content:space-between; gap:6px;
  font-size:12.5px; font-weight:600; color:var(--ink-soft); background:var(--mist);
  border:1px solid var(--line); border-radius:var(--radius-sm); padding:9px 12px; cursor:pointer; text-align:left;
}
.add-section-chip:hover{border-color:var(--brass); color:var(--ink);}
.add-section-chip[disabled]{opacity:.4; cursor:default;}
.add-section-chip small{font-family:var(--font-mono); font-weight:500; color:var(--teal);}

/* document uploads */
.doc-counter{font-family:var(--font-mono); font-size:11.5px; color:var(--graphite);}
.doc-list{display:flex; flex-direction:column; gap:8px; margin-bottom:10px;}
.doc-row{ display:flex; align-items:center; gap:10px; background:var(--mist); border:1px solid var(--line); border-radius:var(--radius-sm); padding:9px 12px; font-size:13px;}
.doc-row__name{flex:1; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.doc-row__size{font-family:var(--font-mono); font-size:11px; color:var(--graphite);}
.doc-row__remove{background:none; border:none; color:var(--graphite); cursor:pointer; font-size:16px;}
.doc-row__remove:hover{color:var(--danger);}
.upsell{ margin-top:14px; background:var(--brass-tint); border:1px solid #E6D5AF; border-radius:var(--radius); padding:14px 16px;}
.upsell p{font-size:13px; margin:0 0 10px; color:var(--ink-soft);}
.upsell__options{display:flex; gap:8px; flex-wrap:wrap;}
.upsell__btn{ font-size:12.5px; font-weight:600; color:var(--ink); background:#fff; border:1px solid var(--brass); border-radius:var(--radius-sm); padding:7px 12px; cursor:pointer;}
.upsell__btn:hover{background:var(--brass); color:#fff;}

/* ---------- PREVIEW PANEL ---------- */
.preview{ background:var(--mist-deep); display:flex; flex-direction:column; align-items:center; padding:26px clamp(16px,3vw,40px) 60px; overflow-y:auto; }
.preview__toolbar{ width:100%; max-width:800px; display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:22px; flex-wrap:wrap; }
.template-picker{display:flex; gap:8px; flex-wrap:wrap;}
.template-chip{
  display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:600; color:var(--ink-soft);
  background:#fff; border:1px solid var(--line-strong); border-radius:20px; padding:7px 14px; cursor:pointer;
}
.template-chip.is-active{border-color:var(--brass); color:var(--brass-deep); background:var(--brass-tint);}
.template-chip__dot{width:7px; height:7px; border-radius:50%; background:var(--teal);}
.template-chip__seal{ font-family:var(--font-mono); font-size:10px; font-weight:700; color:#fff; background:var(--brass); border-radius:10px; padding:2px 7px;}

.btn-primary{ display:inline-flex; align-items:center; gap:8px; font-family:var(--font-ui); font-size:13.5px; font-weight:600; color:#fff; background:var(--ink); border:none; border-radius:var(--radius-sm); padding:11px 20px; cursor:pointer; transition:background .15s, transform .15s;}
.btn-primary:hover{background:var(--brass-deep); transform:translateY(-1px);}
.btn-primary:active{transform:translateY(0);}

.paper-stage{position:relative;}
.paper{
  width:210mm; max-width:100%; min-height:297mm; background:#fff; color:#1E2130;
  box-shadow:var(--shadow-paper); padding:20mm 18mm; font-family:var(--font-ui);
}
@media (max-width:760px){ .paper{transform:scale(.42); transform-origin:top center; margin-bottom:-380mm;} }
@media (min-width:761px) and (max-width:1100px){ .paper{transform:scale(.72); transform-origin:top center; margin-bottom:-84mm;} }
.preview__note{font-size:12px; color:var(--graphite); margin-top:14px; text-align:center;}
.paper-seal{ position:absolute; top:-10px; right:-10px; background:var(--brass); color:#fff; font-family:var(--font-mono); font-size:10px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; padding:6px 10px; border-radius:4px; transform:rotate(4deg); box-shadow:0 6px 14px rgba(0,0,0,.2);}

/* ----- shared CV type rules ----- */
.cv-name{font-family:var(--font-display); font-weight:600; margin:0; line-height:1.05;}
.cv-title{font-family:var(--font-ui); font-weight:500; margin:4px 0 0;}
.cv-contact{font-family:var(--font-mono); font-size:11px; letter-spacing:.01em; color:#5B6478;}
.cv-section-label{font-family:var(--font-ui); font-weight:700; font-size:11.5px; text-transform:uppercase; letter-spacing:.1em;}
.cv-role{font-weight:600;}
.cv-meta{color:#6B7280; font-size:12.5px;}
.cv-bullets{margin:6px 0 0; padding-left:18px;}
.cv-bullets li{margin-bottom:3px; font-size:12.5px; line-height:1.5;}
.cv-skill-tag{display:inline-block; font-size:11.5px; padding:4px 10px; border-radius:12px; margin:0 6px 6px 0;}
.cv-photo{width:88px; height:88px; border-radius:50%; object-fit:cover; display:block;}
.cv-entry{break-inside:avoid; page-break-inside:avoid;}
.cv-section{break-inside:avoid-page;}

/* ===== CLASSIC (free) — centered serif, ATS-friendly ===== */
.tpl-classic .cv-header{text-align:center; border-bottom:2px solid #1E2444; padding-bottom:16px; margin-bottom:20px;}
.tpl-classic .cv-name{font-size:30px;}
.tpl-classic .cv-title{font-size:13px; color:#4A5578; text-transform:uppercase; letter-spacing:.08em;}
.tpl-classic .cv-contact{margin-top:10px;}
.tpl-classic .cv-section{margin-bottom:18px;}
.tpl-classic .cv-section-label{border-bottom:1px solid var(--line); padding-bottom:6px; margin-bottom:10px; color:#1E2444;}
.tpl-classic .cv-summary{font-size:13px; line-height:1.6;}
.tpl-classic .cv-entry{margin-bottom:12px;}
.tpl-classic .cv-entry-head{display:flex; justify-content:space-between; font-size:13.5px; flex-wrap:wrap; gap:4px;}
.tpl-classic .cv-skill-tag{background:#EEF2FA; color:#1E2444;}

/* ===== MINIMAL (free) — airy, sans ===== */
.tpl-minimal .cv-header{margin-bottom:26px;}
.tpl-minimal .cv-name{font-size:28px; font-weight:600; font-family:var(--font-ui); letter-spacing:-.01em;}
.tpl-minimal .cv-title{font-size:13px; color:var(--brass-deep);}
.tpl-minimal .cv-contact{margin-top:8px;}
.tpl-minimal .cv-section{margin-bottom:20px;}
.tpl-minimal .cv-section-label{color:#9AA3B8; margin-bottom:12px;}
.tpl-minimal .cv-summary{font-size:13px; line-height:1.7; max-width:520px;}
.tpl-minimal .cv-entry{margin-bottom:14px; padding-left:14px; border-left:2px solid var(--line);}
.tpl-minimal .cv-entry-head{display:flex; justify-content:space-between; font-size:13.5px; flex-wrap:wrap; gap:4px;}
.tpl-minimal .cv-skill-tag{background:transparent; border:1px solid var(--line-strong); color:#1E2444;}

/* ===== GRADUATE (free) — friendly, education-forward ===== */
.tpl-graduate .cv-header{ background:var(--teal-tint); margin:-20mm -18mm 20px; padding:20mm 18mm 18px; }
.tpl-graduate .cv-name{font-size:28px; color:var(--teal);}
.tpl-graduate .cv-title{font-size:13px; color:#2A5A4D;}
.tpl-graduate .cv-contact{margin-top:8px; color:#2A5A4D;}
.tpl-graduate .cv-section{margin-bottom:18px;}
.tpl-graduate .cv-section-label{color:var(--teal); margin-bottom:10px;}
.tpl-graduate .cv-summary{font-size:13px; line-height:1.6;}
.tpl-graduate .cv-entry{margin-bottom:12px;}
.tpl-graduate .cv-entry-head{display:flex; justify-content:space-between; font-size:13.5px; flex-wrap:wrap; gap:4px;}
.tpl-graduate .cv-skill-tag{background:var(--teal-tint); color:var(--teal); border:1px solid #BFE0D6;}

/* ===== MODERN SIDEBAR (premium) ===== */
.tpl-sidebar{padding:0 !important;}
.tpl-sidebar .cv-grid{display:grid; grid-template-columns:68mm 1fr; min-height:297mm;}
.tpl-sidebar .cv-side{background:var(--ink); color:#fff; padding:20mm 14mm;}
.tpl-sidebar .cv-photo{margin-bottom:16px; border:3px solid #2A2E3B;}
.tpl-sidebar .cv-name{font-size:21px; color:#fff;}
.tpl-sidebar .cv-title{font-size:11.5px; color:var(--brass); text-transform:uppercase; letter-spacing:.06em;}
.tpl-sidebar .cv-contact{display:block; margin-top:16px; color:#B7BCC9; line-height:1.9;}
.tpl-sidebar .cv-side .cv-section-label{color:var(--brass); margin:22px 0 10px;}
.tpl-sidebar .cv-skill-tag{background:#2A2E3B; color:#fff; display:block; margin:0 0 6px; border-radius:2px;}
.tpl-sidebar .cv-main{padding:20mm 16mm;}
.tpl-sidebar .cv-section{margin-bottom:18px;}
.tpl-sidebar .cv-main .cv-section-label{color:var(--brass-deep); border-bottom:1px solid var(--line); padding-bottom:6px; margin-bottom:12px;}
.tpl-sidebar .cv-summary{font-size:13px; line-height:1.65;}
.tpl-sidebar .cv-entry{margin-bottom:14px;}
.tpl-sidebar .cv-entry-head{display:flex; justify-content:space-between; font-size:13.5px; flex-wrap:wrap; gap:4px;}

/* ===== EXECUTIVE (premium) — brass rules, refined serif ===== */
.tpl-executive .cv-header{border-top:3px solid var(--brass); padding-top:18px; margin-bottom:24px; display:flex; justify-content:space-between; align-items:flex-start; gap:16px;}
.tpl-executive .cv-name{font-size:33px; letter-spacing:-.01em;}
.tpl-executive .cv-title{font-size:12.5px; color:var(--brass-deep); text-transform:uppercase; letter-spacing:.14em; margin-top:6px;}
.tpl-executive .cv-contact{margin-top:12px;}
.tpl-executive .cv-section{margin-bottom:22px;}
.tpl-executive .cv-section-label{color:var(--brass-deep); letter-spacing:.14em; margin-bottom:12px;}
.tpl-executive .cv-summary{font-size:13.5px; line-height:1.7; font-family:var(--font-display); font-weight:400;}
.tpl-executive .cv-entry{margin-bottom:14px; padding-bottom:12px; border-bottom:1px dotted var(--line-strong);}
.tpl-executive .cv-entry-head{display:flex; justify-content:space-between; font-size:14px; flex-wrap:wrap; gap:4px;}
.tpl-executive .cv-skill-tag{background:transparent; border-bottom:2px solid var(--brass); border-radius:0; padding:2px 4px;}

/* ===== CORPORATE (premium) — banded, structured ===== */
.tpl-corporate .cv-header{background:var(--ink); color:#fff; margin:-20mm -18mm 22px; padding:20mm 18mm 20px;}
.tpl-corporate .cv-name{font-size:28px; color:#fff;}
.tpl-corporate .cv-title{font-size:12px; color:#B7BCC9; text-transform:uppercase; letter-spacing:.1em;}
.tpl-corporate .cv-contact{margin-top:10px; color:#9AA0B0;}
.tpl-corporate .cv-section{margin-bottom:18px; background:var(--mist); border-left:3px solid var(--brass); padding:12px 14px; border-radius:0 6px 6px 0;}
.tpl-corporate .cv-section-label{color:var(--ink); margin-bottom:10px;}
.tpl-corporate .cv-summary{font-size:13px; line-height:1.6;}
.tpl-corporate .cv-entry{margin-bottom:12px;}
.tpl-corporate .cv-entry-head{display:flex; justify-content:space-between; font-size:13.5px; flex-wrap:wrap; gap:4px;}
.tpl-corporate .cv-skill-tag{background:#fff; border:1px solid var(--line-strong); color:var(--ink);}

/* ===== CREATIVE (premium) — bold colour, personality ===== */
.tpl-creative .cv-header{ border-radius:var(--radius); background:linear-gradient(135deg, var(--brass) 0%, #C99A4B 100%); color:#fff; padding:22px 24px; margin-bottom:22px; display:flex; gap:18px; align-items:center;}
.tpl-creative .cv-photo{border:3px solid #fff;}
.tpl-creative .cv-name{font-size:26px; color:#fff;}
.tpl-creative .cv-title{font-size:12.5px; color:#FBEFDA;}
.tpl-creative .cv-contact{margin-top:8px; color:#FBEFDA;}
.tpl-creative .cv-section{margin-bottom:20px;}
.tpl-creative .cv-section-label{color:var(--brass-deep); margin-bottom:10px; position:relative; padding-left:14px;}
.tpl-creative .cv-section-label::before{content:''; position:absolute; left:0; top:2px; width:6px; height:6px; border-radius:50%; background:var(--brass);}
.tpl-creative .cv-summary{font-size:13px; line-height:1.65;}
.tpl-creative .cv-entry{margin-bottom:14px;}
.tpl-creative .cv-entry-head{display:flex; justify-content:space-between; font-size:13.5px; flex-wrap:wrap; gap:4px;}
.tpl-creative .cv-skill-tag{background:var(--brass-tint); color:var(--brass-deep);}

.pdf-page-break{ page-break-before: always; break-before: page; }

/* ----- cover letter / cover page (export-only pages) ----- */
.pdf-page{width:210mm; min-height:297mm; background:#fff; padding:20mm 18mm; font-family:var(--font-ui); color:#1E2130;}
.cl-date{font-family:var(--font-mono); font-size:12px; color:#6B7280; margin-bottom:24px;}
.cl-recipient{margin-bottom:24px; font-size:13.5px; line-height:1.6;}
.cl-body{font-size:13.5px; line-height:1.75; white-space:pre-wrap; margin-bottom:30px;}
.cl-signoff{font-size:13.5px; line-height:1.8;}
.cover-page{display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; height:257mm;}
.cover-page__photo{width:130px; height:130px; border-radius:50%; object-fit:cover; margin-bottom:26px; border:4px solid var(--brass-tint);}
.cover-page__name{font-size:40px; margin:0;}
.cover-page__title{font-size:15px; color:var(--brass-deep); text-transform:uppercase; letter-spacing:.12em; margin:10px 0 20px;}
.cover-page__tagline{font-size:15px; font-style:italic; color:#4A5578; max-width:420px; margin:0 0 24px;}
.cover-page__contact{font-family:var(--font-mono); font-size:12px; color:#6B7280; margin-bottom:20px;}
.cover-page__qr{margin-top:6px;}

/* ---------- PREMIUM / PRICING SECTION ---------- */
.premium{ padding:64px clamp(20px,4vw,48px); background:var(--paper); border-bottom:1px solid var(--line); }
.premium__intro{max-width:640px; font-size:14.5px; line-height:1.65; color:var(--graphite); margin:0 0 34px;}
.premium__subheading{font-size:18px; font-weight:600; margin:44px 0 20px; color:var(--ink);}

.pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media (max-width:800px){.pricing-grid{grid-template-columns:1fr;}}
.pricing-card{ background:var(--mist); border:1px solid var(--line); border-radius:var(--radius); padding:24px; }
.pricing-card--featured{border-color:var(--brass); background:var(--brass-tint);}
.pricing-card__tier{ display:inline-block; font-family:var(--font-display); font-size:26px; font-weight:600; color:var(--brass-deep); margin-bottom:14px;}
.pricing-card ul{margin:0; padding-left:18px;}
.pricing-card li{font-size:13.5px; line-height:1.9; color:var(--ink-soft);}

.premium__cards{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
@media (max-width:1000px){.premium__cards{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.premium__cards{grid-template-columns:1fr;}}
.premium-card{ background:var(--mist); border:1px solid var(--line); border-radius:var(--radius); padding:22px; display:flex; flex-direction:column; gap:8px;}
.premium-card__badge{ align-self:flex-start; font-family:var(--font-mono); font-size:10px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:#fff; background:var(--brass); padding:4px 9px; border-radius:10px;}
.premium-card h3{font-size:17px; margin:4px 0 0; color:var(--ink);}
.premium-card p{font-size:13px; line-height:1.6; color:var(--graphite); margin:0;}
.premium-card__cta{ align-self:flex-start; margin-top:6px; font-family:var(--font-ui); font-size:12.5px; font-weight:600; color:var(--ink); background:#fff; border:1px solid var(--line-strong); border-radius:var(--radius-sm); padding:8px 14px; cursor:pointer;}
.premium-card__cta:hover{border-color:var(--brass); color:var(--brass-deep);}

/* ---------- TOAST ---------- */
.toast{ position:fixed; bottom:24px; left:50%; transform:translateX(-50%); background:var(--ink); color:#fff; font-weight:600; font-size:13.5px; padding:12px 22px; border-radius:8px; box-shadow:0 10px 30px rgba(0,0,0,.25); z-index:60;}

/* ---------- STATIC CONTENT PAGES (about / contact / privacy / terms) ---------- */
.static-page{ max-width:760px; margin:0 auto; padding:64px clamp(20px,4vw,48px) 80px; background:var(--paper); }
.static-page h1{font-weight:600; font-size:clamp(28px,4vw,38px); margin:0 0 8px; color:var(--ink);}
.static-page .static-page__updated{font-family:var(--font-mono); font-size:12px; color:var(--graphite); margin:0 0 36px;}
.static-page h2{font-size:19px; font-weight:600; margin:34px 0 12px; color:var(--ink);}
.static-page p{font-size:14.5px; line-height:1.75; color:var(--ink-soft); margin:0 0 14px;}
.static-page ul{margin:0 0 14px; padding-left:20px;}
.static-page li{font-size:14.5px; line-height:1.75; color:var(--ink-soft); margin-bottom:6px;}
.static-page a{color:var(--brass-deep);}
.contact-card{ display:flex; flex-direction:column; gap:10px; background:var(--mist); border:1px solid var(--line); border-radius:var(--radius); padding:22px 24px; margin:20px 0 30px; max-width:360px;}
.contact-card__row{display:flex; gap:10px; font-size:14px; color:var(--ink-soft);}
.contact-card__row strong{color:var(--ink); min-width:64px;}
.back-link{display:inline-block; margin-bottom:24px; font-size:13px; font-weight:600; color:var(--graphite); text-decoration:none;}
.back-link:hover{color:var(--brass-deep);}

@media print{
  .topbar,.hero,.build,.preview__toolbar,.premium,.how,.faq,.site-footer,.toast,.preview__note,.paper-seal{display:none !important;}
  .paper{box-shadow:none; margin:0;}
}
