/* ============================================================
   ExactCov V3 design system — "modern credit desk"
   Warm paper ground, ink navy type, evergreen accent,
   Fraunces display serif + Inter UI sans.
   ============================================================ */

:root {
  color-scheme: light;
  --paper: #FAF8F4;
  --surface: #FFFFFF;
  --surface-2: #FDFCFA;
  --nav-bg: rgba(250, 248, 244, .88);
  --ink: #16222F;
  --ink-2: #4A5A6B;
  --ink-3: #7A8797;
  --line: #E7E1D5;
  --line-2: #EFEAE0;
  --accent: #0E5E52;
  --accent-deep: #0A453C;
  --accent-soft: #EAF1EC;
  --mint: #7BE0C3;
  --amber: #B45309;
  --amber-soft: #FDF3E7;
  --red: #B42318;
  --red-soft: #FDECEA;
  --green-ok: #067647;
  --green-soft: #E7F4EC;
  --night: #101C26;
  --night-2: #16242F;
  --night-line: #263643;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-btn: 10px;
  --radius-card: 16px;
  --shadow-card: 0 1px 2px rgba(22, 34, 47, .04), 0 8px 24px -12px rgba(22, 34, 47, .10);
  --shadow-panel: 0 1px 3px rgba(22, 34, 47, .06), 0 24px 48px -24px rgba(22, 34, 47, .18);
  --wrap: 76rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

::selection { background: rgba(14, 94, 82, .18); }

/* ---------- layout ---------- */
.v3-wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
@media (min-width: 768px) { .v3-wrap { padding-left: 40px; padding-right: 40px; } }
.v3-section { padding: 96px 0; }
.v3-section--tight { padding: 64px 0; }
.v3-hairline { border: 0; border-top: 1px solid var(--line); }

/* ---------- type ---------- */
.v3-display {
  font-family: var(--font-display);
  font-weight: 560;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--ink);
}
h1.v3-display { font-size: clamp(2.5rem, 5.2vw, 4rem); }
h2.v3-display { font-size: clamp(1.85rem, 3.2vw, 2.6rem); line-height: 1.14; }
h3.v3-display { font-size: clamp(1.35rem, 2.2vw, 1.7rem); line-height: 1.2; }

.v3-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 650; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}
.v3-kicker::before { content: ""; width: 22px; height: 1.5px; background: var(--accent); }
.v3-kicker--center::after { content: ""; width: 22px; height: 1.5px; background: var(--accent); }

.v3-lede { font-size: 17.5px; color: var(--ink-2); line-height: 1.65; }
@media (min-width: 768px) { .v3-lede { font-size: 18.5px; } }

