:root {
  --primary: #1A237E;
  --primary-dark: #283593;
  --secondary: #3F51B5;
  --primary-container: #E8EAF6;
  --on-primary: #ffffff;
  --background: #FEFBFF;
  --surface: #ffffff;
  --text: #1B1B1F;
  --text-muted: #44464F;
  --outline: #757780;
  --accent: #D32F2F;
  --pass: #2E7D32;
  --pending: #F9A825;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --shadow: 0 4px 14px rgba(26, 35, 126, 0.08);
  --max-width: 1100px;
  --layout-max-width: 1280px;
  --edge-padding: clamp(1rem, 2vw, 2rem);
  --header-height: 56px;
  --header-logo-height: 26px;
  --footer-border: rgba(255, 255, 255, 0.12);
  --footer-text: rgba(255, 255, 255, 0.67);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.5;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-content,
.footer-inner {
  max-width: none;
}

/* ── Header ── */
.header {
  background: var(--primary);
  color: var(--on-primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
}

.header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.15); }

.header-content {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.logo-img { height: var(--header-logo-height); width: auto; object-fit: contain; }

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-links a:hover { color: var(--on-primary); }

.nav-cta { display: flex; gap: 0.5rem; margin-left: 0.5rem; align-items: center; }

.header .nav-cta .btn {
  height: var(--header-logo-height);
  min-height: var(--header-logo-height);
  padding: 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--on-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: opacity 0.15s;
  font-family: inherit;
}

.btn:hover { opacity: 0.9; }

.btn-primary { background: var(--on-primary); color: var(--primary); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: var(--on-primary); background: transparent; }
.btn-navy { background: var(--primary); color: var(--on-primary); }
.btn-outline-navy { border: 1px solid var(--primary); color: var(--primary); background: transparent; }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ── Auth backdrop (matches AuthBrandedScaffold) ── */
.auth-backdrop {
  position: relative;
  isolation: isolate;
  background: linear-gradient(
    to bottom right,
    rgba(232, 234, 246, 0.55) 0%,
    #FEFBFF 50%,
    rgba(63, 81, 181, 0.08) 100%
  );
  overflow: hidden;
}

.auth-backdrop::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(26, 35, 126, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 35, 126, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* primary @ 12%, 280px — top: -80, right: -60 */
.glow-orb--tr {
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(26, 35, 126, 0.12);
}

/* secondary @ 10%, 320px — bottom: -100, left: -80 */
.glow-orb--bl {
  bottom: -100px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: rgba(63, 81, 181, 0.1);
}

.hero-orb-bl {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 320px;
  height: 320px;
  z-index: 0;
  pointer-events: none;
}

.hero-orb-bl .glow-orb--bl {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
}

.hero-mascot-bg {
  position: absolute;
  width: 230px;
  height: 230px;
  left: 53px;
  bottom: 61px;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 8px 22px rgba(26, 35, 126, 0.1));
}

/* ── Sections ── */
.section {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-inner--wide {
  max-width: var(--layout-max-width);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ── Hero ── */
.hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.125rem;
}

.hero-title {
  margin: 0;
  text-align: center;
  line-height: 1.1;
}

.hero-title__primary,
.hero-title__secondary {
  display: block;
  color: var(--primary);
}

.hero-title__primary {
  font-size: clamp(1.625rem, 3.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-title__secondary {
  font-size: clamp(1.5rem, 3.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.hero-lead {
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.55;
  margin: 0 auto 1.375rem;
}

.hero-icp {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 auto 0.75rem;
  max-width: 40rem;
  line-height: 1.5;
}

.hero-reassurance {
  margin: 0.75rem auto 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}

.hero-lead--secondary {
  font-size: 0.9375rem;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 35, 126, 0.1);
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.35;
}

.hero-feature svg {
  flex-shrink: 0;
  color: var(--primary);
}

/* ── Branded cards ── */
.branded-card {
  background: var(--surface);
  border: 1px solid rgba(117,119,128,0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.branded-card__header {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(26,35,126,0.92) 50%, var(--primary-dark) 100%);
  padding: 1.25rem 1.5rem;
  color: var(--on-primary);
}

.branded-card__body { padding: 1.5rem; }

/* ── Report preview ── */
.report-section { background: var(--background); }

.report-builder {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .report-builder { grid-template-columns: 1fr; }
}

.report-builder-form {
  background: var(--surface);
  border: 1px solid rgba(117,119,128,0.22);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 5rem;
}

.report-builder-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.report-builder-field em {
  color: var(--fail);
  font-style: normal;
}

.report-builder-field input[type="text"],
.report-builder-field input[type="email"],
.report-builder-field input[type="tel"] {
  padding: 0.625rem 0.75rem;
  border: 1px solid rgba(117,119,128,0.35);
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 400;
}

.file-upload {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.file-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.file-upload__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}

.file-upload__button:hover {
  background: rgba(26,35,126,0.06);
}

.file-upload__name {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-builder-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.report-builder-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.report-builder-consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.report-builder-consent a {
  color: var(--primary);
}

.report-builder-signup-cta {
  margin-top: 2rem;
  padding: 1.75rem;
  text-align: center;
  background: rgba(232,234,246,0.45);
  border: 1px solid rgba(26,35,126,0.12);
  border-radius: var(--radius-md);
}

.report-builder-signup-cta h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0 0 0.5rem;
}

.report-builder-signup-cta p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.report-builder-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0.5rem 0 1rem;
}

.report-builder-error {
  color: var(--fail);
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.report-builder-success {
  color: var(--pass);
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.report-builder-preview {
  position: relative;
  min-height: 320px;
}

.report-watermark {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.report-watermark span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-28deg);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(198,40,40,0.22);
  white-space: nowrap;
  border: 3px solid rgba(198,40,40,0.18);
  padding: 0.5rem 1.5rem;
}

.report-mock__sample-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.report-mock__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.report-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.report-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(117,119,128,0.3);
  background: var(--surface);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-muted);
}

.report-tab.active {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
}

.report-panel { display: none; }
.report-panel.active { display: block; }

.report-mock {
  background: var(--surface);
  border: 1px solid rgba(117,119,128,0.25);
  border-radius: var(--radius-md);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.report-mock__cover {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, var(--primary), var(--secondary)) 1;
}

.report-mock__logo {
  width: 56px; height: 56px;
  background: var(--primary-container);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.report-mock__title { font-weight: 800; font-size: 1rem; }
.report-mock__abn { font-size: 0.75rem; color: var(--text-muted); }
.report-mock__type {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-top: 0.25rem;
}

.report-mock__ref {
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.report-mock h3 {
  font-size: 1.125rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.report-mock__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem 1.5rem;
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
}

.report-mock__grid dt { color: var(--text-muted); font-weight: 500; }
.report-mock__grid dd { font-weight: 600; margin: 0; }

.report-mock table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
}

.report-mock th {
  background: var(--primary-container);
  color: var(--primary);
  padding: 0.5rem;
  text-align: left;
  font-weight: 700;
}

.report-mock td {
  padding: 0.5rem;
  border-bottom: 1px solid rgba(117,119,128,0.15);
}

.report-mock__banner {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
}

.report-mock__banner--pass {
  background: rgba(46,125,50,0.12);
  color: var(--pass);
  border: 1px solid rgba(46,125,50,0.3);
}

.report-mock__chart {
  height: 120px;
  background: linear-gradient(180deg, rgba(63,81,181,0.08) 0%, transparent 100%);
  border: 1px dashed rgba(117,119,128,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
}

.report-mock__signatures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(117,119,128,0.2);
}

.report-mock__sig-line {
  border-bottom: 1px solid var(--text);
  height: 32px;
  margin-bottom: 0.25rem;
}

.report-mock__sig-label { font-size: 0.75rem; color: var(--text-muted); }

.report-mock__footer {
  margin-top: 1.5rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
}

.callout {
  max-width: 640px;
  margin: 2rem auto 0;
  padding: 1rem 1.25rem;
  background: rgba(232,234,246,0.5);
  border: 1px solid rgba(26,35,126,0.15);
  border-radius: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-align: center;
}

/* Field capture mock */
.field-mock {
  max-width: 360px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(117,119,128,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.field-mock__header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 1rem;
  color: var(--on-primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.field-mock__body { padding: 1rem; }

.field-mock__field {
  margin-bottom: 0.75rem;
}

.field-mock__field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.field-mock__input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(117,119,128,0.35);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  background: var(--background);
}

.field-mock__photo {
  height: 80px;
  border: 2px dashed rgba(117,119,128,0.35);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  gap: 0.5rem;
}

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-card .branded-card__header { padding: 1rem 1.25rem; }

.step-card__header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.step-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.step-card h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}
.step-card .branded-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.step-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0.5rem 0 1rem; flex: 1; }
.step-card .btn { margin-top: auto; }

/* ── Dashboard mock ── */
/* Report types (launch vs coming soon) */
.report-types-section {
  background: var(--surface);
}

.report-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 52rem;
  margin: 0 auto;
}

.report-types-group {
  background: rgba(232,234,246,0.35);
  border: 1px solid rgba(26,35,126,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
}

.report-types-group--soon {
  background: rgba(255,255,255,0.85);
  border-style: dashed;
}

.report-types-group__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 1rem;
}

.report-types-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.report-types-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(117,119,128,0.1);
}

.report-types-list li:last-child {
  border-bottom: none;
}

.report-types-list--soon li span:first-child {
  flex: 1;
  min-width: 0;
}

.report-types-pill {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--primary);
  background: rgba(26,35,126,0.08);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

.report-types-footnote {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.platform-section { background: rgba(232,234,246,0.25); }

.dashboard-mock {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-top-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  min-height: 340px;
}

.dashboard-welcome-wrap {
  padding: 2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(211,47,47,0.55) 0%, rgba(211,47,47,0.18) 50%, rgba(211,47,47,0.4) 100%);
  box-shadow: 0 4px 14px rgba(211,47,47,0.14);
}

.dashboard-welcome-tile {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.dashboard-welcome-tile__inner {
  background: var(--primary);
  color: var(--on-primary);
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.dashboard-welcome-tile__inner h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  flex-shrink: 0;
}

.dashboard-welcome-tile__inner > p {
  font-size: 0.8125rem;
  opacity: 0.85;
  margin: 0 0 1rem;
  flex-shrink: 0;
}

.dashboard-welcome-rings-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 0;
}

.dashboard-welcome-footer {
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.dashboard-welcome-rings {
  display: flex;
  gap: 0.375rem;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
}

.welcome-ring-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.welcome-ring-slot {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.welcome-ring,
.welcome-ring--lg {
  width: 72px;
  height: 72px;
  display: block;
  flex-shrink: 0;
}

.welcome-ring__caption {
  min-height: 36px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.welcome-ring__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.25;
  width: 100%;
  text-align: center;
}

.welcome-ring__sub {
  display: block;
  font-size: 9px;
  opacity: 0.7;
  margin-top: 2px;
  line-height: 1.2;
}

.dashboard-mock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.75rem;
  min-height: 2.5rem;
  box-sizing: border-box;
}

.dashboard-mock-btn--filled {
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.dashboard-welcome-actions {
  display: flex;
  gap: 0.5rem;
}

.dashboard-mock-btn--outline {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--on-primary);
  font-size: 0.875rem;
  padding: 0.625rem 0.75rem;
  min-height: 2.5rem;
}

.dashboard-metrics-tile {
  background: var(--surface);
  border: 1px solid rgba(117,119,128,0.15);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.dashboard-metrics-tile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.dashboard-metrics-tile__head h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0;
}

.dashboard-metrics-tile__period {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  border: 1px solid rgba(117,119,128,0.25);
  background: rgba(232,234,246,0.35);
}

.dashboard-metrics-tile__body {
  flex: 1;
  display: flex;
  gap: 0.75rem;
  min-height: 0;
}

.dashboard-metrics-rings {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.metrics-quota {
  display: flex;
  align-items: center;
  gap: 10px;
}

.metrics-quota__ring {
  width: 53px;
  height: 53px;
  flex-shrink: 0;
  display: block;
}

.metrics-quota__ring text {
  dominant-baseline: central;
  text-anchor: middle;
}

.metrics-quota__text {
  flex: 1;
  min-width: 0;
}

.metrics-quota__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.metrics-quota__sub {
  display: block;
  font-size: 0.625rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.dashboard-donut-mock {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 0;
}

.dashboard-donut-mock__chart-wrap {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard-donut-mock__chart {
  width: 136px;
  height: 136px;
  display: block;
  flex-shrink: 0;
}

.dashboard-donut-mock__total {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
}

.dashboard-donut-mock__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0.5rem;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

.dashboard-map-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(117,119,128,0.15);
  background: #6cd2e7;
  min-height: 340px;
}

.dashboard-map-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.dashboard-map-tile__badge {
  display: none;
}

.dashboard-donut-mock__legend .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.dot--draft { background: #757575; }
.dot--pending { background: #F57C00; }
.dot--pass { background: #2E7D32; }
.dot--fail { background: #C62828; }

.dashboard-hero-panel {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem 1rem;
  color: var(--on-primary);
  border: 2px solid rgba(211,47,47,0.35);
}

.dashboard-hero-panel__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.dashboard-hero-panel h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.dashboard-hero-panel p {
  font-size: 0.8125rem;
  opacity: 0.85;
}

.dashboard-hero-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.dashboard-chip {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  white-space: nowrap;
}

.dashboard-chip--warn {
  background: rgba(249,168,37,0.22);
  color: #FFE082;
}

.dashboard-hero-panel__rings {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.metric-ring--hero {
  flex: 0 0 auto;
}

.metric-ring__svg--lg {
  width: 80px;
  height: 80px;
}

.dashboard-hero-panel__footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.6875rem;
  opacity: 0.75;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.dashboard-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Dashboard list cards — matches app DashboardListCard */
.dash-card {
  background: var(--surface);
  border: 1px solid rgba(117,119,128,0.15);
  border-radius: 16px;
  overflow: hidden;
}

.dash-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 18px 12px 0 20px;
}

.dash-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.dash-card__titles--inline {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.375rem 0.625rem;
}

.dash-card__titles--inline .dash-card__subtitle {
  margin-top: 0;
}

.dash-card__subtitle {
  margin-top: 2px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.35;
}

.dash-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 0 8px 8px 0;
  flex-shrink: 0;
}

.dash-table {
  margin-top: 12px;
}

.dash-table__row {
  display: grid;
  column-gap: 12px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(117,119,128,0.08);
  min-height: 62px;
  overflow: visible;
}

.dash-table__row--review {
  grid-template-columns: 48px minmax(0, 3fr) minmax(0, 3fr) minmax(0, 2fr) minmax(0, 2fr) 40px;
}

.dash-table__row--assign {
  grid-template-columns: 48px minmax(0, 3fr) minmax(0, 3fr) minmax(0, 2fr) minmax(0, 2fr) 40px;
}

.dash-table__header {
  min-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(117,119,128,0.12);
}

.dash-table__header .dash-table__col {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: normal;
}

.dash-table__lead {
  width: 48px;
}

.dash-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-container);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dash-avatar--icon {
  color: var(--primary);
}

.dash-text {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-text--primary {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.dash-table__col--pill {
  overflow: visible;
  min-width: 0;
}

.dash-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.2;
  max-width: 100%;
  box-sizing: border-box;
}

.dash-pill--pending { background: rgba(249,168,37,0.15); color: #E65100; }
.dash-pill--pass { background: rgba(46,125,50,0.12); color: var(--pass); }
.dash-pill--fail { background: rgba(211,47,47,0.12); color: var(--accent); }
.dash-pill--secondary { background: rgba(63,81,181,0.12); color: var(--secondary); }

.dash-table__action {
  width: 40px;
  text-align: center;
  color: rgba(68,70,79,0.55);
  font-size: 18px;
  line-height: 1;
}

.metric-ring {
  text-align: center;
  flex: 1;
}

.metric-ring__svg {
  width: 52px; height: 52px;
  margin: 0 auto 0.5rem;
}

.metric-ring__label {
  font-size: 0.625rem;
  font-weight: 600;
  opacity: 0.9;
}

.metric-ring__sub { font-size: 0.5625rem; opacity: 0.7; }

/* App-style list cards */
.app-list-card {
  background: var(--surface);
  border: 1px solid rgba(117,119,128,0.22);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.app-list-card__titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(117,119,128,0.1);
}

.app-list-card__titlebar h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.app-list-card__titlebar--inline .app-list-card__title-group {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.app-list-card__subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.app-list-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
}

.app-list-card__header,
.app-list-card__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
}

.app-list-card__header {
  min-height: 2.5rem;
  border-bottom: 1px solid rgba(117,119,128,0.06);
  background: rgba(232,234,246,0.35);
}

.app-list-card__col {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  flex: 1;
  min-width: 0;
}

.app-list-card__col--lead { width: 2.25rem; flex: 0 0 2.25rem; }
.app-list-card__col--action { width: 2rem; flex: 0 0 2rem; }

.app-list-card__row {
  min-height: 3.875rem;
  border-bottom: 1px solid rgba(117,119,128,0.08);
  font-size: 0.8125rem;
}

.app-list-card__row:last-child { border-bottom: none; }

.app-list-card__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--primary-container);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-list-card__cell {
  color: var(--text-muted);
  font-size: 0.8125rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-list-card__cell--primary {
  color: var(--text);
  font-weight: 600;
}

.app-list-card__action {
  width: 2rem;
  flex-shrink: 0;
  text-align: center;
  color: rgba(68,70,79,0.55);
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.app-pill {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
}

.app-pill--pending { background: rgba(249,168,37,0.15); color: #E65100; }
.app-pill--pass { background: rgba(46,125,50,0.12); color: var(--pass); }
.app-pill--fail { background: rgba(211,47,47,0.12); color: var(--accent); }
.app-pill--secondary { background: rgba(63,81,181,0.12); color: var(--secondary); }

.app-list-card__avatar--icon {
  font-size: 0.875rem;
  background: var(--primary-container);
}

/* ── Features grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(117,119,128,0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.feature-card:hover { box-shadow: var(--shadow); }

.feature-card svg { color: var(--primary); margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.375rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
  padding-top: 0.875rem;
}

.price-card-shell {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-card-shell .badge {
  top: -0.75rem;
  z-index: 3;
}

.price-card-shell .price-card {
  flex: 1;
}

.price-card {
  background: var(--surface);
  border: 1px solid rgba(117,119,128,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
  background: var(--primary);
}

.price-card__header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--on-primary);
  padding: 1.25rem 1.5rem 1rem;
  text-align: center;
}

.price-card__header h2 { font-size: 1.25rem; font-weight: 800; margin: 0; }

.price-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--surface);
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0.75rem 0;
  text-align: center;
}

.price span { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }

.price-card ul {
  list-style: none;
  margin-bottom: 1.25rem;
  flex: 1;
}

.price-card li {
  padding: 0.3rem 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.price-card li::before { content: "✓ "; color: var(--primary); font-weight: 700; }

.badge {
  position: absolute;
  top: -0.6875rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.6875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 2;
}

.upgrade-nudge {
  background: rgba(232,234,246,0.6);
  border: 1px solid rgba(26,35,126,0.12);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

/* Report packs & seats */
.packs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 44rem;
  margin: 2.5rem auto 0;
  align-items: stretch;
}

.packs-block,
.seats-block {
  display: flex;
  flex-direction: column;
}

.packs-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.packs-block__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.875rem;
}

.packs-card,
.seats-card {
  background: var(--surface);
  border: 1px solid rgba(117,119,128,0.22);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.packs-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  flex: 1;
}

.packs-table th {
  background: var(--primary-container);
  color: var(--primary);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  width: 50%;
}

.packs-table td {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(117,119,128,0.12);
  font-size: 0.875rem;
  text-align: center;
  width: 50%;
  font-variant-numeric: tabular-nums;
}

.packs-reports-cell { text-align: center; }

.packs-reports-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.packs-pill-slot {
  width: 4.5rem;
  text-align: right;
  flex-shrink: 0;
}

.packs-reports-num {
  width: 2.25rem;
  text-align: left;
  font-variant-numeric: tabular-nums;
}

.seats-card {
  padding: 1.25rem 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.seats-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.seats-card__price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.seats-card__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.seats-card__intro {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.seats-tier-list {
  list-style: none;
  text-align: left;
  border-top: 1px solid rgba(117,119,128,0.12);
  padding-top: 0.75rem;
}

.seats-tier-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.375rem 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.seats-tier-list__plan {
  font-weight: 700;
  color: var(--primary);
}

.packs-section__intro--below {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 44rem;
  margin: 1rem auto 0;
  line-height: 1.5;
}

.packs-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.packs-table .best-value {
  display: inline-block;
  background: rgba(46,125,50,0.12);
  color: var(--pass);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  border-radius: 999px;
  margin-left: 0;
  white-space: nowrap;
}

/* Comparison row */
.compare-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid rgba(117,119,128,0.2);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.8125rem;
}

.compare-row strong { display: block; color: var(--primary); font-size: 1rem; margin-bottom: 0.25rem; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(117,119,128,0.22);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  color: var(--text);
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer { display: block; }

/* ── CTA band (auth mesh + navy card feel) ── */
.cta-band {
  position: relative;
  isolation: isolate;
  padding: 4rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #1A237E 0%, rgba(26, 35, 126, 0.92) 50%, #283593 100%);
  color: var(--on-primary);
  box-shadow: 0 8px 32px rgba(26, 35, 126, 0.2);
}

.cta-mascot {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.cta-band__actions {
  justify-content: center;
  margin-bottom: 0;
}

.cta-band__actions .btn-primary {
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.cta-band__actions .btn-outline {
  border-color: rgba(255,255,255,0.75);
  color: white;
  background: rgba(255,255,255,0.08);
}

.cta-band__actions .btn-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: white;
}

/* ── Footer ── */
.social-proof-section {
  background: rgba(232,234,246,0.2);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.social-proof-card {
  margin: 0;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(117,119,128,0.15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.social-proof-card__quote {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
}

.social-proof-card__author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer {
  background: var(--text);
  border-top: 1px solid var(--footer-border);
  padding: 19px 0;
}

.footer-inner {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--footer-text);
}

.footer-copy {
  color: var(--footer-text);
}

.footer-built {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--footer-text);
  white-space: nowrap;
}

.footer-built a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: inherit;
  text-decoration: none;
}

.footer-built a:hover {
  opacity: 0.9;
}

.footer-built img {
  height: 20px;
  width: auto;
  display: block;
}

/* ── Pricing page ── */
.pricing-page-hero {
  text-align: center;
  padding: 3rem 1.5rem 1rem;
}

.pricing-page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--primary); font-weight: 800; }
.pricing-page-hero p { color: var(--text-muted); margin-top: 0.5rem; }

/* ── Legal pages ── */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal-page .legal-updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--primary);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .header-content { position: relative; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    background: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }

  .nav.open { display: flex; }

  .nav-links,
  .nav-cta {
    display: flex;
    flex-direction: column;
    position: static;
    margin: 0;
    padding: 0;
    gap: 0;
    background: transparent;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 16px;
  }

  .nav-cta .btn {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 7px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }

  .hero {
    padding: 1.5rem 1rem;
  }

  .cta-band {
    padding: 3rem 1rem;
  }

  .cta-band__inner {
    padding: 1.75rem 1.25rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid { grid-template-columns: 1fr; }
  .dashboard-lists { grid-template-columns: 1fr; }
  .dashboard-top-row { grid-template-columns: 1fr; min-height: 0; }
  .dashboard-welcome-rings { flex-wrap: wrap; }
  .dashboard-metrics-tile__body { flex-direction: column; }
  .dash-table__row--review,
  .dash-table__row--assign {
    grid-template-columns: 48px minmax(0, 2fr) minmax(0, 2fr) minmax(0, 1.4fr) minmax(0, 1.4fr) 32px;
  }
  .dashboard-hero-panel__chips { justify-content: flex-start; }
  .packs-row { grid-template-columns: 1fr; max-width: 22rem; }
  .report-types-grid { grid-template-columns: 1fr; }
  .social-proof-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .compare-row { grid-template-columns: 1fr 1fr; }
  .report-mock__grid { grid-template-columns: 1fr; }
  .report-mock__signatures { grid-template-columns: 1fr; }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    max-width: 18rem;
  }

  .hero-feature {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 22rem;
  }

  .hero-mascot-bg {
    width: 169px;
    height: 169px;
    left: 77px;
    bottom: 77px;
  }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1fr; }

  .feature-card {
    padding: 1.25rem;
  }

  .logo-img { height: 24px; }
  :root { --header-logo-height: 24px; }
}
