/* ==========================================================================
   landing.css — HomeCV by Passpo marketing landing page.
   Imports AFTER tokens.css + coverage-model.css. All color/type from tokens.
   Accent emphasis driven by [data-accent] on <html>; density by [data-density].
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); overflow-x: hidden; font-size: 17px; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: rgba(23,95,100,0.14); }

/* Accent emphasis tweak — gold-forward swaps primary moments to gold. */
html[data-accent="gold"] { --accent: #9d7637; --accent-soft: #b3884a; }

/* Density tweak — scales the rhythm between sections. */
:root { --band-y: 104px; }
html[data-density="airy"]    { --band-y: 136px; }
html[data-density="compact"] { --band-y: 76px; }

/* ─── Shared layout primitives ─────────────────────────────────────────── */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px; }
.band { padding: var(--band-y) 0; }
.band-paper { background: var(--surface); border-block: 1px solid var(--line); }
.band-ink {
  background:
    radial-gradient(120% 90% at 50% -20%, rgba(16,96,101,0.55), transparent 60%),
    var(--brown);
  color: #efe9da;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
html[data-accent="gold"] .eyebrow { color: var(--gold); }
.band-ink .eyebrow { color: var(--gold-soft); }

.h-section {
  font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em;
  font-size: clamp(30px, 4vw, 46px); line-height: 1.05; margin: 14px 0 0;
  text-wrap: balance;
}
.lede {
  font-size: 18px; line-height: 1.6; color: var(--brown-3);
  max-width: 56ch; text-wrap: pretty; margin: 18px 0 0;
}
.band-ink .lede { color: rgba(239,233,218,0.82); }
.section-head { max-width: 60ch; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head.center .lede { margin-inline: auto; }

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  padding: 13px 22px; border-radius: var(--radius);
  border: 1px solid transparent; transition: all .15s ease; white-space: nowrap;
}
.btn i { font-size: 18px; }
.btn-primary { background: var(--accent); color: #f3efe3; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-soft); border-color: var(--accent-soft); transform: translateY(-1px); }
.btn-ghost { background: var(--bg); color: var(--brown-2); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-onink { background: var(--gold-soft); color: #2a1d09; border-color: var(--gold-soft); }
.btn-onink:hover { background: #e2bd6e; border-color: #e2bd6e; transform: translateY(-1px); }
.btn-ghost-ink { background: transparent; color: #efe9da; border-color: rgba(239,233,218,0.35); }
.btn-ghost-ink:hover { border-color: rgba(239,233,218,0.7); }
/* in-page CTAs: refined to match the header button (compact, softer corner, subtle lift) */
.btn-lg { padding: 11px 20px; font-size: 14.5px; border-radius: 11px; }
.btn-lg.btn-primary { box-shadow: 0 6px 16px -10px rgba(36,30,22,0.5); }
.btn-lg i { font-size: 16px; }

/* ─── Top nav ──────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  padding-top: 14px;
  transition: padding .25s ease;
}
.nav .wrap { transition: max-width .25s ease, padding .25s ease; }
/* the floating, detached, translucent pill */
.nav-inner {
  display: flex; align-items: center; gap: 28px; height: 64px;
  position: relative; padding: 0 14px 0 22px;
  background: rgba(248,247,242,0.97);
  -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(36,30,22,0.08);
  border-radius: 20px;
  box-shadow: 0 10px 34px -22px rgba(36,30,22,0.45);
  transition: border-radius .22s ease, box-shadow .25s ease, background .25s ease;
}
.nav.is-stuck .nav-inner { box-shadow: 0 16px 44px -24px rgba(36,30,22,0.55); background: rgba(250,249,245,0.99); }
/* when a menu is open, the pill squares its bottom so it merges with the panel */
.nav-inner:has(.nav-item.open) { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-logo { height: 30px; width: auto; border-radius: 7px; }
.brand-div { width: 1px; height: 22px; background: var(--line-strong); }
.brand-wm { font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--brown); line-height: 1; }
.brand-wm small {
  display: block; font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--brown-4); margin-top: 2px;
}
/* Signature lockup: "Passpo" handwriting carries the mark, "HOMECV" is a quiet tag */
.brand-sig {
  font-family: 'Caveat', cursive; font-weight: 600;
  font-size: 33px; line-height: 1; color: var(--brown);
  letter-spacing: 0.005em; margin-top: -3px; padding-right: 1px;
}
.brand-tag {
  font-family: var(--sans); font-weight: 600;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brown-4); line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-link {
  font-size: 15.5px; font-weight: 500; color: var(--brown-3);
  transition: color .14s ease; white-space: nowrap;
}
.nav-link:hover, .nav-link.is-active { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-signin { font-size: 15.5px; font-weight: 500; color: var(--brown-3); }
.nav-signin:hover { color: var(--accent); }
/* nav CTA: more compact & refined than the default .btn */
.nav-actions .btn-primary {
  padding: 9px 17px; font-size: 14.5px; font-weight: 500;
  border-radius: 11px;
  box-shadow: 0 6px 16px -10px rgba(36,30,22,0.5);
}
.nav-actions .btn-primary i { font-size: 16px; }
.nav-toggle { display: none; }

/* ─── Mega-menu dropdowns ──────────────────────────────────────────────── */
.nav-item { position: static; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--sans); font-size: 15.5px; font-weight: 500;
  color: var(--brown-3); background: none; border: 0; padding: 0; cursor: pointer;
  white-space: nowrap; transition: color .14s ease;
}
.nav-trigger .ti-chevron-down { font-size: 15px; color: var(--brown-4); transition: transform .2s ease, color .14s ease; }
.nav-trigger:hover,
.nav-item.open .nav-trigger { color: var(--accent); }
.nav-item.open .nav-trigger .ti-chevron-down { transform: rotate(180deg); color: var(--accent); }

.mega {
  position: absolute; top: 100%; left: 0; right: 0;
  transform: translateY(-6px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.mega-card {
  width: 100%;
  background: rgba(249,248,243,0.98);
  -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(36,30,22,0.08); border-top: 0;
  border-radius: 0 0 20px 20px; padding: 22px 26px 26px;
  box-shadow: 0 26px 50px -28px rgba(36,30,22,0.42);
}
.mega-head {
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brown-4); padding: 0 12px 16px;
}
.mega-grid { display: grid; gap: 6px; }
.mega--product .mega-grid { grid-template-columns: repeat(3, 1fr); }
.mega--cases .mega-grid { grid-template-columns: repeat(4, 1fr); }
.mega-item {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 15px 16px; border-radius: 13px;
  transition: background .14s ease;
}
.mega-item:hover { background: var(--surface-2); }
.mega-ic {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface-2); color: var(--accent);
  display: grid; place-items: center; font-size: 22px;
  transition: background .14s ease, color .14s ease;
}
.mega-item:hover .mega-ic { background: var(--accent); color: #fff; }
.mega-tx { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mega-tx b { font-size: 16px; font-weight: 600; color: var(--brown); }
.mega-tx small { font-size: 14px; line-height: 1.45; color: var(--brown-3); text-wrap: pretty; }

.nav-item.open > .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}

/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(80% 60% at 88% 0%, rgba(179,136,74,0.07), transparent 55%),
    radial-gradient(70% 70% at 0% 100%, rgba(23,95,100,0.05), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid; grid-template-columns: 1.02fr 1.05fr; gap: 56px; align-items: center;
  padding: 84px 0 88px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--brown-3);
  background: var(--surface); border: 1px solid var(--line);
  padding: 6px 13px 6px 9px; border-radius: 100px; margin-bottom: 26px;
}
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  font-family: var(--serif); font-weight: 600; letter-spacing: -0.015em;
  font-size: clamp(40px, 5.2vw, 66px); line-height: 1.02; margin: 0;
  color: var(--brown); text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--accent); }
html[data-accent="gold"] .hero h1 em { color: var(--gold); }
.hero-sub { font-size: 18px; line-height: 1.6; color: var(--brown-3); max-width: 46ch; margin: 24px 0 0; text-wrap: pretty; }

/* address form */
.addr-form { margin-top: 34px; max-width: 480px; }

/* request-access (centered variant of the address form) */
.ra-form { margin: 28px auto 0; }
.ra-form .addr-note { justify-content: center; }
.ra-toggle {
  display: flex; gap: 4px; margin: 0 auto 14px; width: max-content;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 4px;
}
.ra-tab {
  font-family: var(--sans); font-size: 13.5px; font-weight: 600; color: var(--brown-4);
  border: none; background: none; cursor: pointer; padding: 7px 16px; border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.ra-tab:hover { color: var(--brown); }
.ra-tab.is-active { background: var(--bg); color: var(--accent); box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.addr-note.is-sent { color: var(--accent); font-weight: 600; }
.addr-note.is-sent i { color: var(--accent); }

.addr-row {
  display: flex; gap: 10px; align-items: stretch;
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 7px 7px 7px 16px; transition: border-color .15s ease, box-shadow .15s ease;
}
.addr-row:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(23,95,100,0.09); }
.addr-row > i { align-self: center; font-size: 20px; color: var(--brown-4); }
.addr-input {
  flex: 1 1 auto; min-width: 0; border: none; background: none; outline: none;
  font-family: var(--sans); font-size: 16px; color: var(--brown);
}
.addr-input::placeholder { color: var(--brown-4); }
.addr-note {
  display: flex; align-items: center; gap: 8px; margin-top: 13px;
  font-size: 13.5px; color: var(--brown-4);
}
.addr-note i { font-size: 15px; color: var(--accent); }

/* autocomplete dropdown */
.addr-wrap { position: relative; }
.addr-list {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 20;
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 10px;
  box-shadow: 0 22px 48px -18px rgba(36,30,22,0.4); overflow: hidden;
}
.addr-opt { display: flex; align-items: center; gap: 12px; padding: 13px 16px; font-size: 14.5px; color: var(--brown-2); }
.addr-opt + .addr-opt { border-top: 1px solid var(--line); }
.addr-opt:hover, .addr-opt.is-hl { background: var(--surface-2); }
.addr-opt i { color: var(--brown-4); font-size: 18px; }
.addr-opt b { font-weight: 600; color: var(--brown); }

.hero-assure { display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.hero-assure span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--brown-4); }
.hero-assure i { font-size: 16px; color: var(--accent); }

/* ─── Hero live demo (the magic moment) ────────────────────────────────── */
.demo {
  position: relative; min-height: 470px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 40px 90px -50px rgba(36,30,22,0.5);
  overflow: hidden;
}
.demo-chrome {
  display: flex; align-items: center; gap: 8px; padding: 13px 16px;
  border-bottom: 1px solid var(--line); background: var(--bg);
}
.demo-chrome .lights { display: flex; gap: 6px; }
.demo-chrome .lights i { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); }
.demo-chrome .url {
  flex: 1 1 auto; font-family: var(--mono); font-size: 11px; color: var(--brown-4);
  text-align: center; letter-spacing: 0.02em;
}
.demo-stage { position: relative; padding: 26px; min-height: 416px; }

/* state: idle */
.demo-state { animation: demoIn .5s cubic-bezier(.16,.84,.34,1) both; }
@keyframes demoIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .demo-state, .scan-card, .reveal-card { animation: none !important; } }
.demo-idle { display: flex; flex-direction: column; height: 364px; }
.demo-idle-head { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; }
.demo-idle-mark {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(23,95,100,0.08); color: var(--accent); font-size: 21px;
}
.demo-idle-mark.gold { background: rgba(179,136,74,0.14); color: var(--gold); }
.demo-idle h4 { font-family: var(--serif); font-size: 19px; font-weight: 600; margin: 0; color: var(--brown); }
.demo-idle p { font-size: 12.5px; color: var(--brown-4); margin: 2px 0 0; }
.demo-skel { display: flex; flex-direction: column; gap: 11px; margin-top: 4px; }
.skel-row { display: flex; align-items: center; gap: 13px; padding: 13px 15px; background: var(--bg); border: 1px solid var(--line); border-radius: 9px; }
.skel-ic { width: 30px; height: 30px; border-radius: 7px; background: var(--surface-2); flex: 0 0 auto; display: grid; place-items: center; color: var(--brown-4); font-size: 16px; }
.skel-lines { flex: 1 1 auto; display: flex; flex-direction: column; gap: 6px; }
.skel-lines i { height: 8px; border-radius: 100px; background: var(--surface-2); display: block; }
.skel-lines i:first-child { width: 60%; }
.skel-lines i:last-child { width: 38%; background: var(--surface-3); height: 6px; }
.demo-idle-foot { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--brown-4); padding-top: 16px; }
.demo-idle-foot i { font-size: 14px; color: var(--accent); }

