/* ==========================================================================
   GetDealerReviews — design system
   Palette sampled from the approved logo: deep navy + logo blue, action
   green (gauge needle/arc), gold star accent, charcoal body text.
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #0e2a4a;
  --navy-800: #163f68;
  --navy-700: #1d4d7d;
  --blue-600: #0b4ea8;
  --blue-100: #e8f0fb;
  --green-700: #146b34;
  --green-600: #1e8e44;
  --green-500: #2ea94f;
  --green-100: #e5f6ea;
  --gold-500: #f5c518;
  --gold-600: #caa000;
  --gold-100: #fdf3d3;

  /* Neutrals */
  --ink: #1c2b38;
  --charcoal-700: #3a4b58;
  --gray-600: #5b6b78;
  --gray-400: #8b98a3;
  --gray-200: #d9e0e6;
  --gray-100: #eef2f5;
  --gray-50: #f6f8fa;
  --white: #ffffff;

  /* Semantic */
  --color-bg: var(--white);
  --color-surface: var(--gray-50);
  --color-text: var(--ink);
  --color-text-muted: var(--gray-600);
  --color-primary: var(--navy-900);
  --color-action: var(--green-600);
  --color-action-hover: var(--green-700);
  --color-link: var(--blue-600);
  --color-border: var(--gray-200);
  --color-focus: #ffb703;

  /* Type */
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container-w: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(14, 42, 74, 0.08), 0 1px 1px rgba(14, 42, 74, 0.04);
  --shadow-md: 0 8px 24px rgba(14, 42, 74, 0.12);
  --shadow-lg: 0 20px 48px rgba(14, 42, 74, 0.18);
}

/* ---- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-link); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:not([class]) { color: var(--color-link); }
ul, ol { padding-left: 1.2em; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy-900); margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 1.5rem + 2vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.lede { font-size: 1.15rem; color: var(--color-text-muted); }
small, .text-sm { font-size: 0.9rem; }

/* Focus visibility everywhere */
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 0.75em 1.25em;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Layout ------------------------------------------------------------ */
.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 20px;
}
.section { padding-block: clamp(48px, 6vw, 88px); }
.section--tight { padding-block: clamp(32px, 4vw, 56px); }
.section--surface { background: var(--color-surface); }
.section--navy { background: var(--navy-900); color: #eaf1fa; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .lede { color: #b9cbe0; }
.section-head { max-width: 760px; margin-bottom: 2.25rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  padding: 0.3em 0.8em;
  border-radius: 999px;
  margin-bottom: 0.9em;
}
.section--navy .eyebrow { color: #bfe8cd; background: rgba(46, 169, 79, 0.22); }

.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, color .12s ease;
  min-height: 48px;
}
.btn--primary { background: var(--color-action); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--color-action-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--navy { background: var(--navy-900); color: #fff; }
.btn--navy:hover { background: var(--navy-800); transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--navy-900); }
.btn--ghost:hover { background: var(--gray-100); }
.section--navy .btn--ghost { color: #fff; }
.section--navy .btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,0.6); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); }
.btn--sm { padding: 0.55em 1.1em; font-size: 0.9rem; min-height: 38px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ---- Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.site-header .container { max-width: 1300px; }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; flex-shrink: 0; }
.brand__mark { height: 32px; width: auto; }
.brand__word { font-weight: 800; font-size: 1.1rem; color: var(--navy-900); letter-spacing: -0.01em; white-space: nowrap; }
.brand__word--accent { color: var(--blue-600); }

.site-nav { flex: 1; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1rem; justify-content: center; flex-wrap: nowrap; }
.site-nav a { color: var(--charcoal-700); text-decoration: none; font-weight: 600; font-size: 0.84rem; padding: 0.4em 0; border-bottom: 2px solid transparent; white-space: nowrap; }
.site-nav a:hover, .site-nav a.is-active { color: var(--navy-900); border-color: var(--green-600); }

.site-header__cta { display: flex; gap: 0.6rem; align-items: center; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy-900); border-radius: 2px; }