/* ---------- buttons ---------- */
.v3-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-btn);
  padding: 12px 22px;
  font-size: 15px; font-weight: 600; line-height: 1.2;
  transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
  white-space: nowrap;
}
.v3-btn svg { flex: none; }
.v3-btn--primary { background: var(--accent); color: #fff; border: 1px solid var(--accent); }
.v3-btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.v3-btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.v3-btn--ghost:hover { border-color: var(--ink-3); background: var(--surface); }
.v3-btn--ink { background: var(--ink); color: #fff; border: 1px solid var(--ink); }
.v3-btn--ink:hover { background: #223245; }
.v3-btn--light { background: #fff; color: #16222F; border: 1px solid #fff; }
.v3-btn--light:hover { background: #EFEAE0; border-color: #EFEAE0; }
.v3-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-weight: 600; font-size: 15px;
}
.v3-link:hover { color: var(--accent-deep); }

/* ---------- navbar ---------- */
.v3-nav {
  position: sticky; top: 0; z-index: 90;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.v3-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 72px;
}
.v3-logo { display: flex; align-items: center; gap: 11px; }
.v3-logo__mark { width: 34px; height: 34px; display: block; }
.v3-logo__stack { display: flex; flex-direction: column; line-height: 1; }
.v3-logo__word {
  font-family: var(--font-display); font-weight: 600; font-size: 21.5px;
  letter-spacing: -0.01em; color: var(--ink);
}
.v3-logo__word em { font-style: normal; color: var(--accent); }
.v3-logo__from {
  margin-top: 3px; font-size: 8.5px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-3); align-self: flex-end;
}
.v3-nav__links { display: none; align-items: center; gap: 30px; }
.v3-nav__links > a, .v3-nav__drop > summary {
  font-size: 15px; font-weight: 550; color: var(--ink-2); cursor: pointer;
}
.v3-nav__links > a:hover, .v3-nav__drop > summary:hover { color: var(--ink); }
.v3-nav__cta { display: none; align-items: center; gap: 10px; }
.v3-nav__cta .v3-btn { padding: 9px 18px; font-size: 14px; }
@media (min-width: 1024px) {
  .v3-nav__links { display: flex; }
  .v3-nav__cta { display: flex; }
  .v3-nav__burger { display: none; }
}

/* dropdowns (details-based) */
.v3-nav__drop { position: relative; }
.v3-nav__drop > summary { list-style: none; display: inline-flex; align-items: center; gap: 6px; }
.v3-nav__drop > summary::-webkit-details-marker { display: none; }
.v3-nav__drop > summary::after {
  content: ""; width: 7px; height: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .15s;
}
.v3-nav__drop[open] > summary::after { transform: rotate(-135deg) translateY(-1px); }
.v3-nav__menu {
  position: absolute; top: calc(100% + 14px); right: 0; min-width: 240px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-panel); padding: 8px; z-index: 100;
  max-height: 22rem; overflow-y: auto;
}
.v3-nav__menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px; font-size: 14.5px; color: var(--ink-2);
}
.v3-nav__menu a:hover { background: var(--paper); color: var(--ink); }
.v3-nav__menu a.is-active { background: var(--accent-soft); color: var(--accent-deep); font-weight: 600; }
.v3-nav__menu img { border-radius: 2px; }

/* mobile */
.v3-nav__burger {
  width: 40px; height: 40px; display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.v3-nav__burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; display: block; }
.v3-mobile {
  display: none; border-top: 1px solid var(--line);
  background: var(--paper); padding: 16px 24px 28px;
}
.v3-mobile.is-open { display: block; }
.v3-mobile a { display: block; padding: 12px 0; font-size: 16px; font-weight: 550; color: var(--ink); border-bottom: 1px solid var(--line-2); }
.v3-mobile .v3-mobile__cta { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.v3-mobile .v3-mobile__cta a { border-bottom: none; padding: 12px 22px; }
.v3-mobile .v3-mobile__cta a.v3-btn--primary { color: #fff; }
.v3-mobile details { border-bottom: 1px solid var(--line-2); }
.v3-mobile details a { border-bottom: none; padding: 8px 0 8px 14px; font-weight: 450; color: var(--ink-2); font-size: 15px; }
.v3-mobile summary { padding: 12px 0; font-size: 16px; font-weight: 550; cursor: pointer; }

/* ---------- hero ---------- */
.v3-hero { padding: 72px 0 40px; position: relative; }
.v3-hero__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .v3-hero__grid { grid-template-columns: minmax(0, 46fr) minmax(0, 54fr); gap: 56px; } }
.v3-hero h1 { margin: 18px 0 20px; }
.v3-hero h1 .accent { color: var(--accent); font-style: italic; font-variation-settings: "opsz" 60; }
.v3-hero .v3-lede { max-width: 34rem; }
.v3-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.v3-hero__proof { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 30px; font-size: 13.5px; color: var(--ink-3); }
.v3-hero__proof span { display: inline-flex; align-items: center; gap: 7px; }
.v3-hero__proof svg { color: var(--accent); flex: none; }

/* hero register panel */
.v3-panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-card); box-shadow: var(--shadow-panel);
  overflow: hidden; font-size: 12.5px;
}
.v3-panel__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; border-bottom: 1px solid var(--line-2);
  background: var(--surface-2);
}
.v3-panel__dots { display: flex; gap: 5px; }
.v3-panel__dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); display: block; }
.v3-panel__title { margin-left: 8px; font-size: 12px; font-weight: 600; color: var(--ink-2); }
.v3-panel__badge {
  margin-left: auto; font-size: 10.5px; font-weight: 650; letter-spacing: .06em;
  color: var(--accent-deep); background: var(--accent-soft);
  padding: 3px 9px; border-radius: 99px;
}
.v3-panel__body { padding: 18px 20px 20px; }
.v3-panel__deal { font-family: var(--font-display); font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; }
.v3-panel__meta { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.v3-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 14px 0; }
.v3-stat { border: 1px solid var(--line-2); border-radius: 10px; padding: 10px 12px; background: var(--surface-2); }
.v3-stat b { display: block; font-size: 17px; font-weight: 650; letter-spacing: -0.01em; }
.v3-stat b.amber { color: var(--amber); }
.v3-stat small { font-size: 10px; color: var(--ink-3); line-height: 1.3; display: block; }
.v3-stat .lbl { font-size: 10px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 3px; }
.v3-table { width: 100%; border-collapse: collapse; }
.v3-table caption {
  text-align: left; font-size: 11px; font-weight: 650; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-3); padding-bottom: 7px;
}
.v3-table th {
  text-align: left; font-size: 10px; font-weight: 650; letter-spacing: .07em;
  text-transform: uppercase; color: var(--ink-3);
  padding: 6px 8px; border-bottom: 1px solid var(--line);
}
.v3-table td { padding: 7.5px 8px; border-bottom: 1px solid var(--line-2); font-size: 12px; }
.v3-table td:first-child { font-weight: 600; }
.v3-table .cl { color: var(--accent); font-weight: 550; font-variant-numeric: tabular-nums; }
.v3-table td:last-child { font-variant-numeric: tabular-nums; }
.v3-flag { display: flex; gap: 9px; align-items: baseline; padding: 6.5px 0; border-bottom: 1px solid var(--line-2); font-size: 11.5px; color: var(--ink-2); }
.v3-flag:last-child { border-bottom: none; }
.v3-flag b { flex: none; font-size: 9.5px; font-weight: 700; letter-spacing: .06em; padding: 2px 7px; border-radius: 5px; }
.v3-flag b.hi { color: var(--red); background: var(--red-soft); }
.v3-flag b.md { color: var(--amber); background: var(--amber-soft); }
.v3-flag b.lo { color: var(--green-ok); background: var(--green-soft); }

