/* Lkota VIN Check — premium mobile-first design system (P2).
 *
 * Constraints (do not relax): self-hosted assets only, no CDN, no inline
 * styles, no webfont downloads (system stacks only), strict 'self' CSP.
 * Every pre-P2 class name (.card, .button, .banner, .messages, .tag,
 * .helptext, .errorlist, .error, .inline-form, .actions, .linklike,
 * .finding-*) keeps working — templates not yet restyled must still render
 * correctly. Palette is aligned with report_v2.css (navy/blue family) so
 * the report surface and the site read as one product.
 */

/* --- 1. Design tokens ----------------------------------------------------- */

:root {
  /* Color */
  --navy: #0b1736;
  --navy-soft: #13234d;
  --ink: #172033;
  --muted: #5b6474;
  --faint: #8a93a5;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-deep: #1e40af;
  --teal: #43b4b1;
  --line: #dde3ec;
  --line-soft: #e8edf4;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --danger: #b42318;
  --danger-bg: #feeceb;
  --warn: #b54708;
  --warn-bg: #fff4e5;
  --ok: #14804a;
  --ok-bg: #eaf7ef;
  --info: #175cd3;
  --info-bg: #eff6ff;

  /* Typography */
  --font-sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial,
    sans-serif;
  --font-mono: ui-monospace, "Cascadia Mono", Consolas, "SF Mono", Menlo,
    monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;

  /* Shape + elevation */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --shadow-sm: 0 1px 2px rgba(11, 23, 54, 0.06);
  --shadow-md: 0 4px 14px rgba(11, 23, 54, 0.08);
  --shadow-lg: 0 12px 32px rgba(11, 23, 54, 0.14);

  /* Legacy aliases (pre-P2 rules referenced these names) */
  --warn-bg-legacy: var(--warn-bg);
  --ok-bg-legacy: var(--ok-bg);
}

/* --- 2. Base -------------------------------------------------------------- */

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1 0 auto; width: 100%; }

h1, h2, h3 { line-height: 1.25; color: var(--ink); }
h1 { font-size: var(--text-2xl); margin: var(--space-2) 0 var(--space-4); letter-spacing: -0.01em; }
h2 { font-size: var(--text-lg); margin: var(--space-5) 0 var(--space-3); }
h3 { font-size: var(--text-base); margin: var(--space-4) 0 var(--space-2); }

p { margin: 0 0 var(--space-3); }

a { color: var(--accent-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-deep); }

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 0.05rem 0.35rem;
}

:focus-visible, a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface);
  color: var(--ink);
  padding: var(--space-2) var(--space-4);
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; z-index: 100; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --- 3. Layout ------------------------------------------------------------ */

.container {
  max-width: 68rem;
  margin: var(--space-5) auto;
  padding: 0 var(--space-4);
  width: 100%;
}

.container.narrow { max-width: 34rem; }

.section { margin: var(--space-6) 0; }

.grid-2, .grid-3 { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.text-muted { color: var(--muted); }
.text-small { font-size: var(--text-sm); }
.text-center { text-align: center; }

/* --- 4. Header + navigation ----------------------------------------------- */

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.primary-nav { display: flex; align-items: center; }

.brand {
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
}
.brand:hover { color: var(--accent-deep); }

.brand-mark { width: 2rem; height: 2rem; flex: none; display: block; }
.brand-mark-bg { fill: var(--navy); }
.brand-mark-road { fill: rgba(255, 255, 255, 0.28); }
.brand-mark-check {
  stroke: #5b9bff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-text { white-space: nowrap; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
  min-height: 44px;
}
.nav-toggle[hidden] { display: none; }
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  content: "";
}
.nav-toggle-bars::before { position: absolute; top: -6px; }
.nav-toggle-bars::after { position: absolute; top: 6px; }

.nav-links {
  list-style: none;
  display: flex;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  display: inline-block;
}
.nav-links a:hover { color: var(--accent-dark); }