/* state: scanning */
.scan-card { position: absolute; inset: 0; background: var(--brown); color: #efe9da; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; text-align: center; animation: demoIn .4s ease both; }
.scan-ring { position: relative; width: 132px; height: 132px; margin-bottom: 30px; }
.scan-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.scan-ring .ring-bg { fill: none; stroke: rgba(255,255,255,0.12); stroke-width: 3; }
.scan-ring .ring-fg { fill: none; stroke: var(--gold-soft); stroke-width: 3; stroke-linecap: round; transition: stroke-dashoffset .35s linear; }
.scan-pct { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-size: 38px; color: #f5f2e7; font-variant-numeric: tabular-nums; }
.scan-title { font-family: var(--serif); font-size: 21px; color: #f5f2e7; margin-bottom: 20px; font-weight: 600; }
.scan-lines { height: 22px; overflow: hidden; position: relative; width: 320px; max-width: 78%; }
.scan-line { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 9px; font-size: 12.5px; color: rgba(239,233,218,0.90); font-family: var(--mono); }
.scan-line i { color: var(--gold-soft); font-size: 14px; }
.scan-line.done i { color: #8fae6e; }

/* state: revealed — reuse cv2-card but compact */
.reveal-card { animation: revealUp .7s cubic-bezier(.16,.84,.34,1) both; }
@keyframes revealUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.reveal-photo {
  position: relative; height: 132px; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--line-strong); margin-bottom: 16px;
}
.reveal-photo .ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(36,30,22,0.05) 0 12px, rgba(36,30,22,0.02) 12px 24px),
    linear-gradient(160deg, #cbb98f, #a98f63 60%, #7a4f2a);
}
.reveal-photo .ph-found {
  position: absolute; left: 12px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 600; color: #fff;
  background: rgba(21,19,15,0.5); padding: 5px 11px; border-radius: 100px;
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
.reveal-photo .ph-found i { font-size: 14px; color: #9dc47b; }
.reveal-name { display: flex; align-items: baseline; gap: 9px; }
.reveal-name h3 { font-family: var(--serif); font-weight: 600; font-size: 27px; color: var(--brown); margin: 0; line-height: 1.1; }
.reveal-name i { font-size: 15px; color: var(--brown-4); }
.reveal-addr { font-size: 12.5px; color: var(--brown-4); margin: 5px 0 0; display: flex; align-items: center; gap: 6px; }
.reveal-addr i { font-size: 14px; }
.reveal-suggest { font-size: 12px; color: var(--brown-4); margin: 12px 0 16px; line-height: 1.5; padding: 10px 13px; background: var(--bg); border: 1px solid var(--line); border-radius: 8px; }
.reveal-suggest b { color: var(--brown-2); font-weight: 600; }
.reveal-cta { display: flex; gap: 10px; margin-top: 16px; }
.reveal-cta .btn { flex: 1 1 auto; }

/* compact coverage strip inside the reveal */
.mini-cov { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding: 14px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; }
.mini-cov-num { font-family: var(--serif); font-weight: 600; font-size: 46px; line-height: 0.9; color: var(--accent); font-variant-numeric: tabular-nums; }
.mini-cov-lab { font-size: 12px; color: var(--brown-3); letter-spacing: 0.02em; margin-top: 4px; }
.mini-cov-clusters { display: flex; flex-direction: column; gap: 7px; }
.mini-cl { display: flex; align-items: center; gap: 9px; font-size: 12px; }
.mini-cl .sp { width: 9px; height: 9px; border-radius: 2px; flex: 0 0 auto; }
.mini-cl b { font-family: var(--serif); font-size: 16px; color: var(--brown); font-weight: 600; min-width: 22px; }
.mini-cl span { color: var(--brown-3); }

/* ─── Logos / trust strip ──────────────────────────────────────────────── */
.trust-strip { padding: 30px 0; border-bottom: 1px solid var(--line); }
.trust-strip .wrap { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: var(--brown-3); font-weight: 500; }
.trust-item i { font-size: 18px; color: var(--accent); }
.trust-sep { width: 1px; height: 18px; background: var(--line-strong); }

/* ─── Steps (how it works) ─────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.step-card { position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 28px 26px 30px; }
.step-num { font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--accent); letter-spacing: 0.1em; }
.step-icn { width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; background: var(--surface-2); color: var(--accent); font-size: 24px; margin: 16px 0 18px; }
.step-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin: 0 0 9px; color: var(--brown); }
.step-card p { font-size: 15.5px; line-height: 1.55; color: var(--brown-3); margin: 0; text-wrap: pretty; }

/* ─── Coverage explainer ───────────────────────────────────────────────── */
.cov-explain { display: grid; grid-template-columns: 1fr 1.04fr; gap: 60px; align-items: center; }
.cov-points { display: flex; flex-direction: column; gap: 20px; margin-top: 34px; }
.cov-point { display: flex; gap: 15px; }
.cov-point-ic { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; background: var(--surface-2); color: var(--accent); font-size: 19px; }
.cov-point h4 { font-size: 16px; font-weight: 600; margin: 2px 0 4px; color: var(--brown); }
.cov-point p { font-size: 16px; line-height: 1.5; color: var(--brown-4); margin: 0; text-wrap: pretty; }
.cov-point p b { color: var(--brown-2); font-weight: 600; }
.cov-disclaim {
  display: flex; gap: 10px; margin-top: 30px; padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  font-size: 12.5px; line-height: 1.55; color: var(--brown-4); text-wrap: pretty;
}
.cov-disclaim i { font-size: 17px; color: var(--brown-4); flex: 0 0 auto; }
/* the card column */
.cov-card-col { position: relative; }
.cov-card-col .cv2-card { box-shadow: 0 40px 90px -54px rgba(36,30,22,0.55); }

/* ─── Audiences ────────────────────────────────────────────────────────── */
.aud-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 50px; }
.aud {
  position: relative; display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 26px 26px; transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.aud:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 22px 44px -30px rgba(36,30,22,0.5); }
.aud-ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 11px; display: grid; place-items: center; background: var(--surface-2); color: var(--accent); font-size: 25px; }
.aud-tag { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.aud h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; margin: 5px 0 8px; color: var(--brown); }
.aud p { font-size: 16px; line-height: 1.55; color: var(--brown-3); margin: 0 0 12px; text-wrap: pretty; }
.aud ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.aud li { display: flex; align-items: flex-start; gap: 9px; font-size: 16px; color: var(--brown-3); }
.aud li i { font-size: 15px; color: var(--accent); flex: 0 0 auto; margin-top: 1px; }
.aud li.no i { color: var(--brown-4); }
.aud li.no { color: var(--brown-4); }

/* ─── Trust & control (ink band) ───────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.trust-tenets { display: flex; flex-direction: column; gap: 4px; margin-top: 38px; }
.tenet { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid rgba(239,233,218,0.14); }
.tenet:last-child { border-bottom: 1px solid rgba(239,233,218,0.14); }
.tenet-ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(239,233,218,0.08); color: var(--gold-soft); font-size: 20px; }
.tenet h4 { font-size: 17px; font-weight: 600; margin: 4px 0 5px; color: #f5f2e7; }
.tenet p { font-size: 16px; line-height: 1.55; color: rgba(239,233,218,0.72); margin: 0; text-wrap: pretty; }
.trust-quote {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); line-height: 1.22;
  color: #f5f2e7; font-weight: 500; text-wrap: balance;
}
.trust-quote b { color: var(--gold-soft); font-weight: 500; }
.trust-quote-by { font-family: var(--sans); font-size: 13px; color: rgba(239,233,218,0.6); margin-top: 22px; letter-spacing: 0.02em; }

/* ─── Sample HomeCV ────────────────────────────────────────────────────── */
.sample-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.sample-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-top: 30px; }
.sf { background: var(--bg); padding: 18px 20px; }
.sf-k { font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brown-4); font-weight: 600; }
.sf-v { font-family: var(--serif); font-size: 24px; color: var(--brown); margin-top: 5px; line-height: 1.1; }
.sf-v small { font-family: var(--sans); font-size: 12px; color: var(--brown-4); font-weight: 400; }
.sample-id { font-family: var(--mono); font-size: 11px; color: var(--brown-4); letter-spacing: 0.04em; margin-top: 18px; display: flex; align-items: center; gap: 8px; }
.sample-id i { font-size: 14px; color: var(--gold); }