/* ---------- coverage strip ---------- */
.v3-coverage { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.v3-coverage__inner { padding: 26px 0; display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
.v3-coverage__label { font-size: 11.5px; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.v3-coverage ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 10px; }
.v3-coverage li {
  font-size: 13.5px; font-weight: 550; color: var(--ink-2);
  border: 1px solid var(--line); border-radius: 99px; padding: 6px 14px;
  background: var(--paper);
}

/* ---------- workflow ---------- */
.v3-steps { display: grid; gap: 36px; margin-top: 56px; counter-reset: step; }
@media (min-width: 768px) { .v3-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .v3-steps { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
.v3-step { position: relative; padding-top: 22px; border-top: 1px solid var(--line); }
.v3-step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--accent); position: absolute; top: -11px; left: 0;
  background: var(--paper); padding-right: 12px;
}
.v3-step h3 { font-size: 17.5px; font-weight: 650; margin-bottom: 8px; letter-spacing: -0.01em; }
.v3-step p { font-size: 14.5px; color: var(--ink-2); }

/* ---------- use cases ---------- */
.v3-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 36px 0 28px; }
.v3-tab {
  padding: 9px 18px; border-radius: 99px; font-size: 14.5px; font-weight: 600;
  color: var(--ink-2); border: 1px solid var(--line); background: transparent;
  transition: all .15s ease;
}
.v3-tab:hover { border-color: var(--ink-3); color: var(--ink); }
.v3-tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.v3-case { display: none; }
.v3-case.is-open { display: block; }
.v3-case__card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-card); overflow: hidden;
  display: grid;
}
@media (min-width: 1024px) { .v3-case__card { grid-template-columns: 45fr 55fr; } }
.v3-case__copy { padding: 40px 32px; text-align: left; }
@media (min-width: 1024px) { .v3-case__copy { padding: 56px 24px 56px 56px; } }
.v3-case__copy h3 { margin-bottom: 10px; }
.v3-case__copy p { font-size: 15.5px; color: var(--ink-2); margin-bottom: 14px; }
.v3-case__copy .v3-btn { margin-top: 14px; }
.v3-case__lead { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 18px; }
.v3-case__pts { gap: 12px; }
.v3-case__pts li { font-size: 15px; }
.v3-case__shot { position: relative; display: none; background: var(--accent-soft); }
@media (min-width: 1024px) { .v3-case__shot { display: block; } }
.v3-case__shot .v3-shot {
  position: absolute; top: 48px; left: 44px;
  width: 104%; height: calc(100% - 48px); overflow: hidden;
  border-radius: 12px 0 0 0; border: 1px solid var(--line);
  background: var(--surface);
}
.v3-case__shot img { display: block; width: 100%; max-width: none; height: auto; }
.v3-cases__note { max-width: 46rem; margin: 40px auto 0; font-size: 15px; color: var(--ink-2); text-align: center; }