.nav-cta a, a.nav-cta {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
}
.nav-cta a:hover, a.nav-cta:hover { background: var(--accent-dark); color: #fff; }

.linklike {
  background: none;
  border: none;
  color: var(--accent-dark);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Mobile drawer — only when JS is available (.js-enabled); without JS the
   nav simply wraps, so navigation never depends on script execution. */
@media (max-width: 900px) {
  .js-enabled .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
  }
  .js-enabled .primary-nav { width: 100%; }
  .js-enabled .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: var(--space-1);
    padding: var(--space-3) 0 var(--space-4);
    border-top: 1px solid var(--line-soft);
    margin-top: var(--space-2);
  }
  .js-enabled.nav-open .nav-links { display: flex; }
  .js-enabled .nav-links li { width: 100%; }
  .js-enabled .nav-links a,
  .js-enabled .nav-links .linklike {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: var(--space-3);
    text-align: left;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: var(--text-base);
  }
  .js-enabled .nav-links a:hover { background: var(--surface-soft); }
  .js-enabled .nav-cta a { text-align: center; margin-top: var(--space-2); }
}

/* --- 5. Footer ------------------------------------------------------------ */

.site-footer {
  background: var(--navy);
  color: #c6cede;
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.site-footer a { color: #dbe4f5; }
.site-footer a:hover { color: #fff; }

.footer-grid {
  max-width: 72rem;
  margin: 0 auto;
  padding: var(--space-7) var(--space-4) var(--space-5);
  display: grid;
  gap: var(--space-5) var(--space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-col-brand { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1fr 1.4fr; }
  .footer-col-brand { grid-column: auto; }
}

.footer-brand {
  font-weight: 700;
  color: #fff;
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.site-footer .brand-mark-bg { fill: rgba(255, 255, 255, 0.1); }
.footer-tagline { color: #c6cede; }
.footer-note { color: var(--faint); font-size: var(--text-xs); max-width: 22rem; }
.footer-col li { overflow-wrap: anywhere; }
.footer-col h2 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
  margin: 0 0 var(--space-3);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: var(--space-2); }

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 68rem;
  margin: 0 auto;
  padding: var(--space-4);
  color: var(--faint);
  font-size: var(--text-xs);
}
.footer-legal p { margin-bottom: var(--space-2); }

/* --- 6. Buttons ----------------------------------------------------------- */

button[type="submit"], .button {
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.2rem;
  font: inherit;
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  min-height: 44px;
  line-height: 1.4;
  transition: background-color 120ms ease, box-shadow 120ms ease;
}
button[type="submit"]:hover, .button:hover {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.button-secondary, button.button-secondary {
  background: var(--surface);
  color: var(--accent-deep);
  border-color: var(--line);
}
.button-secondary:hover, button.button-secondary:hover {
  background: var(--info-bg);
  color: var(--accent-deep);
}

.button-danger, button.button-danger { background: var(--danger); }
.button-danger:hover, button.button-danger:hover { background: #932015; }

.button-ghost, button.button-ghost {
  background: transparent;
  color: var(--accent-deep);
  border-color: transparent;
}
.button-ghost:hover, button.button-ghost:hover { background: var(--info-bg); box-shadow: none; }

.button-lg { padding: 0.8rem 1.6rem; font-size: var(--text-base); }
.button-block { display: block; width: 100%; text-align: center; }

/* --- 7. Forms ------------------------------------------------------------- */

form p { margin: 0 0 var(--space-4); }

label { display: block; font-weight: 600; margin-bottom: var(--space-1); font-size: var(--text-sm); }

input[type="text"], input[type="email"], input[type="password"],
input[type="number"], input:not([type]), select, textarea {
  width: 100%;
  max-width: 28rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--surface);
  color: var(--ink);
  min-height: 44px;
  transition: border-color 120ms ease;
}
input:hover, select:hover, textarea:hover { border-color: var(--faint); }
input[aria-invalid="true"] { border-color: var(--danger); }

input.input-lg { font-size: var(--text-lg); letter-spacing: 0.06em; }
input.input-mono { font-family: var(--font-mono); text-transform: uppercase; }

.helptext { display: block; color: var(--muted); font-size: var(--text-sm); }

.errorlist {
  color: var(--danger);
  list-style: none;
  padding: 0;
  margin: var(--space-1) 0;
  font-size: var(--text-sm);
}
.error {
  color: var(--danger);
  background: var(--danger-bg);
  border: 1px solid #f4c7c3;
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
}

fieldset { border: 1px solid var(--line); border-radius: var(--radius-md); padding: var(--space-4); }

/* --- 8. Cards ------------------------------------------------------------- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.card > h1:first-child, .card > h2:first-child, .card > h3:first-child { margin-top: 0; }
.card .card { box-shadow: none; background: var(--surface-soft); }

.card-highlight { border-color: var(--accent); border-width: 2px; }

/* --- 9. Pricing cards ------------------------------------------------------ */

.pricing-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  align-items: stretch;
  margin: var(--space-4) 0;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0;
}
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card-featured { border: 2px solid var(--accent); position: relative; }

.price-name { font-weight: 600; font-size: var(--text-sm); color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.price-amount { font-size: var(--text-3xl); font-weight: 700; color: var(--navy); line-height: 1.1; }
.price-amount .price-unit { font-size: var(--text-sm); font-weight: 500; color: var(--muted); }
.price-per { color: var(--muted); font-size: var(--text-sm); }
.price-card .actions, .price-card form { margin-top: auto; }
.price-card button[type="submit"], .price-card .button { width: 100%; text-align: center; }

/* --- 10. Alerts, messages, banners ----------------------------------------- */

.banner {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  border: 1px solid var(--line);
  background: var(--surface-soft);
  font-size: var(--text-sm);
}
.banner-warning { background: var(--warn-bg); border-color: #f2d1a9; color: #6b3a06; }
.banner-info { background: var(--info-bg); border-color: #c6dbfb; color: #143a8a; }
.banner-success { background: var(--ok-bg); border-color: #b7e3c8; color: #0d5c36; }
.banner-danger { background: var(--danger-bg); border-color: #f4c7c3; color: #7a180f; }

.messages { list-style: none; padding: 0; margin: 0 0 var(--space-4); }
.message {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2);
  border: 1px solid var(--line);
  font-size: var(--text-sm);
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: baseline;
}
.message-success { background: var(--ok-bg); border-color: #b7e3c8; color: #0d5c36; }
.message-error { background: var(--danger-bg); border-color: #f4c7c3; color: #7a180f; }
.message-info { background: var(--info-bg); border-color: #c6dbfb; color: #143a8a; }
.message-warning { background: var(--warn-bg); border-color: #f2d1a9; color: #6b3a06; }
.message-dismiss {
  background: none;
  border: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: inherit;
  padding: 0 var(--space-1);
  line-height: 1;
}

/* --- 11. Badges / tags ------------------------------------------------------ */

.tag {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.tag-ok { background: var(--ok-bg); border-color: #b7e3c8; color: var(--ok); }
.tag-warn { background: var(--warn-bg); border-color: #f2d1a9; color: var(--warn); }
.tag-danger { background: var(--danger-bg); border-color: #f4c7c3; color: var(--danger); }
.tag-info { background: var(--info-bg); border-color: #c6dbfb; color: var(--info); }

/* --- 12. Tables ------------------------------------------------------------- */

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  margin-bottom: var(--space-4);
}
.table-wrap table { border: none; margin: 0; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: var(--text-sm);
}
th, td {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
  white-space: nowrap;
}
td { white-space: normal; }
th {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--surface-soft);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--surface-soft); }

/* --- 13. Empty, loading, processing states ---------------------------------- */

.empty-state {
  text-align: center;
  padding: var(--space-7) var(--space-4);
  color: var(--muted);
}
.empty-state h2, .empty-state h3 { color: var(--ink); margin-top: 0; }

.spinner {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.processing-state {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--info-bg);
  border: 1px solid #c6dbfb;
  border-radius: var(--radius-md);
  color: #143a8a;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

/* --- 14. Stat cards ---------------------------------------------------------- */

.stat-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: var(--space-4);
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.stat-value { font-size: var(--text-2xl); font-weight: 700; color: var(--navy); line-height: 1.2; }
.stat-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* --- 15. Breadcrumbs --------------------------------------------------------- */

.breadcrumbs { font-size: var(--text-sm); margin-bottom: var(--space-3); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-1); margin: 0; padding: 0; }
.breadcrumbs li { color: var(--muted); }
.breadcrumbs li + li::before { content: "/"; margin: 0 var(--space-1); color: var(--faint); }

/* --- 16. Dialog / confirmation styling --------------------------------------- */

.dialog-card {
  max-width: 30rem;
  margin: var(--space-6) auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
}

/* --- 17. Hero + marketing sections -------------------------------------------- */

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 55%, #1a3a6b 100%);
  color: #e8edf6;
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  margin-bottom: var(--space-6);
}
@media (min-width: 768px) { .hero { padding: var(--space-8) var(--space-7); } }

.hero-title {
  color: #fff;
  font-size: var(--text-2xl);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .hero-title { font-size: var(--text-3xl); } }

.hero-lead { font-size: var(--text-lg); color: #c9d4e8; max-width: 38rem; }

.hero .button { background: #fff; color: var(--navy); }
.hero .button:hover { background: var(--info-bg); color: var(--navy); }

.hero-panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-top: var(--space-5);
  max-width: 30rem;
}
.hero-panel label { color: #dbe4f5; }

.steps { list-style: none; counter-reset: step; margin: var(--space-4) 0; padding: 0; display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { counter-increment: step; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: var(--space-4); }
.step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--info-bg);
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.step h3 { margin: 0 0 var(--space-1); }
.step p { margin: 0; color: var(--muted); font-size: var(--text-sm); }

/* --- 18. Misc / legacy ---------------------------------------------------------- */

.inline-form { display: inline; }
.actions { display: flex; gap: var(--space-2); flex-wrap: wrap; align-items: center; }

.page-header { margin-bottom: var(--space-4); }
.page-header h1 { margin-bottom: var(--space-1); }
.page-header p { color: var(--muted); margin: 0; }

/* Customer report surface (M7 Phase A): severity accents on finding cards. */
.finding-critical { border-left: 4px solid var(--danger); }
.finding-warning { border-left: 4px solid #d97706; }
.finding-review { border-left: 4px solid #d97706; }

/* --- 19. Staff / administrative surfaces ------------------------------------------ */

.ops-banner {
  background: var(--navy);
  color: #dbe4f5;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-1) var(--space-4);
  text-align: center;
}

main.ops-surface {
  border-left: 4px solid var(--teal);
  padding-left: var(--space-4);
}
@media (max-width: 767px) { main.ops-surface { border-left-width: 3px; } }

/* --- 19a. Legal documents (P6) ------------------------------------------------------ */

.legal-doc-body { max-width: 46rem; }
.legal-doc-body p { margin-bottom: var(--space-4); }

.consent-text {
  max-height: 18rem;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  background: var(--surface-soft);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.consent-summary {
  border-left: 3px solid var(--accent);
  padding-left: var(--space-3);
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: var(--space-4);
}
.consent-summary li { margin-bottom: var(--space-1); }

@media print {
  .site-header, .site-footer, .skip-link, .nav-toggle, .breadcrumbs,
  .messages, .banner-warning a { display: none !important; }
  body { background: #fff; }
  .card, .legal-doc { border: none; box-shadow: none; padding: 0; }
  .consent-text { max-height: none; overflow: visible; }
}

/* --- 20. Accessibility ------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .spinner { animation: none; border-top-color: var(--line); }
}

/* --- 21. UX Phase 1 — premium homepage + public shell ----------------------- */
/* Same constraints as everything above: self-hosted, no webfonts, no CDN,
   strict 'self' CSP. Fluid type uses clamp() so every breakpoint from
   320px up reads deliberately, and no fixed pixel width can overflow. */

:root {
  --text-hero: clamp(1.9rem, 4.2vw + 0.9rem, 3.3rem);
  --text-display: clamp(1.5rem, 2.4vw + 0.7rem, 2.2rem);
  --electric: #3b82f6;
  --electric-soft: #60a5fa;
  --shell-max: 72rem;
}

.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding-inline: var(--space-4);
  width: 100%;
}

/* The homepage escapes the default container so bands run full width;
   banners and flash messages keep readable margins. */
main.home-page {
  max-width: none;
  padding: 0;
  margin: 0;
}
main.home-page > .banner,
main.home-page > .messages {
  max-width: var(--shell-max);
  margin: var(--space-4) auto;
  padding-inline: var(--space-4);
}

.section-shell { padding: var(--space-8) 0; }
.section-kicker {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  margin: 0 0 var(--space-2);
}
.section-kicker-light { color: var(--electric-soft); }
.section-title {
  font-size: var(--text-display);
  margin: 0 0 var(--space-5);
  letter-spacing: -0.02em;
}
.section-title-small { font-size: var(--text-xl); margin-bottom: var(--space-2); }

/* Hero band ------------------------------------------------------------------ */

.hero-home {
  border-radius: 0;
  margin: 0;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2.75rem, 6vw, 5.5rem);
  background:
    radial-gradient(52rem 30rem at 82% -10%, rgba(59, 130, 246, 0.35), transparent 60%),
    radial-gradient(40rem 26rem at -12% 108%, rgba(67, 180, 177, 0.22), transparent 60%),
    linear-gradient(150deg, #0a1430 0%, var(--navy) 45%, #10275c 100%);
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(70rem 40rem at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(70rem 40rem at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--space-7); }
}

.hero-kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9dc1ff;
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.9rem;
  margin: 0 0 var(--space-4);
  background: rgba(37, 99, 235, 0.16);
}
.hero-home .hero-title {
  font-size: var(--text-hero);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}
.hero-home .hero-lead {
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.2rem);
  max-width: 36rem;
  margin-bottom: var(--space-5);
}

.hero-vin-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 178, 235, 0.28);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  max-width: 34rem;
  box-shadow: 0 22px 50px rgba(4, 10, 28, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-vin-card label { color: #dbe4f5; margin-bottom: var(--space-2); }
.hero-vin-row { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero-vin-row input {
  flex: 1 1 14rem;
  max-width: none;
  min-width: 0;
  background: rgba(9, 17, 40, 0.65);
  border-color: rgba(148, 178, 235, 0.4);
  color: #eef3fc;
}
.hero-vin-row input::placeholder { color: #8fa3c8; letter-spacing: 0.04em; }
.hero-vin-row .button {
  flex: 1 1 auto;
  background: linear-gradient(120deg, var(--accent) 0%, var(--electric) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.45);
}
.hero-vin-row .button:hover { background: var(--accent-dark); }
.hero-vin-card .helptext { color: #9fb0d0; margin-top: var(--space-2); }
.hero-vin-alt {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin: var(--space-4) 0 0;
  font-size: var(--text-sm);
}
.hero-vin-alt a { color: #b7d1ff; text-decoration: none; font-weight: 600; }
.hero-vin-alt a:hover { color: #fff; text-decoration: underline; }

.hero-visual { display: none; }
@media (min-width: 1024px) {
  .hero-visual { display: block; min-width: 0; }
  .hero-visual svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 40px rgba(4, 10, 28, 0.5)); }
}
.hv-grid path { stroke: rgba(96, 165, 250, 0.16); stroke-width: 1; }
.hv-glass { fill: rgba(191, 219, 254, 0.34); }
.hv-wheel { fill: #0a1430; stroke: rgba(148, 178, 235, 0.5); stroke-width: 3; }
.hv-hub { fill: rgba(148, 178, 235, 0.6); }
.hv-plate rect { fill: rgba(9, 17, 40, 0.85); stroke: rgba(96, 165, 250, 0.55); stroke-width: 1.5; }
.hv-plate text {
  fill: #bfd7ff;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.2em;
}
.hv-scanline {
  stroke: var(--electric-soft);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 10 8;
  animation: hv-scan 2.6s linear infinite;
}
.hv-dots circle { fill: var(--electric-soft); }
@keyframes hv-scan { to { stroke-dashoffset: -36; } }

/* Trust strip ------------------------------------------------------------------ */

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line-soft);
  padding: var(--space-6) 0;
}
.trust-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item h2 { font-size: var(--text-base); margin: var(--space-2) 0 var(--space-1); }
.trust-item p { color: var(--muted); font-size: var(--text-sm); margin: 0; }
.trust-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  padding: 0.45rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(67, 180, 177, 0.12));
  stroke: var(--accent-dark);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Premium steps ------------------------------------------------------------------ */

.steps-premium { gap: var(--space-5); position: relative; }
.steps-premium .step {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
}
.steps-premium .step::before {
  background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}
@media (max-width: 767px) {
  .steps-premium { padding-left: var(--space-5); }
  .steps-premium::before {
    content: "";
    position: absolute;
    left: 0.6rem;
    top: 1rem;
    bottom: 1rem;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--teal));
    border-radius: 2px;
    opacity: 0.5;
  }
}

/* Report-value grid ---------------------------------------------------------------- */

.section-value { background: var(--surface); }
.value-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
.value-card {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.value-card:nth-child(even) { border-left-color: var(--teal); }
.value-card h3 { margin-top: 0; }
.value-card p { color: var(--muted); font-size: var(--text-sm); margin: 0; }

/* Bundle pricing --------------------------------------------------------------------- */

.bundle-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 560px) { .bundle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .bundle-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .bundle-grid { grid-template-columns: repeat(5, 1fr); } }

.bundle-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow 140ms ease, transform 140ms ease;
}
.bundle-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.bundle-card-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.18);
  background: linear-gradient(180deg, #f4f8ff 0%, var(--surface) 45%);
}
.bundle-flag {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  background: var(--info-bg);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.7rem;
  margin: 0 auto var(--space-1);
  display: inline-block;
}
.bundle-count { font-weight: 600; color: var(--muted); margin: 0; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.06em; }
.bundle-amount {
  font-size: clamp(2rem, 1.4vw + 1.6rem, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.05;
  margin: 0;
}
.bundle-currency { font-size: 0.55em; font-weight: 700; vertical-align: 0.5em; margin-right: 0.05em; }
.bundle-meta { color: var(--muted); font-size: var(--text-xs); margin: 0 0 var(--space-3); }
.bundle-card .actions { margin-top: auto; }
.pricing-note { color: var(--muted); font-size: var(--text-sm); margin-top: var(--space-4); }
.pricing-subtitle { margin-top: var(--space-6); font-size: var(--text-lg); }

/* Business band ------------------------------------------------------------------------ */

.business-band {
  background:
    radial-gradient(44rem 26rem at 110% 10%, rgba(59, 130, 246, 0.3), transparent 60%),
    linear-gradient(140deg, #0a1430 0%, var(--navy-soft) 100%);
  color: #dbe4f5;
  padding: var(--space-8) 0;
}
.business-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .business-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } }

.business-title { color: #fff; font-size: var(--text-display); letter-spacing: -0.02em; margin: 0 0 var(--space-4); }
.business-features { list-style: none; margin: 0 0 var(--space-5); padding: 0; }
.business-features li {
  padding-left: 1.9rem;
  position: relative;
  margin-bottom: var(--space-3);
  color: #c9d4e8;
}
.business-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric) 0%, var(--teal) 100%);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.18);
}

.button-invert, a.button-invert {
  background: #fff;
  color: var(--navy);
  border: none;
}
.button-invert:hover, a.button-invert:hover { background: var(--info-bg); color: var(--navy); }

.business-plans { display: grid; gap: var(--space-3); }
.business-plan-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 178, 235, 0.25);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
}
.business-plan-name {
  margin: 0;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9dc1ff;
}
.business-plan-amount { margin: var(--space-1) 0 0; font-size: var(--text-2xl); font-weight: 800; color: #fff; }
.business-plan-unit { font-size: var(--text-sm); font-weight: 500; color: #9fb0d0; }
.business-plan-note { margin: var(--space-2) 0 0; font-size: var(--text-xs); color: #9fb0d0; }

/* Limitations ------------------------------------------------------------------------------ */

.section-limitations { padding-block: var(--space-7); }
.limitations-lead { color: var(--muted); max-width: 44rem; }
.limitations {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  max-width: 44rem;
}
.limitations summary {
  cursor: pointer;
  font-weight: 600;
  padding: var(--space-4) var(--space-5);
  list-style-position: inside;
  border-radius: var(--radius-md);
  min-height: 44px;
}
.limitations summary:hover { background: var(--surface-soft); }
.limitations[open] summary { border-bottom: 1px solid var(--line-soft); }
.limitations-body { padding: var(--space-4) var(--space-5); }
.limitations-body p { font-size: var(--text-sm); color: var(--muted); }
.limitations-body strong { color: var(--ink); }

/* Mobile sticky CTA -------------------------------------------------------------------------- */

.mobile-cta-bar { display: none; }
@media (max-width: 767px) {
  .mobile-cta-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: var(--space-3) var(--space-4);
    padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(11, 23, 54, 0.12);
  }
  main.home-page { padding-bottom: 5.25rem; }
}

/* Small-screen guards: nothing may push the viewport sideways. */
main.home-page, .hero-home, .business-band, .trust-strip { max-width: 100%; overflow-x: clip; }
.shell img, .shell svg { max-width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .hv-scanline { animation: none; }
  .bundle-card:hover { transform: none; }
}

/* --- 22. Pricing UX remediation --------------------------------------------- */
/* Public pricing presentation: hero price strip, availability badges,
   per-VIN rows, the full pricing page, FAQ, and the closing CTA band.
   Same constraints as everything above: self-hosted only, fluid layout,
   strict 'self' CSP, and never a price value in a stylesheet. */

/* The pricing page uses the same full-bleed band layout as the homepage. */
main.pricing-page {
  max-width: none;
  padding: 0;
  margin: 0;
}
main.pricing-page > .banner,
main.pricing-page > .messages {
  max-width: var(--shell-max);
  margin: var(--space-4) auto;
  padding-inline: var(--space-4);
}
main.pricing-page, .cta-band { max-width: 100%; overflow-x: clip; }
@media (max-width: 767px) {
  main.pricing-page { padding-bottom: 5.25rem; }
}

/* Anchored sections land below the sticky header. */
#consumer-pricing, #business-pricing, #pricing-faq { scroll-margin-top: 5rem; }

/* Hero price messaging ------------------------------------------------------- */

.hero-price-line {
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.15rem);
  color: #dbe4f5;
  max-width: 38rem;
  margin: 0 0 var(--space-5);
  padding-left: var(--space-3);
  border-left: 3px solid var(--electric-soft);
}
.hero-price-line strong { color: #fff; font-weight: 700; }

.hero-price-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  margin: var(--space-5) 0 0;
  padding: 0;
}
.hero-price-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-sm);
  color: #c9d4e8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 178, 235, 0.28);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.95rem;
}
.hero-price-strip strong { color: #fff; }
.hero-price-strip li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric) 0%, var(--teal) 100%);
}

/* Pricing hero band ----------------------------------------------------------- */

.pricing-hero {
  border-radius: 0;
  margin: 0;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background:
    radial-gradient(46rem 26rem at 88% -12%, rgba(59, 130, 246, 0.32), transparent 60%),
    radial-gradient(36rem 22rem at -10% 110%, rgba(67, 180, 177, 0.2), transparent 60%),
    linear-gradient(150deg, #0a1430 0%, var(--navy) 50%, #10275c 100%);
}
.pricing-hero .hero-title { font-size: var(--text-hero); letter-spacing: -0.025em; }
.pricing-hero .hero-lead { max-width: 40rem; }

.pricing-jump {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  margin-top: var(--space-5);
}
.pricing-jump a {
  color: #b7d1ff;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  border-bottom: 2px solid rgba(96, 165, 250, 0.4);
  padding: var(--space-2) 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.pricing-jump a:hover { color: #fff; border-bottom-color: #fff; }

/* Package card additions ------------------------------------------------------- */

.bundle-per {
  color: var(--accent-deep);
  font-weight: 600;
  font-size: var(--text-sm);
  margin: 0;
}
.bundle-blurb { color: var(--muted); font-size: var(--text-sm); margin: 0; }

.avail-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  padding: 0.35rem 0.85rem;
  margin: var(--space-3) auto 0;
}
.avail-staged {
  color: var(--warn);
  background: var(--warn-bg);
  border: 1px solid #f2d1a9;
}
.bundle-card .avail-badge { margin-top: auto; }

/* Business plan columns (pricing page) ------------------------------------------ */

.plan-columns {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-5);
}
@media (min-width: 768px) { .plan-columns { grid-template-columns: repeat(2, 1fr); } }

.plan-column-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 178, 235, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.plan-column-card .business-plan-amount { font-size: clamp(2rem, 1.6vw + 1.5rem, 2.6rem); }
.plan-column-card .actions { margin-top: auto; padding-top: var(--space-3); }

.business-features-page {
  columns: 1;
  margin-top: var(--space-5);
}
@media (min-width: 768px) { .business-features-page { columns: 2; column-gap: var(--space-6); } }
.business-features-page li { break-inside: avoid; }

.button-ghost-light, a.button-ghost-light {
  background: transparent;
  color: #dbe4f5;
  border: 1px solid rgba(148, 178, 235, 0.4);
}
.button-ghost-light:hover, a.button-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* FAQ ----------------------------------------------------------------------------- */

.faq-list { display: grid; gap: var(--space-3); max-width: 46rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: var(--space-4) var(--space-5);
  list-style-position: inside;
  border-radius: var(--radius-md);
  min-height: 44px;
}
.faq-item summary:hover { background: var(--surface-soft); }
.faq-item[open] summary { border-bottom: 1px solid var(--line-soft); }
.faq-item p {
  padding: var(--space-4) var(--space-5);
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
}

/* Closing CTA band ------------------------------------------------------------------ */

.cta-band {
  background:
    radial-gradient(40rem 22rem at 100% 0%, rgba(59, 130, 246, 0.3), transparent 60%),
    linear-gradient(140deg, #0a1430 0%, var(--navy-soft) 100%);
  color: #dbe4f5;
  padding: var(--space-7) 0;
}
.cta-band-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .cta-band-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } }
.cta-band-copy { color: #c9d4e8; max-width: 34rem; margin: 0; }
.cta-band .actions { justify-content: flex-start; }
@media (min-width: 900px) { .cta-band .actions { justify-content: flex-end; } }