/* ─── FAQ ──────────────────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 48px auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; text-align: left; padding: 26px 4px;
  font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--brown);
}
.faq-q:hover { color: var(--accent); }
.faq-q .chev { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--brown-3); transition: all .2s ease; font-size: 17px; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 4px 28px; font-size: 17px; line-height: 1.62; color: var(--brown-3); max-width: 64ch; text-wrap: pretty; }
.faq-a-inner b { color: var(--brown-2); font-weight: 600; }

/* FAQ — calm two-column card variant (add .faq--cards to a .faq-list).
   Bigger air, comfortable question size, soft cards, clear expand affordance. */
.faq--cards {
  max-width: 1080px; margin: 46px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  border-top: 0;
}
.faq--cards .faq-item {
  align-self: start;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 4px 26px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.faq--cards .faq-item:hover { border-color: var(--line-strong); box-shadow: 0 14px 30px -22px rgba(20,19,15,0.4); }
.faq--cards .faq-item.open { background: #fff; border-color: var(--line-strong); }
.faq--cards .faq-q { padding: 24px 0; font-size: 20px; line-height: 1.32; gap: 16px; }
.faq--cards .faq-a-inner { padding: 0 0 26px; max-width: none; }
@media (max-width: 760px) { .faq--cards { grid-template-columns: 1fr; } }

/* ─── Final CTA ────────────────────────────────────────────────────────── */
.cta-final { text-align: center; }
.cta-final h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 4.4vw, 52px); line-height: 1.05; margin: 16px 0 0; color: #f5f2e7; text-wrap: balance; }
.cta-final .lede { margin: 20px auto 0; }
.cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.cta-fine { font-size: 13px; color: rgba(239,233,218,0.55); margin-top: 26px; }

/* ─── Footer ───────────────────────────────────────────────────────────── */
.footer { background: var(--surface); border-top: 1px solid var(--line); padding: 60px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--brown-4); max-width: 34ch; text-wrap: pretty; }
.footer-col h5 { font-size: 12.5px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--brown-4); font-weight: 600; margin: 0 0 16px; }
.footer-col a { display: block; font-size: 16px; color: var(--brown-3); padding: 6px 0; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-legal { font-size: 13px; color: var(--brown-4); max-width: 72ch; line-height: 1.55; text-wrap: pretty; }
.footer-meta { font-size: 13px; color: var(--brown-4); white-space: nowrap; }
.footer-end { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.footer-social { display: flex; align-items: center; gap: 14px; }
.footer-soc-link { color: var(--brown-4); font-size: 19px; line-height: 1; transition: color .15s; text-decoration: none; display: flex; }
.footer-soc-link:hover { color: var(--accent); }

/* ─── Reveal-on-scroll ─────────────────────────────────────────────────── */
.rise { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,.84,.34,1), transform .7s cubic-bezier(.16,.84,.34,1); }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rise { opacity: 1; transform: none; transition: none; } }

