/* ============================================================
   Persōna — shared stylesheet (dark/metallic system)
   Palette sampled from the brand reference: warm charcoal ground,
   warm pewter/platinum metal, no cold blue-chrome.
   Display: Cormorant (italic-forward, echoes the logotype's sweep)
   Body:    IBM Plex Sans
   NOTE: logo is a styled text placeholder (.brand-text) until the
   final mark file is supplied — swap for <img> once available.
   ============================================================ */

:root {
  --ink: #17171A;
  --panel: #1D1D21;
  --panel-2: #242327;
  --platinum: #B8AA9C;
  --platinum-light: #DCD3C8;
  --gold: #C9A876;
  --text-hi: #EEEAE4;
  --text-body: #C6C2BB;
  --text-muted: #8B867F;
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.18);
  --risk-low: #7C93A6;
  --risk-mod: #C9A876;
  --risk-high: #BC7C4E;
  --risk-crit: #A44F45;
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text-body);
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

h1, h2, h3 {
  font-family: 'Cormorant', 'Iowan Old Style', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  margin: 0;
  color: var(--text-hi);
}
h1 { font-size: 58px; line-height: 1.1; }
h2 { font-size: 38px; line-height: 1.2; }
h3 { font-size: 23px; line-height: 1.35; font-weight: 600; }
p { margin: 0 0 18px 0; }
.lede { font-size: 20px; line-height: 1.6; color: var(--text-body); max-width: 46ch; font-style: normal; }
.muted { color: var(--text-muted); }
.small { font-size: 14px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon { height: 30px; width: auto; display: block; border-radius: 2px; }
.brand-text {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 27px;
  color: var(--text-hi);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-nav { border-bottom: 1px solid var(--line); background: var(--ink); }
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.site-nav .links { display: flex; align-items: center; gap: 36px; font-size: 14px; font-weight: 500; }
.site-nav .links a:not(.btn) { text-decoration: none; color: var(--text-body); font-family: 'IBM Plex Sans', sans-serif; letter-spacing: 0.04em; }
.site-nav .links a:not(.btn):hover { color: var(--platinum-light); }
.site-nav .links a.active { color: var(--platinum); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 2px; font-weight: 600; font-size: 14px;
  letter-spacing: 0.03em; text-decoration: none; border: 1px solid transparent;
  cursor: pointer; font-family: 'IBM Plex Sans', sans-serif;
}
.btn-primary { background: var(--platinum); color: #1A1A1A; }
.btn-primary:hover { background: var(--platinum-light); }
.btn.small-btn { padding: 8px 16px; font-size: 13px; white-space: nowrap; }
.btn-ghost { border-color: var(--line-strong); color: var(--text-hi); background: transparent; }
.btn-ghost:hover { border-color: var(--platinum); color: var(--platinum-light); }

.hero-banner {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-banner-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.62) saturate(0.85) blur(0.5px);
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 38%, rgba(23,23,26,0.15) 0%, rgba(23,23,26,0.55) 70%, rgba(23,23,26,0.85) 100%),
    linear-gradient(180deg, rgba(23,23,26,0.55) 0%, rgba(23,23,26,0.25) 30%, rgba(23,23,26,0.65) 100%);
}
.hero-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 90px 32px;
}
.hero-lockup { width: 300px; height: auto; margin-bottom: 28px; }
.hero-banner-content h1 {
  color: var(--text-hi);
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.lede.center { margin: 22px auto 0; text-align: center; }
.cta-row { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }

.trust-badge { display: flex; align-items: center; gap: 10px; justify-content: flex-start; margin-top: 22px; flex-wrap: wrap; }
.trust-badge.center { justify-content: center; }

.trustbox-mock {
  display: inline-flex;
  flex-direction: column;
  gap: 9px;
  background: #FFFFFF;
  border-radius: 4px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.45);
}
.trustbox-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #191919;
}
.trustbox-header .tb-star-icon { color: #00B67A; font-size: 18px; line-height: 1; }
.trustbox-stars-row { display: flex; gap: 3px; }
.trustbox-square {
  width: 26px;
  height: 26px;
  background: #00B67A;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trustbox-square span { color: #fff; font-size: 15px; line-height: 1; }
.trustbox-score {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  color: #191919;
}
.trustbox-score strong { font-weight: 700; }
.trustbox-mock .mock-note {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 10px;
  color: #999;
  margin-top: -2px;
}

/* ---------- fixed rotating testimonial widget ---------- */
.testimonial-widget {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: var(--panel-2);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 18px 20px 16px;
  box-shadow: 0 20px 50px -18px rgba(0,0,0,0.6);
  z-index: 500;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.testimonial-widget.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.testimonial-widget .tw-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.testimonial-widget .tw-close:hover { color: var(--text-hi); }
.testimonial-widget .tw-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 8px; }
.testimonial-widget blockquote {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-hi);
  margin: 0 0 10px 0;
  min-height: 72px;
  transition: opacity 0.35s ease;
}
.testimonial-widget blockquote.tw-fade { opacity: 0; }
.testimonial-widget .tw-attrib {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12.5px;
  color: var(--text-muted);
  transition: opacity 0.35s ease;
}
.testimonial-widget .tw-attrib.tw-fade { opacity: 0; }
.testimonial-widget .tw-attrib strong { color: var(--platinum); font-weight: 600; }
.testimonial-widget .tw-dots { display: flex; gap: 5px; margin-top: 12px; }
.testimonial-widget .tw-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--line-strong); transition: background 0.3s ease; }
.testimonial-widget .tw-dot.active { background: var(--platinum); }