/* ---------- how it works ---------- */
.v3-how { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.v3-how__grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .v3-how__grid { grid-template-columns: 38fr 62fr; gap: 64px; align-items: start; } }
.v3-how__points { display: grid; gap: 0; margin-top: 8px; }
.v3-point { padding: 20px 0; border-bottom: 1px solid var(--line-2); display: flex; gap: 14px; }
.v3-point:last-child { border-bottom: none; }
.v3-point__ico {
  flex: none; width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.v3-point h3 { font-size: 16px; font-weight: 650; letter-spacing: -0.01em; }
.v3-point p { font-size: 14.5px; color: var(--ink-2); margin-top: 4px; }

/* slider */
.v3-slider { position: relative; }
.v3-slider__track {
  display: flex; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
  border-radius: var(--radius-card);
}
.v3-slider__track::-webkit-scrollbar { display: none; }
.v3-slide {
  flex: 0 0 100%; scroll-snap-align: start;
  border: 1px solid var(--line); border-radius: var(--radius-card);
  overflow: hidden; background: var(--paper); box-shadow: var(--shadow-card);
}
.v3-slider__nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 14px; }
.v3-slider__btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .15s ease;
}
.v3-slider__btn:hover { border-color: var(--ink-3); color: var(--ink); }

/* ---------- coming soon (night) ---------- */
.v3-night { background: var(--night); color: #E8EDF2; }
.v3-night .v3-kicker { color: var(--mint); }
.v3-night .v3-kicker::before, .v3-night .v3-kicker--center::after { background: var(--mint); }
.v3-night h2 { color: #FFFFFF; }
.v3-night .v3-lede { color: #9FB0BF; }
.v3-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 40px 0 28px; }
.v3-chip {
  font-size: 13.5px; font-weight: 550; color: #C3CFDA;
  border: 1px solid var(--night-line); border-radius: 99px; padding: 8px 16px;
  background: var(--night-2);
}
.v3-chip.is-active { border-color: var(--mint); color: var(--mint); }
.v3-night__panel {
  max-width: 44rem; margin: 0 auto;
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius-card); box-shadow: 0 24px 64px -24px rgba(0,0,0,.5);
  padding: 24px 26px; text-align: left; font-size: 12.5px;
}
.v3-night__panel { overflow-x: auto; }
.v3-night__panel .v3-table { min-width: 560px; }
.v3-night__panel h3 { font-size: 15.5px; font-weight: 650; letter-spacing: -0.01em; }
.v3-night__panel .src { font-size: 11px; color: var(--ink-3); margin-top: 10px; }
.v3-night__panel .src a { color: var(--accent); font-weight: 550; }
.v3-night__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.v3-night__tags span {
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: #9FB0BF;
  display: inline-flex; align-items: center; gap: 7px;
}
.v3-night__tags svg { color: var(--mint); }

/* ---------- testimonial ---------- */
.v3-quote { max-width: 50rem; margin: 0 auto; text-align: center; }
.v3-quote blockquote {
  font-family: var(--font-display); font-weight: 480;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.42;
  letter-spacing: -0.01em; color: var(--ink);
}
.v3-quote blockquote::before { content: "\201C"; color: var(--accent); }
.v3-quote blockquote::after { content: "\201D"; color: var(--accent); }
.v3-quote figcaption { margin-top: 28px; }
.v3-quote .avatar {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 10px;
  background: var(--accent); color: #fff; font-weight: 650; font-size: 14px;
  display: flex; align-items: center; justify-content: center; letter-spacing: .04em;
}
.v3-quote .who b { display: block; font-size: 14.5px; font-weight: 650; }
.v3-quote .who span { font-size: 13px; color: var(--ink-3); }

/* ---------- features index ---------- */
.v3-findex { margin-top: 56px; display: grid; gap: 48px; }
.v3-fgroup__head {
  display: flex; align-items: baseline; gap: 16px;
  padding-bottom: 14px; border-bottom: 1.5px solid var(--ink);
  margin-bottom: 4px;
}
.v3-fgroup__head h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.01em; }
.v3-fgroup__head span { margin-left: auto; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.v3-fgroup__list { display: grid; }
@media (min-width: 768px) { .v3-fgroup__list { grid-template-columns: 1fr 1fr; column-gap: 48px; } }
.v3-frow { display: flex; gap: 12px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line-2); }
.v3-frow b { flex: none; font-size: 15px; font-weight: 650; letter-spacing: -0.01em; }
.v3-frow span { font-size: 13.5px; color: var(--ink-2); }