/* ─── Page breadcrumb bar (shared across all product + use-case pages) ─── */
.page-crumb {
  position: static;
  background: transparent;
  border-bottom: 0;
}
.page-crumb-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 40px; gap: 16px;
}
.crumb-trail { display: flex; align-items: center; gap: 7px; min-width: 0; }
.crumb-link {
  font-size: 13px; font-weight: 500; color: var(--brown-4);
  transition: color .14s ease; white-space: nowrap;
}
.crumb-link:hover { color: var(--accent); }
.crumb-link--mid { cursor: default; }
.crumb-sep { display: flex; align-items: center; color: var(--brown-4); flex: 0 0 auto; }
.crumb-sep i { font-size: 12px; }
.crumb-cur {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--brown); white-space: nowrap;
}
.crumb-cur i { font-size: 14px; color: var(--accent); }
.crumb-section {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500; color: var(--brown-4);
  white-space: nowrap; transition: opacity .25s ease;
}
.crumb-section:empty { opacity: 0; pointer-events: none; }
.crumb-section i { font-size: 13px; color: var(--accent); }
@media (max-width: 600px) { .crumb-section { display: none; } }

/* ─── Request HomeCV modal (shared — used on Buyers + Dashboard) ─────── */
.rq-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(21,19,15,0.52); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.rq-overlay.is-open { opacity: 1; pointer-events: all; }
.rq-modal {
  position: relative; background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: 20px; padding: 40px 42px; max-width: 560px; width: 100%;
  box-shadow: 0 60px 120px -40px rgba(21,19,15,0.48);
  transform: translateY(14px); transition: transform 0.22s ease;
}
.rq-overlay.is-open .rq-modal { transform: translateY(0); }
@media (max-width: 600px) { .rq-modal { padding: 28px 22px; } }
.rq-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--surface); color: var(--brown-3); cursor: pointer;
  display: grid; place-items: center; font-size: 16px; transition: background 0.14s, color 0.14s;
}
.rq-close:hover { background: var(--surface-3); color: var(--brown); }
.rq-modal-ic {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(23,95,100,0.10); color: var(--accent); font-size: 24px; margin-bottom: 16px;
}
.rq-modal-title { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--brown); margin: 0 0 6px; }
.rq-modal-sub { font-size: 13.5px; color: var(--brown-4); margin: 0 0 28px; text-wrap: pretty; line-height: 1.5; }
.rq-form { display: flex; flex-direction: column; gap: 18px; }
.rq-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .rq-field-row { grid-template-columns: 1fr; } }
.rq-field { display: flex; flex-direction: column; gap: 6px; }
.rq-field label { font-size: 12.5px; font-weight: 600; color: var(--brown-2); letter-spacing: 0.02em; }
.rq-field input, .rq-field textarea {
  font-family: var(--sans); font-size: 16px; color: var(--brown);
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 9px; padding: 10px 13px; outline: none; resize: vertical; line-height: 1.5;
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
}
.rq-field input::placeholder, .rq-field textarea::placeholder { color: var(--brown-4); }
.rq-field input:focus, .rq-field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(23,95,100,0.12);
}
.rq-form-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; margin-top: 4px; }
.rq-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 0 8px; gap: 14px; }
.rq-success-ic { width: 58px; height: 58px; border-radius: 50%; background: rgba(93,122,61,0.12); color: var(--success); font-size: 28px; display: grid; place-items: center; }
.rq-success h4 { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--brown); margin: 0; }
.rq-success p { font-size: 16px; color: var(--brown-4); margin: 0; max-width: 34ch; line-height: 1.55; text-wrap: pretty; }

/* ─── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-grid, .cov-explain, .trust-grid, .sample-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-grid { padding: 56px 0 64px; }
  .demo { min-height: 0; }
  .aud-grid { grid-template-columns: 1fr; }
  .cov-explain .cov-card-col { max-width: 460px; }
  .trust-quote { order: -1; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .nav-links, .nav-signin { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .sample-facts { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-assure { gap: 14px 22px; }
}
