/* Typography: system font stack (no third-party font requests — see cookie.html). */
:root {
  --ink: #1a1a2e; --muted: #5b5b72; --bg: #faf9f7; --card: #ffffff;
  --gold: #c9a227; --gold-soft: #f3e6bd; --gold-deep: #a8841c;
  --wine: #4a1530; --wine-deep: #2d0a1e; --wine-ink: #1d0716;
  --line: #e8e2d8; --ok: #1e7e34; --err: #b3261e;
  --font-display: "Sora", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(29,7,22,.06);
  --shadow-md: 0 10px 32px rgba(29,7,22,.10);
  --shadow-gold: 0 8px 28px rgba(201,162,39,.28);
  --header-h: 68px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { margin: 0; font-family: var(--font-body); background: var(--bg); color: var(--ink);
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
img { max-width: 100%; }
::selection { background: var(--gold-soft); }

/* ---------- visible keyboard focus (WCAG 2.4.7) ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 2px;
}

/* ---------- fixed header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; transition: box-shadow .3s ease, background-color .3s ease; }
.site-header .navrow { background: rgba(45,10,30,.96); transition: background-color .3s ease, box-shadow .3s ease; }
.site-header.scrolled .navrow { background: rgba(29,7,22,.96);
  box-shadow: 0 6px 24px rgba(0,0,0,.28); }
.site-header .navrow .wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { font-family: var(--font-display); font-weight: 800; letter-spacing: 1.5px; font-size: 21px;
  color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.brand span { color: var(--gold); }
.brand .brand-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 10px var(--gold); }
nav.links { display: flex; align-items: center; }
nav.links a { color: #f3e9d2; text-decoration: none; margin-left: 26px; font-size: 15px; font-weight: 500;
  white-space: nowrap; position: relative; padding: 6px 0; transition: color .2s; }
nav.links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); border-radius: 2px; transition: width .25s ease; }
nav.links a:hover { color: #fff; }
nav.links a:hover::after { width: 100%; }
.nav-cta { margin-left: 26px; background: var(--gold); color: var(--wine-deep); font-weight: 700; font-size: 14.5px;
  padding: 10px 22px; border-radius: 999px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.menu-btn { display: none; }

/* ---------- hero ---------- */
.hero { background:
    radial-gradient(900px 420px at 85% -10%, rgba(201,162,39,.22), transparent 60%),
    radial-gradient(700px 380px at 8% 110%, rgba(201,162,39,.10), transparent 60%),
    linear-gradient(135deg, var(--wine-ink), var(--wine-deep) 45%, var(--wine));
  color: #fff; padding: 88px 0 96px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 26px 26px; mask-image: radial-gradient(70% 60% at 50% 40%, #000 30%, transparent 100%);
  pointer-events: none; }
.hero .wrap { position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold-soft);
  border: 1px solid rgba(201,162,39,.45); border-radius: 999px; padding: 8px 18px; margin-bottom: 22px;
  background: rgba(201,162,39,.10); }
.eyebrow .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,162,39,.5); } 50% { box-shadow: 0 0 0 7px rgba(201,162,39,0); } }
.hero h1 { font-size: clamp(34px, 6vw, 60px); margin: 0 0 18px; font-weight: 800; }
.hero h1 .rot { color: var(--gold); display: inline-block; min-width: 8ch; transition: opacity .3s ease, transform .3s ease; }
.hero h1 .rot.swap { opacity: 0; transform: translateY(10px); }
.hero p.lead { font-size: clamp(16px, 2.4vw, 20px); color: #f3e9d2; max-width: 660px; margin: 0 auto 34px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: var(--wine-deep); font-weight: 700;
  padding: 15px 34px; border-radius: 999px; text-decoration: none; border: none; cursor: pointer;
  font-size: 16.5px; font-family: var(--font-body); transition: transform .2s, box-shadow .2s, filter .2s; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); filter: brightness(1.05); }