/* ---------- security strip ---------- */
.v3-security { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.v3-security__grid { display: grid; gap: 32px; margin-top: 44px; }
@media (min-width: 768px) { .v3-security__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.v3-security__item { border: 1px solid var(--line); border-radius: var(--radius-card); padding: 26px; background: var(--paper); }
.v3-security__item svg { color: var(--accent); margin-bottom: 14px; }
.v3-security__item h3 { font-size: 16.5px; font-weight: 650; letter-spacing: -0.01em; margin-bottom: 6px; }
.v3-security__item p { font-size: 14.5px; color: var(--ink-2); }

/* ---------- CTA band ---------- */
.v3-cta__card {
  background: var(--accent); color: #fff;
  border-radius: 24px; padding: 64px 32px; text-align: center;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .v3-cta__card { padding: 80px 64px; } }
.v3-cta__card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(38rem 20rem at 85% -20%, rgba(123, 224, 195, .25), transparent 60%),
    radial-gradient(30rem 18rem at 8% 115%, rgba(255, 255, 255, .10), transparent 55%);
  pointer-events: none;
}
.v3-cta__card > * { position: relative; }
.v3-cta__card h2 { color: #fff; max-width: 30ch; margin: 0 auto 14px; }
.v3-cta__card p { color: rgba(255, 255, 255, .82); max-width: 44rem; margin: 0 auto; font-size: 17px; }
.v3-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.v3-cta__actions .v3-btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.v3-cta__actions .v3-btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ---------- footer ---------- */
.v3-footer { background: var(--paper); padding-top: 72px; }
.v3-footer__grid { display: grid; gap: 40px; padding-bottom: 56px; }
@media (min-width: 900px) { .v3-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; } }
.v3-footer h6 { font-size: 12px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.v3-footer__col a { display: block; font-size: 14.5px; color: var(--ink-2); padding: 5px 0; }
.v3-footer__col a:hover { color: var(--ink); }
.v3-footer__col a small { display: block; font-size: 12px; color: var(--ink-3); }
.v3-footer__brand p { font-size: 14px; color: var(--ink-2); margin-top: 16px; max-width: 26rem; }
.v3-footer__bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 13px; color: var(--ink-3);
}
@media (min-width: 768px) { .v3-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.v3-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.v3-footer__legal a:hover { color: var(--ink); }

/* ---------- misc ---------- */
.v3-center { text-align: center; }
.v3-center .v3-lede { margin-left: auto; margin-right: auto; max-width: 46rem; }
.v3-mt-3 { margin-top: 12px; }
.v3-mt-5 { margin-top: 20px; }
.v3-skip {
  position: absolute; left: -9999px; top: 8px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.v3-skip:focus { left: 8px; }

/* ---------- inner-page building blocks ---------- */
.v3-page-hero { padding: 72px 0 56px; text-align: center; }
.v3-page-hero h1 { margin: 16px auto 18px; max-width: 24ch; }
.v3-page-hero .v3-lede { max-width: 44rem; margin-left: auto; margin-right: auto; }

.v3-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  padding: 32px;
}

/* prose (legal pages, articles) */
.v3-prose { max-width: 46rem; margin: 0 auto; font-size: 15.5px; color: var(--ink-2); }
.v3-prose h2 { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; color: var(--ink); margin: 40px 0 12px; }
.v3-prose h3 { font-size: 16.5px; font-weight: 650; color: var(--ink); margin: 28px 0 8px; }
.v3-prose p { margin: 0 0 14px; }
.v3-prose ul, .v3-prose ol { margin: 0 0 14px; padding-left: 22px; }
.v3-prose ul li { list-style: disc; margin-bottom: 6px; }
.v3-prose ol li { list-style: decimal; margin-bottom: 6px; }
.v3-prose a { color: var(--accent); font-weight: 550; }
.v3-prose a:hover { color: var(--accent-deep); }
.v3-prose strong, .v3-prose b { color: var(--ink); }
.v3-prose table { width: 100%; border-collapse: collapse; margin: 0 0 14px; }
.v3-prose th, .v3-prose td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; font-size: 14px; }
.v3-prose th { background: var(--surface-2); color: var(--ink); }

/* forms */
.v3-form { display: grid; gap: 18px; }
.v3-form--2col { grid-template-columns: 1fr; }
@media (min-width: 640px) { .v3-form--2col { grid-template-columns: 1fr 1fr; } .v3-form--2col .v3-field--full { grid-column: 1 / -1; } }
.v3-field { display: flex; flex-direction: column; gap: 6px; }
.v3-field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.v3-field input, .v3-field select, .v3-field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 14px; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.v3-field input::placeholder, .v3-field textarea::placeholder { color: var(--ink-3); }
.v3-field input:focus, .v3-field select:focus, .v3-field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.v3-field textarea { min-height: 120px; resize: vertical; }
.v3-form-success { font-size: 16px; font-weight: 600; color: var(--accent-deep); text-align: center; padding: 24px 0; }
.v3-form-note { font-size: 12.5px; color: var(--ink-3); }
.v3-form-note a { color: var(--accent); }

/* check / bullet list with accent ticks */
.v3-ticks { display: grid; gap: 10px; }
.v3-ticks li { display: flex; gap: 10px; align-items: baseline; font-size: 15px; color: var(--ink-2); }
.v3-ticks li::before {
  content: ""; flex: none; width: 8px; height: 13px; transform: rotate(40deg) translateY(1px);
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
}

/* ---------- theme toggle (footer) ---------- */
.v3-theme-toggle {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  border: 1px solid var(--line); border-radius: 99px; padding: 6px 14px;
  transition: color .15s ease, border-color .15s ease;
}
.v3-theme-toggle:hover { color: var(--ink); border-color: var(--ink-3); }
.v3-theme-toggle span { display: none; align-items: center; gap: 7px; }
.v3-theme-toggle[data-mode="auto"] .tt-auto { display: inline-flex; }
.v3-theme-toggle[data-mode="light"] .tt-light { display: inline-flex; }
.v3-theme-toggle[data-mode="dark"] .tt-dark { display: inline-flex; }
.v3-footer__meta { display: flex; align-items: center; gap: 18px; }

/* ---------- dark theme ---------- */
html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #10171E;
  --surface: #151E27;
  --surface-2: #1A2430;
  --nav-bg: rgba(16, 23, 30, .85);
  --ink: #E7ECF1;
  --ink-2: #A7B3BF;
  --ink-3: #74818E;
  --line: #273340;
  --line-2: #1F2933;
  --accent: #3BA48C;
  --accent-deep: #2F8371;
  --accent-soft: rgba(66, 179, 152, .13);
  --amber: #E0A05C;
  --amber-soft: rgba(224, 160, 92, .14);
  --red: #F2867B;
  --red-soft: rgba(242, 134, 123, .13);
  --green-ok: #5BC98F;
  --green-soft: rgba(91, 201, 143, .14);
  --night: #0B1118;
  --night-2: #121B24;
  --night-line: #223040;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, .35), 0 8px 24px -12px rgba(0, 0, 0, .5);
  --shadow-panel: 0 1px 3px rgba(0, 0, 0, .45), 0 24px 48px -24px rgba(0, 0, 0, .65);
}
html[data-theme="dark"] ::selection { background: rgba(59, 164, 140, .4); }
html[data-theme="dark"] .v3-hero h1 .accent { color: #4FB79E; }
html[data-theme="dark"] .v3-panel__badge { color: var(--mint); }
html[data-theme="dark"] .v3-btn--primary { color: #fff; }
html[data-theme="dark"] .v3-cta__card { background: var(--accent-deep); }
/* light-mode app screenshots: soften the glare on a dark page */
html[data-theme="dark"] .v3-case__shot img,
html[data-theme="dark"] .v3-slide img { filter: brightness(.88) contrast(1.02); }
html[data-theme="dark"] .v3-night__panel { box-shadow: 0 24px 64px -24px rgba(0, 0, 0, .8); border: 1px solid var(--night-line); }

/* burger is defined after the earlier media query, so re-hide it on desktop */
@media (min-width: 1024px) {
  .v3-nav__burger { display: none; }
  .v3-slider { position: sticky; top: 96px; align-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- Hero panel: Incurrence / Monitoring toggle + portfolio view ---------- */
.v3-panel__toggle { display: inline-flex; margin-left: 8px; border: 1px solid var(--line-2); border-radius: 7px; padding: 2px; background: var(--surface-2); }
.v3-panel__toggle button { font: inherit; font-size: 11px; font-weight: 600; color: var(--ink-3); background: none; border: 0; border-radius: 5px; padding: 3px 9px; cursor: pointer; }
.v3-panel__toggle button.is-active { background: var(--accent); color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.12); }
.v3-panel__subhead { font-size: 11px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); padding-bottom: 4px; }
.v3-strip { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 14px 0 12px; font-size: 11.5px; color: var(--ink-2); }
.v3-strip span { display: inline-flex; align-items: baseline; gap: 4px; }
.v3-strip b { font-size: 15px; font-weight: 650; letter-spacing: -0.01em; }
.v3-strip .due b { color: var(--accent); }
.v3-strip .warn b { color: var(--amber); }
.v3-strip .bad b { color: var(--red); }
.v3-hero__grid > * { min-width: 0; }
.v3-panel__view[data-view="mon"] { overflow-x: auto; }
.v3-table--mon { min-width: 100%; }
.v3-table--mon th, .v3-table--mon td { padding-left: 5px; padding-right: 5px; font-size: 10.5px; white-space: nowrap; }
.v3-table--mon th:first-child, .v3-table--mon td:first-child { padding-left: 0; }
.v3-table--mon th:last-child, .v3-table--mon td:last-child { padding-right: 0; }
.v3-table--mon td:last-child { font-variant-numeric: tabular-nums; }
.v3-pill { font-size: 9.5px; font-weight: 700; letter-spacing: .06em; padding: 2px 7px; border-radius: 5px; text-transform: uppercase; }
.v3-pill--pass { color: var(--green-ok); background: var(--green-soft); }
.v3-pill--breach { color: var(--red); background: var(--red-soft); }
.v3-trend { font-size: 13px; font-weight: 700; text-align: center; }
.v3-trend--down { color: var(--amber); }
.v3-trend--flat { color: var(--ink-3); }
.v3-trend--up { color: var(--green-ok); }
.v3-data--ok { color: var(--ink-2); }
.v3-data--due { color: var(--accent); font-weight: 600; }
.v3-data--stale { color: var(--red); font-weight: 650; }
.v3-security__line { text-align: center; margin-top: 28px; font-size: 13.5px; color: var(--ink-3); letter-spacing: .01em; }
.v3-night__note { margin-top: 18px; font-size: 12.5px; color: #9FB0BF; text-align: center; }

/* Hero card: hand-drawn nudge towards the Incurrence / Monitoring switch */
.v3-panel-wrap { position: relative; }
.v3-panel__hint {
  position: absolute; top: -24px; left: 150px; z-index: 2;
  display: flex; align-items: flex-start; gap: 2px; pointer-events: none;
  font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 15.5px; line-height: 1.2;
  color: var(--accent); white-space: nowrap;
  animation: v3-nudge 2.6s ease-in-out infinite;
}
.v3-panel__hint svg { flex: none; margin-top: 0; }
.v3-panel__hint span { margin-top: -2px; }
@keyframes v3-nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@media (prefers-reduced-motion: reduce) { .v3-panel__hint { animation: none; } }
@media (max-width: 640px) { .v3-panel__hint { font-size: 13.5px; left: 120px; right: 6px; top: -36px; white-space: normal; line-height: 1.15; } }

/* ---------- Use-case screenshots: numbered dots on the image, the three labels in the strip above ---------- */
.v3-shot__img { position: relative; }
.v3-shot picture { display: block; }
.v3-shot__legend {
  position: absolute; top: 0; left: 0; right: 0; height: 48px; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; align-content: center; gap: 2px 18px;
  padding: 0 16px 0 44px; margin: 0; list-style: none; font-size: 13px; font-weight: 550; color: var(--ink); line-height: 1.25;
}
.v3-shot__legend li { display: inline-flex; align-items: center; gap: 7px; opacity: .3; white-space: nowrap; }
.v3-shot__legend i, .v3-pin {
  flex: none; width: 20px; height: 20px; border-radius: 50%; font-style: normal; font-size: 10.5px; font-weight: 700;
  color: #fff; background: var(--accent); display: inline-flex; align-items: center; justify-content: center;
}
.v3-pin {
  position: absolute; width: 22px; height: 22px; font-size: 11px; transform: translate(-11px, -11px);
  opacity: 0; pointer-events: none; box-shadow: 0 0 0 3px rgba(255,255,255,.9), 0 4px 12px rgba(0,0,0,.2);
}
.v3-case.is-open .v3-shot__legend li { animation: v3-legend-in 1s ease-out both; animation-delay: calc(1.6s + var(--i) * 1.4s); }
.v3-case.is-open .v3-pin { animation-name: v3-pin-in, v3-pin-pulse; animation-duration: 1s, 2.6s; animation-timing-function: ease-out; animation-fill-mode: both, none; animation-iteration-count: 1, infinite; animation-delay: calc(1.6s + var(--i) * 1.4s), calc(2.6s + var(--i) * 1.4s); }
@keyframes v3-pin-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes v3-legend-in { from { opacity: .3; } to { opacity: 1; } }
@keyframes v3-pin-pulse { 0% { box-shadow: 0 0 0 3px rgba(255,255,255,.9), 0 0 0 3px rgba(15,110,84,.45); } 70%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,.9), 0 0 0 14px rgba(15,110,84,0); } }
@media (prefers-reduced-motion: reduce) { .v3-case.is-open .v3-pin, .v3-case.is-open .v3-shot__legend li { animation: none; opacity: 1; } }
@media (max-width: 1280px) { .v3-shot__legend { font-size: 12px; gap: 2px 14px; } }
html[data-theme="dark"] .v3-pin { box-shadow: 0 0 0 3px rgba(21,30,39,.9), 0 4px 12px rgba(0,0,0,.4); }