@media (max-width: 620px) {
  .testimonial-widget { left: 16px; right: 16px; bottom: 16px; width: auto; }
}

.cols-2-uneven { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }

.report-card {
  background: rgba(36,35,39,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 28px 28px 10px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.55);
}
.report-card .rc-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 6px; }
.report-card .rc-head .rc-title { font-weight: 600; font-size: 14.5px; color: var(--text-hi); font-family: 'IBM Plex Sans', sans-serif; }
.report-card .rc-head .rc-sub { color: var(--text-muted); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; }
.rc-row { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid var(--line); }
.rc-row:last-child { border-bottom: none; }
.rc-row .rc-name { font-size: 14.5px; color: var(--text-body); }
.rc-row .rc-name .rc-hint { display: block; color: var(--text-muted); font-size: 12.5px; margin-top: 2px; }
.rc-tag { font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; padding: 5px 12px; border-radius: 20px; color: #17171A; white-space: nowrap; }
.rc-tag.low { background: var(--risk-low); }
.rc-tag.mod { background: var(--risk-mod); }
.rc-tag.high { background: var(--risk-high); }
.rc-tag.crit { background: var(--risk-crit); color: #F2E9E6; }

section { padding: 92px 0; background: var(--ink); }
section.alt { background: var(--panel); }
.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head h2 { margin-bottom: 16px; }
.hr { border: none; border-top: 1px solid var(--line); margin: 0; }

.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px; }
.aud h3 { margin-bottom: 10px; }
.aud .tag { display: inline-block; font-size: 12px; color: var(--platinum); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; font-family: 'IBM Plex Sans', sans-serif; }

.included-list { border-top: 1px solid var(--line); }
.included-row { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.included-row h3 { color: var(--text-hi); }
.included-row p { margin: 0; color: var(--text-body); }

.steps { counter-reset: step; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 28px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.step:first-child { border-top: 1px solid var(--line); }
.step .num { counter-increment: step; font-family: 'Cormorant', serif; font-style: italic; font-size: 28px; color: var(--platinum); }
.step .num::before { content: counter(step); }

.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { text-align: left; padding: 18px 16px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 15.5px; color: var(--text-body); }
.price-table thead th { font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); border-bottom: 2px solid var(--platinum); padding-bottom: 14px; }
.price-table td.price { font-weight: 600; white-space: nowrap; color: var(--text-hi); }
.price-table td.tier { font-weight: 600; color: var(--text-hi); }
.price-table .was { color: var(--text-muted); text-decoration: line-through; font-weight: 400; margin-right: 8px; }
.price-table .now { color: var(--gold); }
.intro-banner { background: rgba(201,168,118,0.08); border: 1px solid rgba(201,168,118,0.35); border-radius: 3px; padding: 16px 20px; font-size: 14.5px; color: var(--text-body); margin-bottom: 28px; }
.intro-banner strong { color: var(--text-hi); }

.cta-band { background: var(--panel-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 80px 0; }
.cta-band .lede { color: var(--text-body); }

.faq-item { border-bottom: 1px solid var(--line); padding: 26px 0; }
.faq-item h3 { margin-bottom: 10px; font-style: normal; }
.faq-item p { color: var(--text-body); margin: 0; }

footer { background: #121214; border-top: 1px solid var(--line); padding: 56px 0 34px; }
footer .foot-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 36px; margin-bottom: 28px; border-bottom: 1px solid var(--line); flex-wrap: wrap; gap: 28px; }
footer .brand { margin-bottom: 14px; }
footer .foot-links { display: flex; gap: 56px; flex-wrap: wrap; }
footer .foot-links h4 { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 14px 0; font-weight: 600; font-family: 'IBM Plex Sans', sans-serif; }
footer .foot-links a { display: block; color: var(--text-body); text-decoration: none; font-size: 14.5px; margin-bottom: 10px; }
footer .foot-links a:hover { color: var(--platinum-light); }
footer .legal { font-size: 13px; color: var(--text-muted); max-width: 640px; }
footer .copyright { font-size: 13px; color: var(--text-muted); margin-top: 18px; }

@media (max-width: 880px) {
  .hero-banner { min-height: 520px; }
  .hero-lockup { width: 220px; }
  .cols-2-uneven { grid-template-columns: 1fr; gap: 30px; }
  h1 { font-size: 40px; }
  h2 { font-size: 29px; }
  .cols-3 { grid-template-columns: 1fr; gap: 30px; }
  .cols-2 { grid-template-columns: 1fr; gap: 30px; }
  .included-row { grid-template-columns: 1fr; gap: 10px; }
  .site-nav .links { display: none; }
  .price-table { font-size: 14px; }
  footer .foot-top { flex-direction: column; }
}