.btn.ghost { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(201,162,39,.6); }
.btn.ghost:hover { background: rgba(201,162,39,.14); box-shadow: none; }
.btn.dark { background: var(--wine); color: #fff; }
.btn.dark:hover { box-shadow: 0 8px 24px rgba(74,21,48,.35); }
.btn:disabled { opacity: .55; cursor: wait; transform: none; }
.btn.big { padding: 17px 42px; font-size: 18px; }
.hero-live { display: inline-flex; align-items: center; gap: 10px; font-size: 14.5px; color: #f3e9d2;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: 9px 20px; border-radius: 999px; margin-bottom: 26px; }
.hero-live strong { color: var(--gold); font-size: 17px; font-variant-numeric: tabular-nums; }
.hero-trust { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; font-size: 13.5px; color: #d9c9a8; }
.hero-trust span::before { content: "✓ "; color: var(--gold); font-weight: 800; }

/* ---------- marquee ---------- */
.marquee { background: var(--wine-ink); border-top: 1px solid rgba(201,162,39,.25);
  border-bottom: 1px solid rgba(201,162,39,.25); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: scrollX 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { color: #e9dcc0; font-size: 14px; font-weight: 600; white-space: nowrap;
  border: 1px solid rgba(201,162,39,.35); border-radius: 999px; padding: 8px 20px; background: rgba(201,162,39,.07); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section.block { padding: 72px 0; }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.sec-head h2 { font-size: clamp(26px, 4vw, 38px); margin: 0 0 12px; }
.sec-head p { color: var(--muted); font-size: 17px; margin: 0; }
.sec-eyebrow { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: #8a6f1f; margin-bottom: 12px; }

/* ---------- feature tabs ---------- */
.feat-tabs { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px;
  position: relative; }
.feat-tab { position: relative; z-index: 1; padding: 12px 26px; border-radius: 999px; border: none;
  background: transparent; cursor: pointer; font-size: 15.5px; font-weight: 600; font-family: var(--font-body);
  color: var(--muted); transition: color .25s; }
.feat-tab.active { color: #fff; }
.feat-pill { position: absolute; top: 0; left: 0; height: 100%; border-radius: 999px; z-index: 0;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  box-shadow: var(--shadow-md); transition: transform .35s cubic-bezier(.6,0,.2,1.2), width .35s ease; }
.feat-pane { display: none; }
.feat-pane.active { display: block; animation: fadeUp .45s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.feat-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: stretch; }
.feat-copy { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: center; }
.feat-copy h3 { font-size: 24px; margin: 0 0 10px; }
.feat-copy p { color: var(--muted); margin: 0 0 18px; }
.feat-copy .mini-cta { align-self: flex-start; font-weight: 700; color: var(--wine); text-decoration: none;
  border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.feat-visual { border-radius: var(--radius); background: linear-gradient(140deg, var(--wine-deep), var(--wine));
  color: #fff; padding: 36px; position: relative; overflow: hidden; display: flex; flex-direction: column;
  justify-content: center; min-height: 260px; }
.feat-visual::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 22px 22px; }
.feat-visual > * { position: relative; }

/* ---------- playground ---------- */
.play-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.play-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-sm); }
.play-card h3 { font-size: 22px; margin: 0 0 8px; }
.play-card > p { color: var(--muted); font-size: 15px; margin: 0 0 20px; }
.play-card select { margin-bottom: 14px; }
.dial-wrap { display: flex; align-items: center; gap: 22px; margin-top: 8px; flex-wrap: wrap; }
.dial { width: 132px; height: 132px; transform: rotate(-90deg); flex: none; }
.dial .bg { fill: none; stroke: var(--line); stroke-width: 12; }
.dial .fg { fill: none; stroke: url(#dialGrad); stroke-width: 12; stroke-linecap: round;
  stroke-dasharray: 339.29; stroke-dashoffset: 339.29; transition: stroke-dashoffset 1.2s cubic-bezier(.3,.7,.3,1); }
.dial-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; fill: var(--ink); }
.dial-tips { font-size: 14.5px; color: var(--muted); flex: 1; min-width: 180px; }
.dial-tips li { margin-bottom: 8px; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.chip { padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff;
  cursor: pointer; font-size: 14px; font-weight: 600; font-family: var(--font-body); transition: all .2s; }
.chip:hover { border-color: var(--gold); }
.chip.active { background: var(--wine); border-color: var(--wine); color: #fff; }
.type-card { background: var(--wine-ink); color: #f3e9d2; border-radius: 14px; padding: 24px; min-height: 190px;
  font-size: 15px; box-shadow: inset 0 0 40px rgba(0,0,0,.35); }
.type-card .tc-head { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 17px; margin-bottom: 4px; }
.type-card .tc-sub { color: var(--gold-soft); font-size: 13px; margin-bottom: 14px; }
.type-line { margin: 0 0 10px; }
.type-line::before { content: "▸ "; color: var(--gold); }
.caret { display: inline-block; width: 9px; height: 18px; background: var(--gold); vertical-align: -3px;
  animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- template gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tpl { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; position: relative; cursor: pointer; }
a.tpl { text-decoration: none; color: inherit; display: block; }
.tpl:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tpl-doc { aspect-ratio: 3/4; padding: 18px 16px; position: relative;
  background: linear-gradient(180deg, #fff, #f6f3ec); }
.tpl-doc i { display: block; background: #e6e0d2; border-radius: 3px; margin-bottom: 8px; }
.tpl-doc .t-name { height: 14px; width: 55%; background: var(--wine); margin-bottom: 6px; border-radius: 3px; }
.tpl-doc .t-role { height: 9px; width: 40%; margin-bottom: 12px; }
.tpl-doc .t-sec { height: 8px; width: 30%; background: var(--gold); margin: 12px 0 8px; border-radius: 3px; }
.tpl-doc .tpl-overlay { position: absolute; inset: 0; background: rgba(29,7,22,.78); display: flex; align-items: center;
  justify-content: center; opacity: 0; transition: opacity .25s; margin: 0; }
.tpl:hover .tpl-doc .tpl-overlay, .tpl:focus-visible .tpl-doc .tpl-overlay { opacity: 1; }
.tpl-doc .tpl-overlay span { color: #fff; font-weight: 700; border: 1.5px solid var(--gold); border-radius: 999px;
  padding: 10px 24px; font-size: 14.5px; }
.tpl-name { padding: 12px 14px; font-weight: 700; font-size: 14.5px; text-align: center; border-top: 1px solid var(--line); }

/* ---------- stats band ---------- */
.stats-band { background: linear-gradient(135deg, var(--wine-ink), var(--wine-deep) 55%, var(--wine));
  border-radius: 24px; padding: 52px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  color: #fff; position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,162,39,.14) 1px, transparent 1px); background-size: 24px 24px; }
.stat { text-align: center; position: relative; }
.stat .num { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); font-weight: 800;
  color: var(--gold); font-variant-numeric: tabular-nums; }
.stat .lbl { font-size: 14px; color: #e9dcc0; margin-top: 6px; }

/* ---------- pricing ---------- */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; align-items: stretch; }
.price { background: var(--card); border: 2px solid var(--line); border-radius: 20px; padding: 34px 30px;
  text-align: center; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.price:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price.hot { border-color: var(--gold); box-shadow: var(--shadow-gold); position: relative; transform: scale(1.03); }
.price.hot:hover { transform: scale(1.03) translateY(-5px); }
.price h3 { margin: 14px 0 4px; font-size: 22px; }
.price .amt { font-size: 44px; font-weight: 800; margin: 10px 0 4px; font-family: var(--font-display); }
.price .amt small { font-size: 14px; font-weight: 500; color: var(--muted); }
.price .per { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.price ul { text-align: left; padding-left: 4px; font-size: 15px; list-style: none; margin: 0 0 24px; flex: 1; }
.price li { margin-bottom: 10px; padding-left: 26px; position: relative; }
.price li::before { content: "✓"; position: absolute; left: 2px; color: var(--gold-deep); font-weight: 800; }
.price li.no { color: var(--muted); }
.price li.no::before { content: "–"; color: #bbb; }
.price .btn { width: 100%; }
.badge { display: inline-block; background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  color: var(--wine-ink); font-size: 11.5px; font-weight: 800; padding: 6px 16px; border-radius: 999px;
  letter-spacing: 1.6px; }
.pay-line { text-align: center; margin-top: 26px; color: var(--muted); font-size: 14px; }
.pay-line strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px;
  overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer; padding: 20px 24px; font-size: 16.5px; font-weight: 600;
  font-family: var(--font-body); color: var(--ink); text-align: left; }
.faq-q .fi { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--gold-soft);
  color: var(--gold-deep); font-weight: 800; display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .3s; font-size: 18px; }
.faq-item.open .faq-q .fi { transform: rotate(45deg); background: var(--gold); color: var(--wine-deep); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a .faq-a-in { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }
.faq-a a { color: var(--wine); font-weight: 600; }

/* ---------- final CTA ---------- */
.final-cta { background:
    radial-gradient(700px 320px at 50% -20%, rgba(201,162,39,.25), transparent 60%),
    linear-gradient(135deg, var(--wine-ink), var(--wine-deep) 60%, var(--wine));
  border-radius: 28px; padding: 68px 40px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 26px 26px;
  mask-image: radial-gradient(60% 80% at 50% 50%, #000, transparent 100%); }
.final-cta > * { position: relative; }
.final-cta h2 { font-size: clamp(28px, 4.5vw, 44px); margin: 0 0 14px; }
.final-cta h2 em { color: var(--gold); font-style: normal; }
.final-cta p { color: #f3e9d2; max-width: 560px; margin: 0 auto 30px; font-size: 17px; }

/* ---------- footer ---------- */
footer { background: var(--wine-ink); color: #cbbfa5; padding: 56px 0 28px; margin-top: 72px; font-size: 14.5px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.foot-brand { font-family: var(--font-display); font-weight: 800; letter-spacing: 1.5px; font-size: 20px; color: #fff; }
.foot-brand span { color: var(--gold); }
.foot-grid p { margin: 10px 0 0; max-width: 320px; }
.foot-grid h4 { color: #fff; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; margin: 0 0 14px; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 10px; }
footer a { color: #e9dcc0; text-decoration: none; }
footer a:hover { color: var(--gold); }
.foot-base { border-top: 1px solid rgba(201,162,39,.2); padding-top: 22px; display: flex;
  justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #9a8f78; }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; display: none;
  transform: translateY(120%); transition: transform .35s ease; }
.sticky-cta.show { transform: none; }
.sticky-cta a { display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: var(--wine-ink);
  font-weight: 800; font-size: 16.5px; padding: 16px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.35); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero h1 .rot { transition: none; }
}

/* ---------- legacy components (kept, restyled) ---------- */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.card h2 { margin-top: 0; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-weight: 600; margin: 14px 0 6px; font-size: 15px; }
input[type=text], input[type=email], input[type=tel], textarea, select {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 16px;
  font-family: inherit; background: #fff; transition: border-color .2s, box-shadow .2s; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.18); }
textarea { min-height: 110px; resize: vertical; }
.hint { font-size: 13.5px; color: var(--muted); }
.err { color: var(--err); font-weight: 600; margin-top: 12px; }
.okmsg { color: var(--ok); font-weight: 600; margin-top: 12px; }
.output { margin-top: 24px; }
.output .doc { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 30px; box-shadow: var(--shadow-sm); }
.rz-watermark { text-align: center; font-size: 12px; color: #fff; background: var(--wine);
  padding: 8px; letter-spacing: 1px; font-weight: 700; }
.rz-scan { font-size: 15px; }
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.tab { padding: 11px 22px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; cursor: pointer;
  font-size: 15px; font-weight: 600; font-family: var(--font-body); transition: all .2s; }
.tab.active { background: var(--wine); color: #fff; border-color: var(--wine); }
.toolpane { display: none; } .toolpane.active { display: block; animation: fadeUp .4s ease; }
.locknote { background: #fff8e6; border: 1px solid var(--gold); border-radius: 12px; padding: 18px; margin-top: 16px; font-size: 15px; }
/* Locked taste preview: visible but not selectable, with a watermark banner. */
.taste-locked { position: relative; user-select: none; -webkit-user-select: none;
  background: #fff; border: 1px dashed var(--line); border-radius: 12px; padding: 22px; margin: 12px 0;
  color: #444; max-height: 320px; overflow: hidden; }
.taste-locked::after { content: "PREVIEW — unlock with Pro to copy & download"; position: absolute; left: 0; right: 0; bottom: 0;
  text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 1px; color: #fff; background: var(--wine); padding: 8px; }
.planpill { display: inline-block; background: var(--wine); color: #fff; padding: 7px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 700; }
.spinner { border: 3px solid var(--line); border-top: 3px solid var(--wine); border-radius: 50%; width: 26px; height: 26px;
  animation: spin 1s linear infinite; display: inline-block; vertical-align: middle; margin-right: 10px; }
@keyframes spin { to { transform: rotate(360deg); } }
ul.check { list-style: none; padding: 0; }
ul.check li { padding: 9px 0 9px 32px; position: relative; font-size: 16px; }
ul.check li::before { content: "✓"; position: absolute; left: 4px; color: var(--gold-deep); font-weight: 800; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .feat-grid, .play-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); padding: 40px 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .price-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .price.hot { transform: none; }
  .price.hot:hover { transform: translateY(-5px); }
}
@media (max-width: 700px) { .grid2 { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .menu-btn { display: block; background: none; border: none; color: #fff; font-size: 26px; line-height: 1;
    cursor: pointer; padding: 8px 4px; }
  .site-header .navrow .wrap { flex-wrap: wrap; height: auto; min-height: var(--header-h); padding-top: 8px; padding-bottom: 8px; }
  nav.links { display: flex; flex-direction: column; align-items: stretch; width: 100%;
    max-height: 0; overflow: hidden; transition: max-height .3s ease-in-out; }
  .site-header.open nav.links { max-height: 380px; }
  nav.links a { margin-left: 0; padding: 13px 2px; font-size: 16px; border-top: 1px solid rgba(255,255,255,.14); }
  nav.links a:first-child { border-top: none; }
  nav.links a::after { display: none; }
  .nav-cta { margin: 12px 0 6px; text-align: center; }
  .hero { padding: 56px 0 64px; }
  .hero-ctas .btn { width: 100%; }
  section.block { padding: 52px 0; }
  .feat-copy, .feat-visual, .play-card { padding: 26px 22px; }
  .final-cta { padding: 48px 24px; border-radius: 22px; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .sticky-cta { display: block; }
}

/* ---------- chat support + feedback widget ---------- */
.chat-fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px;
  border-radius: 50%; border: none; cursor: pointer; font-size: 26px; line-height: 1;
  background: var(--gold); color: var(--wine-deep); box-shadow: 0 8px 26px rgba(201,162,39,.45);
  transition: transform .2s ease, box-shadow .2s ease; display: flex; align-items: center; justify-content: center; }
.chat-fab:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 12px 30px rgba(201,162,39,.55); }
.chat-panel { position: fixed; right: 22px; bottom: 92px; z-index: 90; width: 368px; max-width: calc(100vw - 32px);
  height: 520px; max-height: calc(100dvh - 130px); background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 70px rgba(20,4,14,.45); display: none; flex-direction: column;
  border: 1px solid var(--line); font-family: var(--font-body); }
.chat-panel.open { display: flex; animation: chatUp .25s ease; }
@keyframes chatUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.chat-head { background: var(--wine-deep); color: #fff; padding: 14px 16px; display: flex; align-items: center; gap: 10px; }
.chat-head .dot { width: 9px; height: 9px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.chat-head b { font-family: var(--font-display); font-size: 15px; letter-spacing: .4px; }
.chat-head small { display: block; font-size: 11.5px; color: #e8d9c4; font-weight: 400; }
.chat-head .x { margin-left: auto; background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; padding: 4px 8px; }
.chat-tabs { display: flex; background: #f7f1e6; border-bottom: 1px solid var(--line); }
.chat-tabs button { flex: 1; border: none; background: none; padding: 11px; font-size: 14px; font-weight: 700;
  color: var(--muted); cursor: pointer; font-family: var(--font-body); }
.chat-tabs button.active { color: var(--wine); border-bottom: 2.5px solid var(--gold); background: #fff; }
.chat-body { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; background: #fffdf8; }
.chat-pane { display: none; flex-direction: column; gap: 10px; min-height: 100%; }
.chat-pane.active { display: flex; }
.msg { max-width: 85%; padding: 10px 13px; border-radius: 14px; font-size: 14px; line-height: 1.5; }
.msg.bot { background: #f4ecdd; color: #3a2b33; border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.user { background: var(--wine); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.msg.bot b { color: var(--wine); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button { border: 1.5px solid var(--gold); background: #fff; color: var(--wine); font-size: 13px;
  font-weight: 600; padding: 7px 13px; border-radius: 999px; cursor: pointer; font-family: var(--font-body); }
.chips button:hover { background: var(--gold); color: var(--wine-deep); }
.chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: #fff; }
.chat-input input { flex: 1; border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 15px;
  font-size: 14px; font-family: var(--font-body); outline: none; }
.chat-input input:focus { border-color: var(--gold); }
.chat-input button, .fb-send { border: none; background: var(--wine); color: #fff; font-weight: 700;
  border-radius: 999px; padding: 10px 18px; cursor: pointer; font-size: 14px; font-family: var(--font-body); }
.chat-input button:hover, .fb-send:hover { background: var(--wine-deep); }
.chat-form { display: flex; flex-direction: column; gap: 9px; }
.chat-form label { font-size: 12.5px; font-weight: 700; color: var(--wine); }
.chat-form input, .chat-form textarea, .chat-form select { border: 1.5px solid var(--line); border-radius: 10px;
  padding: 9px 12px; font-size: 14px; font-family: var(--font-body); outline: none; width: 100%; box-sizing: border-box; }
.chat-form input:focus, .chat-form textarea:focus, .chat-form select:focus { border-color: var(--gold); }
.chat-form textarea { resize: vertical; min-height: 74px; }
.stars { display: flex; gap: 6px; font-size: 30px; }
.stars button { background: none; border: none; cursor: pointer; color: #9c8f75; padding: 0; line-height: 1; }
.stars button.lit { color: var(--gold-deep); }
.chat-note { font-size: 12px; color: var(--muted); text-align: center; }
.chat-ok { background: #ecfdf5; border: 1.5px solid #6ee7b7; color: #065f46; border-radius: 12px;
  padding: 12px; font-size: 14px; text-align: center; }
.chat-err { background: #fef2f2; border: 1.5px solid #fca5a5; color: #991b1b; border-radius: 12px;
  padding: 10px; font-size: 13.5px; text-align: center; }
@media (max-width: 640px) {
  .chat-fab { right: 16px; bottom: 86px; width: 54px; height: 54px; }
  .chat-panel { right: 16px; bottom: 152px; }
}

/* ---------- guided builder wizard ---------- */
.steps { display: flex; gap: 6px; margin-bottom: 18px; overflow-x: auto; padding-bottom: 4px; }
.steps-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.steps-head .steps { margin-bottom: 0; flex: 1; }
.steps-reset { background: none; border: 0; color: #675e50; font-size: 12.5px; cursor: pointer; white-space: nowrap; padding: 6px 4px; }
.steps-reset:hover { color: #161513; text-decoration: underline; }
.step { display: flex; align-items: center; gap: 8px; padding: 8px 14px 8px 8px; border-radius: 999px;
  background: #f6f3ec; font-size: 13px; font-weight: 600; font-family: var(--font-body); color: #675e50;
  white-space: nowrap; border: none; text-align: left; }
.step:disabled { cursor: default; }
.step .s-num { width: 24px; height: 24px; border-radius: 50%; background: #e6e0d2; color: #5c5546;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.step.active { background: var(--wine); color: #fff; }
.step.active .s-num { background: var(--gold); color: #2d0a1e; }
.step.done { color: var(--wine); cursor: pointer; }
.step.done .s-num { background: var(--wine); color: #fff; }
.wstep { display: none; }
.wstep.active { display: block; animation: fadeUp .3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wstep h2 { margin: 0 0 10px; font-size: 22px; }
.tip { background: #fdf6e3; border: 1px solid #f0dfae; border-radius: 10px; padding: 10px 14px;
  font-size: 13.5px; margin-bottom: 16px; color: #5c4a1a; line-height: 1.5; }
.werr { color: #b3261e; font-size: 13.5px; min-height: 22px; margin: 8px 0; font-weight: 600; }
.wnav { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; gap: 10px; }
.mini-btn { background: #f6f3ec; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
  font-size: 13px; font-weight: 600; cursor: pointer; color: var(--wine); }
.mini-btn:hover { border-color: var(--gold); }
.mini-btn.danger { color: #b3261e; }
.mini-btn:disabled { opacity: .6; cursor: wait; }
.row-btns { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.exp-entry, .edu-entry { border: 1px solid var(--line); border-radius: 12px; padding: 16px; margin-bottom: 14px; background: #fffdf8; }
.exp-entry label, .edu-entry label { margin-top: 10px; }
.exp-entry label:first-child, .edu-entry label:first-child { margin-top: 0; }
.ac-wrap { position: relative; }
.ac-list { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; box-shadow: var(--shadow-md); z-index: 30; display: none; overflow: hidden; }
.ac-item { padding: 10px 14px; cursor: pointer; font-size: 14px; }
.ac-item:hover { background: #f6f3ec; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.chip { background: #f6f3ec; border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 13px; cursor: pointer; font-family: inherit; }
.chip.on { background: var(--wine); color: #fff; border-color: var(--wine); cursor: default; }
.chip.on b { cursor: pointer; margin-left: 4px; font-weight: 700; }
.chip-empty { font-size: 13px; color: #675e50; }
.sugg-label { font-size: 13px; font-weight: 700; color: var(--wine); margin: 10px 0 2px; }
.sugg { margin-top: 10px; display: grid; gap: 8px; }
.sugg-opt { text-align: left; background: #fff; border: 1px solid var(--gold); border-radius: 10px;
  padding: 10px 14px; font-size: 13.5px; cursor: pointer; font-family: inherit; line-height: 1.5; }
.sugg-opt:hover { background: #fdf6e3; }
.sugg-opt.used { opacity: .55; }
.sugg-note { font-size: 13px; color: #675e50; }
.sugg-note.err { color: #b3261e; }
.skill-add { display: flex; gap: 8px; }
.skill-add input { flex: 1; }
.tpl-pick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.tpl-opt { border: 2px solid var(--line); border-radius: 12px; padding: 12px; background: #fff; cursor: pointer; text-align: center; font-family: inherit; }
.tpl-opt.active { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.tpl-opt b { display: block; margin: 8px 0 2px; font-size: 14px; }
.tpl-opt small { color: #675e50; font-size: 12px; line-height: 1.4; display: block; }
.tpl-mini { display: block; height: 92px; border-radius: 6px; background: #f6f3ec; position: relative; overflow: hidden; border: 1px solid var(--line); }
.tpl-mini i { position: absolute; display: block; border-radius: 2px; background: #d8d0bd; }
.tm-classic i:nth-child(1) { top: 12px; left: 50%; width: 44%; height: 9px; transform: translateX(-50%); background: var(--wine); }
.tm-classic i:nth-child(2) { top: 30px; left: 14%; right: 14%; height: 5px; }
.tm-classic i:nth-child(3) { top: 44px; left: 14%; right: 14%; height: 5px; }
.tm-classic i:nth-child(4) { top: 58px; left: 14%; width: 40%; height: 5px; }
.tm-side i:nth-child(1) { top: 0; bottom: 0; left: 0; width: 32%; background: var(--wine); }
.tm-side i:nth-child(2) { top: 12px; left: 40%; width: 46%; height: 9px; background: var(--wine); }
.tm-side i:nth-child(3) { top: 30px; left: 40%; right: 14%; height: 5px; }
.tm-side i:nth-child(4) { top: 42px; left: 40%; right: 22%; height: 5px; }
.tm-min i:nth-child(1) { top: 14px; left: 14%; width: 36%; height: 10px; background: #2d0a1e; }
.tm-min i:nth-child(2) { top: 36px; left: 14%; right: 14%; height: 1px; background: #c9a227; }
.tm-min i:nth-child(3) { top: 46px; left: 14%; right: 14%; height: 5px; }
.tm-min i:nth-child(4) { top: 58px; left: 14%; right: 30%; height: 5px; }
.tm-clean i:nth-child(1) { top: 12px; left: 14%; width: 42%; height: 9px; background: #2d2b27; }
.tm-clean i:nth-child(2) { top: 30px; left: 14%; right: 14%; height: 2px; background: #b9b9b9; }
.tm-clean i:nth-child(3) { top: 42px; left: 14%; right: 14%; height: 2px; background: #b9b9b9; }
.tm-clean i:nth-child(4) { top: 54px; left: 14%; right: 30%; height: 5px; }
.live-prev { border: 1px dashed var(--line); border-radius: 12px; padding: 16px; background: #fbf9f4; }
.live-prev-lbl { font-size: 11.5px; font-weight: 700; color: #675e50; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .6px; }

/* ---------- resume document templates (original designs) ---------- */
.rz-doc-wrap .rz-doc { background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif; color: #1c1a17; }
.rz-wm { background: var(--rz-dark); color: #fff; text-align: center; font-size: 10.5px; letter-spacing: 1.6px;
  padding: 9px 8px; text-transform: uppercase; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
/* ATS Classic — single column */
.tpl-classic { padding: 34px 38px; }
.tpl-classic .rz-name { text-align: center; font-size: 29px; margin: 0; color: var(--rz-dark); letter-spacing: .3px; }
.tpl-classic .rz-title { text-align: center; font-size: 14.5px; color: var(--rz-acc); font-weight: 700; margin-top: 5px; }
.tpl-classic .rz-contact { text-align: center; font-size: 12px; color: #5c5546; margin: 8px 0 2px; }
.tpl-classic h2 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1.6px; color: var(--rz-dark);
  border-bottom: 2px solid var(--rz-line); padding-bottom: 4px; margin: 20px 0 10px; }
.tpl-classic p { font-size: 13.5px; line-height: 1.6; margin: 6px 0; }
.tpl-classic ul { margin: 6px 0 8px 18px; padding: 0; }
.tpl-classic li { font-size: 13.5px; line-height: 1.6; margin-bottom: 4px; }
/* Sidebar — two column, human readers */
.tpl-sidebar .rz-cols { display: flex; }
.tpl-sidebar .rz-side { width: 32%; background: var(--rz-dark); color: #f3ecdf; padding: 26px 18px;
  -webkit-print-color-adjust: exact; print-color-adjust: exact; }
.tpl-sidebar .rz-side h3 { color: var(--rz-line); font-size: 11px; text-transform: uppercase; letter-spacing: 1.6px; margin: 0 0 8px; }
.tpl-sidebar .rz-side-sec { margin-bottom: 20px; }
.tpl-sidebar .rz-side p { font-size: 12px; line-height: 1.6; margin: 4px 0; word-break: break-word; }
.tpl-sidebar .rz-side ul { list-style: none; margin: 0; padding: 0; }
.tpl-sidebar .rz-side li { font-size: 12px; margin-bottom: 5px; padding-left: 12px; position: relative; }
.tpl-sidebar .rz-side li::before { content: "▸"; position: absolute; left: 0; color: var(--rz-line); }
.tpl-sidebar .rz-main { width: 68%; padding: 26px 28px; }
.tpl-sidebar .rz-name { font-size: 26px; margin: 0; color: var(--rz-dark); }
.tpl-sidebar .rz-title { font-size: 13.5px; color: var(--rz-acc); font-weight: 700; margin-top: 4px; }
.tpl-sidebar .rz-contact { display: none; }
.tpl-sidebar h2 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1.6px; color: var(--rz-dark);
  border-bottom: 2px solid var(--rz-line); padding-bottom: 4px; margin: 18px 0 10px; }
.tpl-sidebar p { font-size: 13px; line-height: 1.6; margin: 6px 0; }
.tpl-sidebar ul { margin: 6px 0 8px 18px; padding: 0; }
.tpl-sidebar li { font-size: 13px; line-height: 1.6; margin-bottom: 4px; }
/* Minimal — typographic */
.tpl-minimal { padding: 38px 42px; }
.tpl-minimal .rz-name { font-size: 27px; font-weight: 400; margin: 0; color: #1c1a17; }
.tpl-minimal .rz-title { font-size: 14px; color: #5c5546; margin-top: 4px; }
.tpl-minimal .rz-contact { font-size: 12px; color: #675e50; margin-top: 6px; }
.tpl-minimal .rz-sec { margin-top: 22px; border-top: 1px solid #e6e0d2; padding-top: 14px; }
.tpl-minimal h2 { font-size: 11.5px; text-transform: uppercase; letter-spacing: 2.2px; color: #675e50; margin: 0 0 8px; }
.tpl-minimal p { font-size: 13.5px; line-height: 1.65; margin: 6px 0; }
.tpl-minimal ul { margin: 6px 0 8px 18px; padding: 0; }
.tpl-minimal li { font-size: 13.5px; line-height: 1.65; margin-bottom: 4px; }
/* Clean — plain white, full-page, section dividers (default) */
.tpl-clean { padding: 0; background: #fff; aspect-ratio: 1 / 1.4142; display: flex; flex-direction: column; }
.tpl-clean .rz-wm { background: #fff; color: #767676; border: 0; padding: 10px 8px; font-size: 10px;
  letter-spacing: 1.2px; text-transform: uppercase; }
.tpl-clean .rz-wm:first-child { border-bottom: 1px dashed #e3e3e3; }
.tpl-clean .rz-wm:last-child { border-top: 1px dashed #e3e3e3; margin-top: auto; }
.tpl-clean .rz-head { text-align: center; padding: 38px 48px 0; }
.tpl-clean .rz-name { font-size: 31px; margin: 0; color: #111; letter-spacing: .3px; }
.tpl-clean .rz-contact { font-size: 12.5px; color: #333; margin: 9px 0 0; padding-bottom: 0; border-bottom: none; }
.tpl-clean .rz-sec { padding: 0 48px; margin-top: 22px; }
.tpl-clean h2 { font-size: 13.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.6px; color: #111;
  margin: 0 0 12px; padding-bottom: 5px; border-bottom: 1.5px solid #222; }
.tpl-clean p { font-size: 13.5px; line-height: 1.65; margin: 6px 0; color: #222; }
.tpl-clean ul { margin: 6px 0 8px 18px; padding: 0; }
.tpl-clean li { font-size: 13.5px; line-height: 1.65; margin-bottom: 4px; color: #222; }
.tpl-clean .rz-item { margin-bottom: 12px; }
.tpl-clean .rz-item-head { font-size: 13.5px; color: #111; }
.tpl-clean .rz-date { float: right; color: #555; font-size: 12.5px; }
.tpl-clean .rz-edu-school { font-size: 13.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: #111; }
.tpl-clean .rz-edu-degree { font-size: 13px; color: #333; margin-top: 3px; }
.rz-item { margin-bottom: 10px; }
.rz-item-head { font-size: 13.5px; }
.rz-date { float: right; color: #5c5546; font-size: 12px; }

/* ---------- print: watermarked PDF ---------- */
@media print {
  @page { size: A4; margin: 10mm; }
  body.rz-print { background: #fff; }
  body.rz-print .rz-doc { border: none; border-radius: 0; max-width: 100%; }
}
@media (max-width: 640px) {
  .tpl-pick { grid-template-columns: 1fr; }
  .tpl-sidebar .rz-cols { flex-direction: column; }
  .tpl-sidebar .rz-side, .tpl-sidebar .rz-main { width: auto; }
  .wnav { flex-wrap: wrap; }
}

/* ---------- builder extras: optional links, accents, badges ---------- */
.opt-links { display: flex; align-items: center; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.opt-hint { font-size: 12px; color: #675e50; }
.acc-row { display: flex; align-items: center; gap: 12px; margin: 2px 0 16px; flex-wrap: wrap; }
.acc-lbl { font-size: 13px; font-weight: 700; color: #5c5546; }
.acc-swatches { display: flex; gap: 8px; }
.sw { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line);
  cursor: pointer; padding: 0; }
.sw.active { box-shadow: 0 0 0 2px var(--wine), 0 2px 6px rgba(0,0,0,.2); transform: scale(1.08); }
.tpl-badge { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  background: var(--wine); color: #fff; border-radius: 999px; padding: 4px 11px; margin-top: 9px; }
.tpl-badge.gold { background: var(--gold); color: #2d0a1e; }
.rz-doc { --rz-dark: #2d0a1e; --rz-acc: #8a6f1f; --rz-line: #c9a227; overflow-wrap: anywhere; }
/* Long unbroken strings (URLs, pasted summaries) must wrap inside the resume paper. */
.rz-doc p, .rz-doc li, .rz-doc h1, .rz-doc h2, .rz-doc h3 { overflow-wrap: anywhere; }
/* Skill-chip remove control is a real button (accessible), styled like the old × mark. */
.chip.on .skill-x { background: none; border: none; color: inherit; cursor: pointer; margin-left: 4px;
  font-weight: 700; font-size: inherit; font-family: inherit; padding: 0 2px; line-height: 1; }
.chip.on .skill-x:hover { color: var(--gold); }

/* wizard nav buttons: dark text on light cards (ghost was white-on-white) */
.wizard .btn.ghost, .wnav .btn.ghost { background: #fff; color: var(--wine); border: 1.5px solid var(--line); }
.wizard .btn.ghost:hover, .wnav .btn.ghost:hover { border-color: var(--gold); background: #fdf6e3; box-shadow: none; }

/* Wizard repeatable entries — header pill + full-width fields */
.exp-head, .edu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.exp-num, .edu-num { font-weight: 800; font-size: 14px; color: var(--wine); background: #f7ecd4; border: 1px solid var(--gold); padding: 5px 14px; border-radius: 999px; }
.exp-entry .field, .edu-entry .field { margin-bottom: 12px; }
.print-tip { text-align: center; color: #675e50; font-size: 13px; margin: 10px 0 0; }

/* legal pages */
.card.legal h2 { margin-top: 26px; font-size: 17px; }
.card.legal h2:first-child { margin-top: 0; }
.card.legal ul { padding-left: 20px; margin: 10px 0; }
.card.legal li { margin-bottom: 8px; font-size: 14.5px; line-height: 1.6; }
.card.legal p { font-size: 14.5px; line-height: 1.65; }

/* resume dropzone */
.dropzone { border: 2px dashed var(--line); border-radius: 14px; padding: 26px 20px; text-align: center;
  cursor: pointer; background: #fffdf8; transition: border-color .2s, background .2s; margin-bottom: 14px; }
.dropzone:hover { border-color: var(--gold); }
.dropzone.over { border-color: var(--gold); background: #faf4e6; }
.dz-icon { font-size: 34px; }
.dropzone p { margin: 6px 0; }
.dz-sub { color: var(--muted); font-size: 14px; }
.dz-status { font-size: 13.5px; color: var(--muted); min-height: 22px; font-weight: 600; margin-bottom: 0; }
.link-btn { background: none; border: none; color: var(--wine); font-weight: 700; cursor: pointer;
  text-decoration: underline; font-size: inherit; font-family: inherit; padding: 0; }