.mobile-nav { display: none; border-top: 1px solid var(--color-border); background: #fff; }
.mobile-nav ul { list-style: none; margin: 0; padding: 12px 20px 20px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a { display: block; padding: 0.7em 0.2em; color: var(--navy-900); text-decoration: none; font-weight: 600; }
.mobile-nav .btn { margin-top: 8px; width: 100%; }

@media (max-width: 1219px) {
  .site-nav, .site-header__cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.is-open { display: block; }
}

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #cfe0f2; padding-block: 56px 28px; margin-top: 64px; }
.site-footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.site-footer__brand { display: flex; align-items: center; gap: 0.75rem; max-width: 320px; }
.site-footer__brand .brand__mark { height: 34px; }
.site-footer__name { margin: 0; font-weight: 800; color: #fff; font-size: 1.1rem; }
.site-footer__tagline { margin: 0; font-size: 0.85rem; color: #9db6cf; }
.site-footer__columns { display: flex; gap: 3rem; flex-wrap: wrap; }
.site-footer__heading { color: #fff; font-weight: 700; margin: 0 0 0.75em; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5em; }
.site-footer__col a { color: #cfe0f2; text-decoration: none; font-size: 0.92rem; }
.site-footer__col a:hover { color: #fff; text-decoration: underline; }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; padding-top: 20px; font-size: 0.82rem; color: #93aec8; }
.owner-input { color: var(--gold-500); font-weight: 700; }

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  background: linear-gradient(160deg, var(--navy-900) 0%, #123458 62%, #0c2540 100%);
  color: #fff;
  padding-block: clamp(56px, 8vw, 104px);
  overflow: hidden;
  position: relative;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.hero h1 { color: #fff; }
.hero .lede { color: #c3d6ea; font-size: 1.2rem; }
.hero__stars { color: var(--gold-500); font-size: 1.1rem; letter-spacing: 0.15em; margin-bottom: 0.75em; }
.hero__art {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero__art img { border-radius: var(--radius-md); }
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
}

/* ---- Cards ---------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.card--accent-top { border-top: 4px solid var(--green-600); }
.card h3 { margin-bottom: 0.4em; }
.card .icon-badge { margin-bottom: 0.9em; }

.icon-badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 800;
}
.icon-badge--navy { background: var(--blue-100); color: var(--blue-600); }
.icon-badge--gold { background: var(--gold-100); color: var(--gold-600); }

.step-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; counter-reset: step; }
.step-list li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.step-list .step-num {
  counter-increment: step;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.step-list h3 { margin-bottom: 0.2em; font-size: 1.1rem; }
.step-list p { margin: 0; color: var(--color-text-muted); }

.callout {
  border: 1px solid var(--gold-500);
  background: var(--gold-100);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
}
.callout--navy { border-color: var(--navy-800); background: var(--blue-100); }
.callout strong { color: var(--navy-900); }

/* ---- Pills / tabs -------------------------------------------------------- */
.tabbar {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--gray-100);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.tabbar button {
  border: 0;
  background: transparent;
  padding: 0.6em 1.3em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--charcoal-700);
}
.tabbar button[aria-selected="true"] { background: var(--navy-900); color: #fff; }

.subtabbar { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.subtabbar button {
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 0.5em 1.1em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--charcoal-700);
}
.subtabbar button[aria-selected="true"] { background: var(--green-600); border-color: var(--green-600); color: #fff; }

/* ---- Message mockups ------------------------------------------------------ */
.mockup-email {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 560px;
}
.mockup-email__bar { background: var(--gray-100); padding: 0.7em 1.1em; display: flex; gap: 6px; }
.mockup-email__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-400); display: inline-block; }
.mockup-email__meta { padding: 1rem 1.25rem 0.5rem; border-bottom: 1px solid var(--color-border); font-size: 0.88rem; color: var(--color-text-muted); }
.mockup-email__meta .subject { color: var(--ink); font-weight: 700; font-size: 1rem; margin-top: 0.3em; }
.mockup-email__body { padding: 1.25rem; font-size: 0.95rem; }
.mockup-email__body p { margin-bottom: 0.9em; }
.mockup-email__cta {
  display: inline-block;
  background: var(--green-600);
  color: #fff !important;
  padding: 0.7em 1.4em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin-block: 0.5em;
}
.mockup-email__unsub { font-size: 0.8rem; color: var(--gray-600); border-top: 1px dashed var(--color-border); padding-top: 0.9em; margin-top: 1em; }

.mockup-phone {
  max-width: 300px;
  background: var(--navy-900);
  border-radius: 34px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
}
.mockup-phone__screen { background: #eef1f4; border-radius: 22px; padding: 16px 12px; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; }
.mockup-phone__bubble { background: #fff; border-radius: 16px 16px 16px 4px; padding: 0.8em 1em; font-size: 0.9rem; box-shadow: var(--shadow-sm); }
.mockup-phone__sender { font-size: 0.72rem; color: var(--gray-600); text-align: center; margin-bottom: 4px; }

.fictional-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-600); background: var(--gray-100); padding: 0.25em 0.7em; border-radius: 999px; margin-bottom: 0.75em; }

/* ---- Report mockups -------------------------------------------------------- */
.report-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.report-card__head { background: var(--navy-900); color: #fff; padding: 1.1rem 1.4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.report-card__head h3 { color: #fff; margin: 0; font-size: 1.05rem; }
.report-card__body { padding: 1.4rem; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 1rem; margin-bottom: 1.25rem; }
.stat-tile { background: var(--gray-50); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 0.9rem 1rem; }
.stat-tile__label { font-size: 0.75rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.3em; }
.stat-tile__value { font-size: 1.4rem; font-weight: 800; color: var(--navy-900); }
.stat-tile__value--green { color: var(--green-700); }
.stat-tile__value--gold { color: var(--gold-600); }

.report-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.report-table th, .report-table td { text-align: left; padding: 0.55em 0.7em; border-bottom: 1px solid var(--color-border); }
.report-table th { color: var(--gray-600); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.03em; }

.badge { display: inline-block; padding: 0.2em 0.7em; border-radius: 999px; font-size: 0.78rem; font-weight: 700; }
.badge--ok { background: var(--green-100); color: var(--green-700); }
.badge--warn { background: var(--gold-100); color: var(--gold-600); }
.badge--planned { background: var(--gray-100); color: var(--gray-600); }
.badge--critical { background: #fbe6e4; color: #8f241c; }

.review-quote {
  background: var(--gray-50);
  border-left: 4px solid var(--gold-500);
  padding: 1rem 1.25rem;
  font-style: italic;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0 0.5rem;
}
.review-quote cite { display: block; font-style: normal; font-size: 0.82rem; color: var(--gray-600); margin-top: 0.6em; }

/* ---- Calculator ------------------------------------------------------------ */
.calculator {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 800px) { .calc-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 700; margin-bottom: 0.4em; font-size: 0.92rem; color: var(--navy-900); }
.field .hint { font-size: 0.8rem; color: var(--gray-600); margin-top: 0.3em; }
.field input[type="number"], .field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select, .field textarea {
  width: 100%;
  padding: 0.75em 0.9em;
  border-radius: 10px;
  border: 1.5px solid var(--color-border);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy-800); }
.field input[type="range"] { width: 100%; accent-color: var(--green-600); }
.field-error { color: #b3261e; font-size: 0.82rem; margin-top: 0.3em; display: none; }
.field.has-error input { border-color: #b3261e; }
.field.has-error .field-error { display: block; }

.calc-result {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.calc-result h3 { color: #fff; }
.calc-result__big { font-size: 2.6rem; font-weight: 800; color: var(--gold-500); line-height: 1; margin-bottom: 0.1em; }
.calc-result__sub { color: #cddced; margin-bottom: 1.25rem; }
.progress-track { position: relative; height: 12px; background: rgba(255,255,255,0.18); border-radius: 999px; margin-block: 0.6rem 0.4rem; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--green-500), var(--gold-500)); border-radius: 999px; transition: width 0.4s ease; }
.progress-target-marker { position: absolute; top: -3px; width: 3px; height: 18px; background: #fff; border-radius: 2px; transition: left 0.4s ease; box-shadow: 0 0 0 2px rgba(14,42,74,0.4); }
.progress-labels { display: flex; justify-content: space-between; font-size: 0.82rem; color: #b9cbe0; }
.calc-disclaimer { font-size: 0.8rem; color: #9db6cf; margin-top: 1rem; }

/* ---- Pricing ---------------------------------------------------------------- */
.price-card { background: #fff; border: 2px solid var(--navy-900); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-lg); }
.price-figure { display: flex; align-items: baseline; gap: 0.4rem; margin: 0.2em 0 0.1em; }
.price-figure .amount { font-size: 2.4rem; font-weight: 800; color: var(--navy-900); }
.price-figure .period { color: var(--gray-600); font-weight: 600; }
.price-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
@media (max-width: 700px) { .price-cols { grid-template-columns: 1fr; } }
.price-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.price-cols li { padding-left: 1.6em; position: relative; font-size: 0.94rem; }
.price-cols li::before { content: "✓"; position: absolute; left: 0; color: var(--green-600); font-weight: 800; }

/* ---- FAQ / accordion ---------------------------------------------------------- */
.accordion { border-top: 1px solid var(--color-border); }
.accordion-item { border-bottom: 1px solid var(--color-border); }
.accordion-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1em 0.2em;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after { content: "+"; font-size: 1.3rem; color: var(--green-600); flex-shrink: 0; }
.accordion-item[open] summary::after { content: "–"; }
.accordion-item .accordion-body { padding: 0 0.2em 1.3em; color: var(--color-text-muted); }

/* ---- Forms -------------------------------------------------------------------- */
.form-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-md); }
.form-status { padding: 0.9em 1.1em; border-radius: 10px; font-size: 0.92rem; margin-bottom: 1.2rem; display: none; }
.form-status.is-success { display: block; background: var(--green-100); color: var(--green-700); }
.form-status.is-error { display: block; background: #fbe6e4; color: #8f241c; }
.form-hp { position: absolute; left: -9999px; }

/* ---- Table (generic) ----------------------------------------------------------- */
table.plain { width: 100%; border-collapse: collapse; }
table.plain th, table.plain td { text-align: left; padding: 0.6em 0.8em; border-bottom: 1px solid var(--color-border); vertical-align: top; }

/* ---- Breadcrumbs ---------------------------------------------------------------- */
.breadcrumbs { font-size: 0.85rem; color: var(--gray-600); padding-block: 1rem; }
.breadcrumbs a { color: var(--gray-600); text-decoration: none; }
.breadcrumbs a:hover { color: var(--navy-900); text-decoration: underline; }

/* ---- Utility ---------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack { display: flex; flex-direction: column; gap: 1rem; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.divider { height: 1px; background: var(--color-border); border: 0; margin: 2.5rem 0; }

.stars { color: var(--gold-500); letter-spacing: 0.1em; }

/* ---- Video ---------------------------------------------------------------- */
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.video-frame__placeholder { text-align: center; padding: 2rem; }
.video-frame__play {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--green-600);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
}

.transcript { max-height: 420px; overflow-y: auto; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; background: var(--gray-50); }
.transcript h3 { font-size: 1rem; margin-top: 1.1em; }
.transcript h3:first-child { margin-top: 0; }

/* ---- Interactive walkthrough (self-guided "scribe") ----------------------- */
.scribe {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.scribe__stage {
  position: relative;
  min-height: 440px;
  padding: 2.75rem 2.75rem 2.25rem;
  display: flex;
  align-items: center;
}
.scribe__stage:focus { outline: 2px solid var(--gold-500); outline-offset: -2px; }
.scribe-slide { display: none; width: 100%; }
.scribe-slide.is-active { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; animation: scribeIn 0.35s ease; }
.scribe-slide--text-only.is-active { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; text-align: center; }
@keyframes scribeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.scribe-slide--text-only .icon-badge { margin: 0 auto 1.1em; }
.scribe-slide__eyebrow { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--gold-500); margin-bottom: 0.6em; }
.scribe-slide__body h3 { color: #fff; font-size: 1.55rem; margin-bottom: 0.45em; }
.scribe-slide__body p { color: #cddced; font-size: 1rem; line-height: 1.65; margin: 0; }
.scribe-slide__body .btn-row { margin-top: 1.4rem; justify-content: inherit; }
.scribe-slide__visual { display: flex; align-items: center; justify-content: center; }
@media (max-width: 780px) {
  .scribe__stage { padding: 1.75rem 1.25rem 1.5rem; min-height: unset; }
  .scribe-slide.is-active { grid-template-columns: 1fr; text-align: center; }
  .scribe-slide__visual { order: -1; }
}
.scribe__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}
.scribe__nav-btn {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  flex: none;
}
.scribe__nav-btn:hover:not(:disabled) { background: rgba(255, 255, 255, 0.22); }
.scribe__nav-btn:disabled { opacity: 0.3; cursor: default; }
.scribe__dots { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.scribe__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.28); border: none; cursor: pointer; padding: 0; }
.scribe__dot.is-active { background: var(--gold-500); width: 22px; border-radius: 5px; }
.scribe__meta { display: flex; align-items: center; gap: 0.9rem; }
.scribe__counter { font-size: 0.82rem; color: #b9cbe0; min-width: 78px; }
.scribe__play {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 999px;
  padding: 0.4em 1.1em;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}
.scribe__play:hover { background: rgba(255, 255, 255, 0.12); }
.scribe .btn--ghost { color: #fff; }
.scribe .btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* Print niceties for legal pages */
@media print {
  .site-header, .site-footer, .skip-link { display: none; }
}
