:root {
  --ink: #111827;
  --ink-soft: #475569;
  --muted: #5b6b82;
  --line: #d8dee5;
  --line-soft: #e7ecf2;
  --paper: #ffffff;
  --paper-warm: #fffdf8;
  --surface-tint: #f9fbfa;
  --wash: #f4f6f7;
  --wash-strong: #e9eef2;
  --blue: #123b63;
  --blue-strong: #0b2744;
  --teal: #0f766e;
  --teal-soft: #e7f5f2;
  --brass: #b7791f;
  --brass-dark: #80530f;
  --brass-soft: #f5ead2;
  --blue-soft: #e8f0f7;
  --accent: var(--teal);
  --accent-rgb: 15, 118, 110;
  --accent-deep: var(--blue-strong);
  --accent-soft: var(--teal-soft);
  --accent-line: #bdd8d3;
  --premium-soft: #f8efd9;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: var(--wash);
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 16px;
  border: 2px solid #ffffff;
  border-radius: 7px;
  background: var(--blue-strong);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transform: translateY(calc(-100% - 24px));
  transition: transform 140ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
  transform: translateY(0);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08) 0%, rgba(15, 118, 110, 0) 28%),
    linear-gradient(225deg, rgba(183, 121, 31, 0.10) 0%, rgba(183, 121, 31, 0) 30%),
    linear-gradient(180deg, #f7f8f5 0%, #f2f5f6 52%, #edf2f4 100%);
}

.platform-home {
  --accent: var(--teal);
  --accent-rgb: 15, 118, 110;
  --accent-deep: var(--blue-strong);
  --accent-soft: var(--teal-soft);
  --accent-line: #bdd8d3;
}

.valuation-product {
  --accent: var(--blue);
  --accent-rgb: 18, 59, 99;
  --accent-deep: var(--blue-strong);
  --accent-soft: var(--blue-soft);
  --accent-line: #c5d6e5;
}

.real-estate-product {
  --accent: var(--teal);
  --accent-rgb: 15, 118, 110;
  --accent-deep: #0b4f4a;
  --accent-soft: var(--teal-soft);
  --accent-line: #bdd8d3;
}

.topbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  padding: 0 clamp(18px, 2vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.4vw, 28px);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 850;
  font-size: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ink), var(--accent-deep));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(var(--accent-rgb), 0.16);
}

.nav-links {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px clamp(14px, 1.8vw, 22px);
  font-size: 14px;
  color: var(--ink-soft);
  min-width: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta,
.button-primary,
.button-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta,
.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-strong), var(--accent-deep));
  border: 1px solid var(--blue-strong);
  box-shadow: 0 12px 26px rgba(11, 39, 68, 0.16);
}

.button-secondary {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, var(--surface-tint));
  border: 1px solid var(--accent-line);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 540px;
  margin: 0 auto;
  padding: 28px 0 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  gap: 30px;
  align-items: center;
}

.hero-copy {
  max-width: 590px;
}

.hero-copy,
.visual-main,
.workspace-visual,
.report-visual,
.product-panel,
.insight-panel,
.pricing-panel {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.product-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 54px;
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 780px;
}

.hero-lede,
.product-lede {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}

.hero-actions,
.product-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-item {
  min-width: 0;
  border: 1px solid var(--accent-line);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, var(--surface-tint) 100%);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.045);
}

.proof-value {
  display: block;
  color: var(--accent-deep);
  font-size: 18px;
  font-weight: 850;
}

.proof-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.valuation-access-grid {
  gap: 18px;
}

.valuation-access-grid .access-option {
  --option-accent: #2457d6;
  --option-accent-rgb: 36, 87, 214;
  position: relative;
  min-height: 276px;
  padding: 22px 22px 24px;
  overflow: hidden;
  border: 2px solid rgba(var(--option-accent-rgb), 0.34);
  border-top: 7px solid var(--option-accent);
  background:
    linear-gradient(145deg, #ffffff 0%, rgba(var(--option-accent-rgb), 0.1) 100%);
  box-shadow:
    0 18px 38px rgba(7, 18, 40, 0.12),
    0 3px 0 rgba(var(--option-accent-rgb), 0.08);
}

.valuation-access-grid .access-option-free {
  --option-accent: #08766f;
  --option-accent-rgb: 8, 118, 111;
}

.valuation-access-grid .access-option-pass {
  --option-accent: #a76408;
  --option-accent-rgb: 167, 100, 8;
}

.valuation-access-grid .access-option-individual {
  --option-accent: #2457d6;
  --option-accent-rgb: 36, 87, 214;
}

.valuation-access-grid .access-option-advisor {
  --option-accent: #123b63;
  --option-accent-rgb: 18, 59, 99;
  background:
    linear-gradient(145deg, #ffffff 0%, rgba(8, 127, 120, 0.12) 100%);
}

.access-option-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.access-option-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  flex: 0 0 36px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--option-accent);
  font-size: 12px;
  font-weight: 850;
}

.access-option-type {
  color: var(--option-accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: right;
}

.valuation-access-grid .proof-value {
  color: #071228;
  font-size: 21px;
  line-height: 1.2;
}

.access-option-price {
  display: block;
  min-height: 48px;
  margin-top: 10px;
  color: #30435f;
  font-size: 14px;
  line-height: 1.4;
}

.access-option-price strong {
  margin-right: 4px;
  color: var(--option-accent);
  font-size: 30px;
  line-height: 1;
}

.access-option-features {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid rgba(var(--option-accent-rgb), 0.22);
  list-style: none;
}

.access-option-features li {
  position: relative;
  padding-left: 20px;
  color: #40516b;
  font-size: 13px;
  line-height: 1.45;
}

.access-option-features li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--option-accent);
  box-shadow: 0 0 0 4px rgba(var(--option-accent-rgb), 0.12);
}

.workspace-visual,
.report-visual {
  width: 100%;
  max-width: 500px;
  justify-self: end;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-tint) 100%);
  border: 1px solid var(--accent-line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.workspace-visual::before,
.report-visual::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--brass));
}

.visual-bar {
  min-height: 54px;
  border-bottom: 1px solid var(--accent-line);
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.12), rgba(183, 121, 31, 0.08));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--accent-deep);
  background: var(--accent-soft);
  font-size: 12px;
  font-weight: 850;
}

.visual-grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 320px;
}

.visual-rail {
  border-right: 1px solid var(--accent-line);
  background: linear-gradient(180deg, var(--accent-soft), #f9fbfa);
  padding: 14px;
}

.rail-item {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 0 8px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.rail-item.active {
  color: var(--accent-deep);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(var(--accent-rgb), 0.08);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

.visual-main {
  padding: 18px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  border: 1px solid var(--accent-line);
  border-radius: 8px;
  padding: 18px;
  min-height: 104px;
  background: #ffffff;
}

.metric-label,
.memo-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.metric-value {
  margin-top: 14px;
  color: var(--accent-deep);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.meter {
  margin-top: 18px;
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.memo-preview {
  margin-top: 14px;
  border: 1px solid #e0c891;
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(180deg, var(--paper-warm), #ffffff);
}

.memo-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.memo-table {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}

.memo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 13px;
}

.memo-row strong {
  color: var(--ink);
}

.section {
  padding: 62px 0;
  border-top: 1px solid var(--line-soft);
}

.section:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.42);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
  max-width: 720px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 420px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-panel,
.insight-panel,
.pricing-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(17, 24, 39, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pathway-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--accent-line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--accent-soft) 100%);
  box-shadow: 0 12px 32px rgba(var(--accent-rgb), 0.07);
}

.pathway-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--brass));
}

.pathway-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-strong), var(--accent-deep));
  font-size: 12px;
  font-weight: 900;
}

.pathway-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.18;
}

.pathway-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.product-panel:hover,
.insight-panel:hover {
  border-color: #b7c6d5;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
  transform: translateY(-2px);
}

.panel-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-panel h3,
.insight-panel h3,
.pricing-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
}

.product-panel p,
.insight-panel p,
.pricing-panel p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.feature-list li {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.arrow-link {
  margin-top: 26px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guide-cluster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.guide-cluster {
  min-width: 0;
  border: 1px solid var(--accent-line);
  border-top: 5px solid var(--accent);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, var(--surface-tint) 100%);
  box-shadow: var(--shadow);
}

.guide-cluster-head {
  position: relative;
  display: block;
  padding: 28px;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.09), rgba(var(--accent-rgb), 0)),
    var(--paper);
}

.guide-cluster-head-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.guide-cluster-head-link:hover {
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.14), rgba(183, 121, 31, 0.06)),
    var(--paper);
  box-shadow: inset 0 -1px 0 rgba(var(--accent-rgb), 0.18);
}

.guide-cluster-head-link:focus-visible,
.guide-card:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.28);
  outline-offset: 4px;
}

.guide-cluster-head h3 {
  margin: 0;
  padding-right: 52px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.16;
}

.guide-cluster-head p:not(.panel-kicker) {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.guide-cluster-open {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(var(--accent-rgb), 0.08));
  font-size: 22px;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease;
}

.guide-cluster-action {
  width: fit-content;
  margin-top: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-cluster-head-link:hover .guide-cluster-open {
  border-color: var(--accent);
  color: var(--paper);
  background: var(--accent);
  transform: translateX(3px);
}

.guide-card-grid {
  display: grid;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.05), rgba(255, 255, 255, 0.48));
}

.guide-card {
  position: relative;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  border-left: 4px solid transparent;
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  color: inherit;
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.05);
  transition:
    border-color 0.18s ease,
    border-left-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    background-color 0.18s ease;
}

.guide-card:hover {
  border-color: rgba(var(--accent-rgb), 0.34);
  border-left-color: var(--accent);
  background: var(--paper);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.1);
  transform: translateY(-2px);
}

.guide-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.22;
}

.guide-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.guide-card-action {
  margin-top: 16px;
  display: inline-flex;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-card-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.06);
  font-size: 18px;
  font-weight: 850;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease;
}

.guide-card:hover .guide-card-arrow {
  border-color: var(--accent);
  color: var(--paper);
  background: var(--accent);
  transform: translateX(3px);
}

.real-estate-guide-cluster {
  --accent: var(--teal);
  --accent-rgb: 15, 118, 110;
  --accent-line: #bdd8d3;
}

.valuation-guide-cluster {
  --accent: var(--blue);
  --accent-rgb: 18, 59, 99;
  --accent-line: #c5d6e5;
}

.product-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 500px;
  margin: 0 auto;
  padding: 32px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  gap: 34px;
  align-items: center;
}

.product-page .product-hero h1 {
  font-size: 50px;
  max-width: 620px;
}

.product-page .report-visual {
  max-width: 460px;
}

.report-sheet {
  padding: 20px;
}

.report-title-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 18px;
}

.report-title-row h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.price-tag {
  color: var(--brass);
  background: var(--brass-soft);
  border: 1px solid #e7d1a6;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  white-space: nowrap;
}

.sample-metric-note {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.report-lines {
  display: grid;
  gap: 10px;
}

.report-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 14px;
}

.report-line strong {
  color: var(--ink);
}

.mini-chart {
  margin-top: 20px;
  height: 108px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  background: #fbfcfd;
}

.mini-chart span {
  display: block;
  border-radius: 5px 5px 0 0;
  background: var(--blue);
}

.mini-chart span:nth-child(2n) {
  background: var(--teal);
}

.mini-chart span:nth-child(5) {
  background: var(--brass);
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.price-large {
  margin: 10px 0;
  color: var(--ink);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 48px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb {
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.guide-hero {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0 54px;
}

.guide-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0;
}

.guide-lede {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.75;
  max-width: 780px;
}

.guide-meta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-meta-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 850;
}

.guide-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.guide-article,
.guide-sidebar {
  min-width: 0;
}

.guide-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 18px;
}

.guide-section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 32px rgba(17, 24, 39, 0.05);
}

.guide-section + .guide-section {
  margin-top: 18px;
}

.guide-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.16;
}

.guide-section p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.guide-callout {
  border-color: #cbd9e6;
  background: #fbfdff;
}

.guide-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.guide-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.faq-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 18px;
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.4;
}

.faq-item p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.related-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.related-list a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
}

.related-list a:hover {
  color: var(--blue);
}

.product-panel,
.insight-panel,
.pricing-panel,
.guide-section,
.faq-item {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--surface-tint) 100%);
  border-color: rgba(var(--accent-rgb), 0.18);
}

.product-panel::before,
.insight-panel::before,
.pricing-panel::before,
.guide-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--brass));
}

.valuation-card {
  --accent: var(--blue);
  --accent-rgb: 18, 59, 99;
  --accent-deep: var(--blue-strong);
  --accent-soft: var(--blue-soft);
  --accent-line: #c5d6e5;
}

.real-estate-card {
  --accent: var(--teal);
  --accent-rgb: 15, 118, 110;
  --accent-deep: #0b4f4a;
  --accent-soft: var(--teal-soft);
  --accent-line: #bdd8d3;
}

.product-panel:hover,
.insight-panel:hover {
  border-color: var(--accent-line);
  box-shadow: 0 18px 42px rgba(var(--accent-rgb), 0.12);
}

.panel-kicker,
.arrow-link {
  color: var(--accent);
}

.feature-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.pricing-panel {
  background:
    linear-gradient(180deg, var(--paper-warm) 0%, #ffffff 100%);
  border-color: #e0c891;
}

.pricing-panel::before {
  background: linear-gradient(90deg, var(--brass), var(--accent));
}

.price-large,
.price-tag {
  color: var(--brass-dark);
}

.price-tag {
  background: var(--premium-soft);
}

.report-sheet {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper-warm) 100%);
}

.report-line strong {
  color: var(--accent-deep);
}

.mini-chart {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--accent-soft) 100%);
  border-color: var(--accent-line);
}

.guide-page .topbar,
.product-page .topbar,
.platform-home .topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 247, 248, 0.90);
  backdrop-filter: blur(14px);
}

.guide-hero,
.product-hero,
.hero {
  position: relative;
}

.guide-hero::after,
.product-hero::after,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line), transparent);
}

.guide-callout {
  border-color: var(--accent-line);
  background:
    linear-gradient(180deg, var(--accent-soft) 0%, #ffffff 100%);
}

.guide-warning {
  border-color: #e0c891;
  background:
    linear-gradient(180deg, var(--paper-warm) 0%, #ffffff 100%);
}

.guide-final-cta {
  background:
    linear-gradient(135deg, var(--accent-soft) 0%, #ffffff 58%, var(--paper-warm) 100%);
}

.guide-final-cta .product-actions {
  margin-top: 20px;
}

.guide-step-grid,
.guide-link-grid {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.guide-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-step {
  min-width: 0;
  border: 1px solid var(--accent-line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.guide-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-strong), var(--accent-deep));
  font-size: 12px;
  font-weight: 900;
}

.guide-step p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.65;
}

.guide-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-link-grid a {
  min-height: 74px;
  display: flex;
  align-items: center;
  border: 1px solid var(--accent-line);
  border-radius: 8px;
  padding: 16px;
  color: var(--accent-deep);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--accent-soft) 100%);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none;
}

.guide-link-grid a:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(var(--accent-rgb), 0.10);
  transform: translateY(-1px);
}

.faq-item {
  background: linear-gradient(180deg, #ffffff, #fbfaf6);
}

.faq-item summary {
  color: var(--accent-deep);
}

.related-list a {
  border-left: 3px solid var(--accent-line);
  padding: 8px 0 8px 12px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.06), transparent);
}

@media (max-width: 960px) {
  .topbar {
    min-height: auto;
    padding: 16px clamp(16px, 2.4vw, 24px);
    align-items: flex-start;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero,
  .product-hero,
  .pricing-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .workspace-visual,
  .report-visual {
    max-width: 680px;
    width: 100%;
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }

  .visual-rail {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .product-grid,
  .insight-grid,
  .pathway-grid,
  .guide-cluster-grid,
  .guide-layout,
  .guide-step-grid,
  .guide-link-grid {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar {
    width: min(100% - 28px, 1180px);
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px clamp(16px, 5vw, 22px);
  }

  .guide-page .topbar,
  .product-page .topbar,
  .platform-home .topbar {
    position: static;
    background: transparent;
    backdrop-filter: none;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nav-links a {
    min-height: 38px;
    display: flex;
    align-items: center;
  }

  .nav-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero h1,
  .product-hero h1 {
    font-size: 46px;
    line-height: 1.04;
  }

  .hero-actions,
  .product-actions,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .button-primary,
  .button-secondary {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media (max-width: 640px) {
  .topbar,
  .hero,
  .product-hero,
  .guide-hero,
  .guide-layout,
  .section-inner,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .hero,
  .product-hero {
    padding-top: 34px;
  }

  .hero h1,
  .product-hero h1 {
    font-size: 42px;
  }

  .hero-lede,
  .product-lede {
    font-size: 16px;
  }

  .hero-actions,
  .product-actions,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .proof-row,
  .metric-grid,
  .feature-list,
  .visual-rail {
    grid-template-columns: 1fr;
  }

  .product-panel,
  .insight-panel,
  .pricing-panel,
  .guide-section,
  .guide-cluster-head,
  .guide-card,
  .report-sheet,
  .visual-main {
    padding: 20px;
  }

  .memo-row,
  .report-line {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 420px) {
  .nav-links {
    grid-template-columns: 1fr;
  }

  .visual-bar,
  .memo-head,
  .report-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-value,
  .price-large {
    font-size: 34px;
  }
}

/* Premium finance-SaaS visual direction. */
:root {
  --ink: #071228;
  --ink-soft: #40516b;
  --muted: #5b6b82;
  --line: #d6e3ee;
  --line-soft: #e7eef5;
  --paper: #ffffff;
  --paper-warm: #fffaf0;
  --surface-tint: #f7fbff;
  --wash: #eef6fb;
  --wash-strong: #dfeaf3;
  --blue: #2457d6;
  --blue-strong: #07164a;
  --teal: #08766f;
  --teal-soft: #e6f6f3;
  --brass: #b77d24;
  --brass-dark: #80520e;
  --brass-soft: #f7ead1;
  --blue-soft: #eaf1ff;
  --premium-soft: #fbefd6;
  --shadow: 0 28px 70px rgba(7, 18, 40, 0.11);
  --shadow-soft: 0 16px 38px rgba(7, 18, 40, 0.075);
}

body {
  font-family: "Inter", "Aptos", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #eef6fb;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-shell {
  background:
    linear-gradient(180deg, #eef7ff 0%, #f8fbff 30%, #f4f8f7 68%, #fffaf0 100%);
}

.topbar {
  min-height: 76px;
  margin-top: 16px;
  border: 1px solid rgba(92, 117, 146, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(7, 18, 40, 0.08);
  backdrop-filter: blur(18px);
}

.guide-page .topbar,
.product-page .topbar,
.platform-home .topbar {
  top: 14px;
  background: rgba(255, 255, 255, 0.84);
}

.brand {
  gap: 13px;
  color: #06113f;
  font-size: 22px;
  font-weight: 850;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #06113f 0%, #0f766e 100%);
  box-shadow: 0 16px 34px rgba(8, 127, 119, 0.2);
}

.nav-links {
  color: #24324a;
  font-size: 14px;
}

.nav-links a:not(.nav-cta) {
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta):focus-visible {
  color: var(--accent-deep);
  background: rgba(var(--accent-rgb), 0.08);
  transform: translateY(-1px);
}

.nav-cta,
.button-primary,
.button-secondary {
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 850;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.nav-cta,
.button-primary {
  border-color: #1d4ed8;
  background: linear-gradient(135deg, #0b1b59 0%, #2457d6 58%, #087f77 100%);
  box-shadow: 0 16px 34px rgba(36, 87, 214, 0.25);
}

.button-secondary {
  color: #0b1b59;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(36, 87, 214, 0.28);
  box-shadow: 0 10px 24px rgba(7, 18, 40, 0.06);
}

.nav-cta:hover,
.button-primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #06113f 0%, #1d4ed8 56%, #04746d 100%);
  box-shadow: 0 22px 42px rgba(36, 87, 214, 0.28);
  transform: translateY(-2px);
}

.button-secondary:hover {
  color: #06113f;
  border-color: rgba(var(--accent-rgb), 0.44);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 18, 40, 0.09);
  transform: translateY(-2px);
}

.hero,
.product-hero {
  min-height: 620px;
  padding: 64px 0 76px;
  gap: 44px;
}

.hero-copy {
  max-width: 660px;
}

.hero h1,
.product-hero h1,
.guide-hero h1 {
  color: #071228;
  font-weight: 620;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 64px;
  line-height: 1;
}

.product-page .product-hero h1 {
  font-size: 58px;
  line-height: 1.02;
  max-width: 690px;
}

.guide-hero h1 {
  font-size: 64px;
  line-height: 1.03;
}

.hero-lede,
.product-lede,
.guide-lede {
  color: #40516b;
  font-size: 19px;
  line-height: 1.72;
}

.eyebrow,
.panel-kicker,
.metric-label,
.memo-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.section {
  padding: 86px 0;
  border-top-color: rgba(92, 117, 146, 0.14);
}

.section:nth-of-type(odd) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.18));
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2 {
  color: #071228;
  font-size: 46px;
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p {
  color: #5b6b82;
  font-size: 17px;
  line-height: 1.75;
}

.workspace-visual,
.report-visual,
.product-panel,
.insight-panel,
.pricing-panel,
.pathway-card,
.guide-cluster,
.guide-section,
.faq-item {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.workspace-visual,
.report-visual {
  max-width: 540px;
  border-color: rgba(var(--accent-rgb), 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #f8fbff 100%);
  box-shadow: var(--shadow);
}

.visual-bar {
  min-height: 62px;
  background:
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.11), rgba(36, 87, 214, 0.07), rgba(183, 125, 36, 0.08));
}

.status-pill,
.guide-meta-row span,
.price-tag {
  border-radius: 999px;
}

.proof-row {
  margin-top: 30px;
}

.proof-item {
  border-color: rgba(var(--accent-rgb), 0.16);
  border-top: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.82));
  box-shadow: 0 12px 30px rgba(7, 18, 40, 0.055);
}

.proof-value {
  color: #0b1b59;
}

.product-panel,
.insight-panel,
.pricing-panel,
.guide-section,
.faq-item {
  border-color: rgba(var(--accent-rgb), 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.94) 100%);
}

.product-panel,
.insight-panel,
.pricing-panel {
  padding: 32px;
}

a.product-panel,
a.insight-panel,
.guide-card,
.guide-link-grid a,
.guide-cluster-head-link {
  cursor: pointer;
}

a.product-panel,
a.insight-panel {
  padding-right: 76px;
}

a.product-panel::after,
a.insight-panel::after {
  content: "->";
  position: absolute;
  right: 26px;
  top: 30px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.06);
  font-size: 16px;
  font-weight: 900;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

a.product-panel:hover,
a.insight-panel:hover,
.guide-link-grid a:hover {
  border-color: rgba(var(--accent-rgb), 0.34);
  box-shadow: 0 24px 50px rgba(var(--accent-rgb), 0.13);
  transform: translateY(-4px);
}

a.product-panel:hover::after,
a.insight-panel:hover::after {
  color: #ffffff;
  border-color: var(--accent);
  background: var(--accent);
  transform: translateX(4px);
}

.product-panel h3,
.insight-panel h3,
.pricing-panel h3,
.pathway-card h3,
.guide-cluster-head h3,
.guide-card h4,
.guide-section h2,
.report-title-row h2 {
  color: #071228;
  font-weight: 680;
  letter-spacing: 0;
}

.product-panel h3,
.insight-panel h3,
.pricing-panel h3 {
  font-size: 29px;
}

.product-panel p,
.insight-panel p,
.pricing-panel p,
.guide-card p,
.guide-section p {
  color: #4a5b72;
}

.pathway-grid,
.product-grid,
.insight-grid {
  gap: 22px;
}

.pathway-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(var(--accent-rgb), 0.055) 100%);
}

.pathway-card span,
.guide-step span {
  border-radius: 999px;
  background: linear-gradient(135deg, #07164a, var(--accent));
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(7, 18, 40, 0.28);
}

.arrow-link {
  width: fit-content;
  min-height: 34px;
  margin-top: 28px;
  padding: 0 13px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--accent-rgb), 0.06);
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.arrow-link::after {
  content: "->";
  font-weight: 900;
}

.guide-cluster {
  border-top-width: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
}

.guide-cluster::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--brass));
}

.guide-cluster-head {
  padding: 34px;
}

.guide-cluster-open,
.guide-card-arrow {
  box-shadow: 0 12px 24px rgba(var(--accent-rgb), 0.12);
}

.guide-cluster-action,
.guide-card-action {
  letter-spacing: 0;
  text-transform: none;
}

.guide-card-grid {
  gap: 16px;
  padding: 20px;
}

.guide-card {
  padding: 22px;
  border-left-width: 1px;
  background: rgba(255, 255, 255, 0.94);
}

.guide-card:hover {
  border-left-color: rgba(var(--accent-rgb), 0.34);
  transform: translateY(-3px);
}

.pricing-panel {
  background:
    linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
  box-shadow: 0 18px 46px rgba(128, 82, 14, 0.09);
}

.price-large {
  font-weight: 760;
}

.footer {
  color: #5b6b82;
}

@media (max-width: 960px) {
  .topbar {
    margin-top: 12px;
  }

  .hero,
  .product-hero {
    min-height: auto;
    padding: 48px 0 58px;
  }

  .hero h1,
  .product-page .product-hero h1,
  .guide-hero h1 {
    font-size: 46px;
  }

  .section-head h2 {
    font-size: 38px;
  }
}

@media (max-width: 760px) {
  .topbar {
    border-radius: 20px;
  }

  .guide-page .topbar,
  .product-page .topbar,
  .platform-home .topbar {
    position: static;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
  }

  .nav-links a:not(.nav-cta) {
    justify-content: center;
    padding: 0 10px;
  }

  .hero h1,
  .product-page .product-hero h1,
  .guide-hero h1 {
    font-size: 39px;
    line-height: 1.05;
  }

  .hero-lede,
  .product-lede,
  .guide-lede {
    font-size: 16px;
    line-height: 1.65;
  }

  .section {
    padding: 62px 0;
  }

  .section-head h2 {
    font-size: 32px;
  }

  a.product-panel,
  a.insight-panel {
    padding-right: 62px;
  }
}

@media (max-width: 640px) {
  .hero,
  .product-hero,
  .guide-hero {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .hero h1,
  .product-page .product-hero h1,
  .guide-hero h1 {
    font-size: 34px;
  }

  .product-panel,
  .insight-panel,
  .pricing-panel,
  .guide-section,
  .guide-cluster-head,
  .guide-card,
  .pathway-card {
    padding: 22px;
  }
}

/* Valutico-inspired section color rhythm for ValuSight landing surfaces. */
.site-shell {
  position: relative;
  isolation: isolate;
  background: #edf7ff;
}

.site-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 760px;
  background:
    linear-gradient(180deg, #d9efff 0%, #edf7ff 58%, #f8fbff 100%);
}

.hero,
.product-hero,
.guide-hero {
  position: relative;
}

.hero {
  min-height: 690px;
}

.product-hero {
  min-height: 610px;
}

.hero::before,
.product-hero::before {
  display: none;
}

.site-shell > .section {
  position: relative;
  overflow: hidden;
  border-top: 0;
}

.site-shell > .section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.site-shell > .section > .section-inner {
  position: relative;
  z-index: 1;
}

.site-shell > .section:nth-of-type(2) {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 74%, #f3f9ff 100%);
}

.platform-home #products {
  background:
    linear-gradient(180deg, #fff9ec 0%, #f8eccf 58%, #f3dfb5 100%);
}

.platform-home #products::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(128, 83, 15, 0.04) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 250, 238, 0) 50%, rgba(183, 121, 31, 0.07) 100%);
}

.platform-home #products .section-head {
  justify-content: flex-start;
}

.platform-home #products .section-head h2 {
  max-width: 760px;
}

.platform-home #products .product-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 252, 255, 0.9) 100%);
  border-color: rgba(128, 83, 15, 0.2);
  box-shadow: 0 28px 70px rgba(76, 43, 4, 0.16);
}

.site-shell > .section:nth-of-type(3) {
  background:
    linear-gradient(180deg, #e3f3ff 0%, #d6ecff 100%);
}

.site-shell > .section:nth-of-type(4) {
  background:
    linear-gradient(180deg, #07185f 0%, #0b1d73 45%, #07105d 100%);
}

.site-shell > .section:nth-of-type(4)::before {
  background:
    linear-gradient(180deg, rgba(4, 12, 54, 0.06), rgba(4, 12, 54, 0.18));
}

.site-shell > .section:nth-of-type(5) {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 80%, #e8f6ff 100%);
}

.site-shell > .section:nth-of-type(6) {
  background:
    linear-gradient(180deg, #dff2ff 0%, #eaf7ff 100%);
}

.site-shell > .section:nth-of-type(7) {
  background:
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.site-shell > .section:nth-of-type(4) .section-head h2,
.site-shell > .section:nth-of-type(4) .section-head p,
.site-shell > .section:nth-of-type(4) .panel-kicker {
  color: #ffffff;
}

.site-shell > .section:nth-of-type(4) .section-head p {
  color: rgba(255, 255, 255, 0.82);
}

.site-shell > .section:nth-of-type(4) .pathway-card,
.site-shell > .section:nth-of-type(4) .product-panel,
.site-shell > .section:nth-of-type(4) .insight-panel,
.site-shell > .section:nth-of-type(4) .pricing-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.96) 100%);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 58px rgba(0, 7, 44, 0.28);
}

.site-shell > .section:nth-of-type(3) .workspace-visual,
.site-shell > .section:nth-of-type(3) .report-visual,
.site-shell > .section:nth-of-type(3) .product-panel,
.site-shell > .section:nth-of-type(3) .insight-panel,
.site-shell > .section:nth-of-type(3) .pricing-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(250, 253, 255, 0.88) 100%);
}

.site-shell > .section:nth-of-type(6) .guide-cluster,
.site-shell > .section:nth-of-type(6) .guide-section,
.site-shell > .section:nth-of-type(6) .insight-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 252, 255, 0.9) 100%);
}

.platform-home #guides {
  padding-bottom: 104px;
  background:
    linear-gradient(180deg, #d7ecfb 0%, #e4f3fd 17%, #f6fbff 29%, #d9edf8 48%, #afd2e9 70%, #5f93bd 86%, #0b2d61 100%);
}

.platform-home #guides::before {
  background:
    linear-gradient(180deg, rgba(18, 59, 99, 0.08) 0%, rgba(255, 255, 255, 0.26) 30%, rgba(7, 18, 40, 0) 62%, rgba(7, 18, 40, 0.24) 100%);
}

.platform-home #guides .section-head h2 {
  color: #071228;
}

.platform-home #guides .section-head p {
  max-width: 460px;
  padding: 18px 22px;
  border-left: 4px solid #123b63;
  border-radius: 8px;
  color: #173052;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(187, 221, 241, 0.82));
  box-shadow: 0 16px 36px rgba(7, 18, 40, 0.08);
}

.platform-home #guides .guide-cluster {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 251, 255, 0.95) 100%);
  box-shadow: 0 24px 64px rgba(7, 18, 40, 0.16);
}

.platform-home #guides .guide-card {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(7, 18, 40, 0.09);
}

.platform-home #guides .guide-card:hover {
  box-shadow: 0 24px 48px rgba(7, 18, 40, 0.16);
}

.platform-home .footer {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 20px max(20px, calc((100% - 1180px) / 2));
  color: #ffffff;
  background:
    linear-gradient(105deg, #0c4268 0%, #086f72 58%, #0a8f7f 100%);
  box-shadow: 0 -10px 28px rgba(7, 18, 40, 0.12);
}

.platform-home .footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #2457d6, #087f78, #b77d24);
}

.platform-home .footer p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.platform-home .footer a {
  color: #ffffff;
  font: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.48);
  text-underline-offset: 3px;
}

.platform-home .footer a:hover {
  text-decoration-color: #ffffff;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }

  .product-hero {
    min-height: auto;
  }

  .site-shell::before {
    height: 660px;
  }

  .site-shell > .section:nth-of-type(4) {
    background:
      linear-gradient(180deg, #07185f 0%, #0b1d73 45%, #07105d 100%);
  }

  .platform-home #guides {
    padding-bottom: 76px;
    background:
      linear-gradient(180deg, #d7ecfb 0%, #eef8ff 24%, #d6edf8 50%, #78a9ce 76%, #0b2d61 100%);
  }
}

/* Compact business valuation landing-page rhythm. */
.valuation-product .product-hero {
  min-height: 0;
  padding: 40px 0 52px;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 30px 40px;
  align-items: start;
}

.valuation-product .hero-copy {
  max-width: none;
}

.valuation-product .report-visual {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  max-width: 100%;
}

.valuation-product .valuation-access-grid {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.valuation-product .valuation-access-grid .access-option {
  min-height: 0;
  padding: 20px;
}

.valuation-product .access-option-heading {
  margin-bottom: 14px;
}

.valuation-product .access-option-price {
  min-height: 42px;
  margin-top: 8px;
}

.valuation-product .access-option-features {
  gap: 8px 20px;
  margin-top: 14px;
  padding-top: 14px;
}

.valuation-product .access-option-individual .access-option-features,
.valuation-product .access-option-advisor .access-option-features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.valuation-product > .section {
  padding: 56px 0;
}

.valuation-product .section-head {
  margin-bottom: 24px;
}

.valuation-product .section-head h2 {
  font-size: 42px;
}

.valuation-product .pathway-grid,
.valuation-product .product-grid,
.valuation-product .insight-grid {
  gap: 18px;
}

.valuation-product .pathway-card,
.valuation-product .product-panel,
.valuation-product .insight-panel {
  padding: 24px;
}

.valuation-product .valuation-guides a.insight-panel {
  padding-right: 76px;
}

.valuation-product .valuation-guides a.insight-panel::after {
  top: 24px;
}

.valuation-product .pathway-card h3 {
  margin-top: 14px;
  font-size: 22px;
}

.valuation-product .pathway-card p,
.valuation-product .product-panel p,
.valuation-product .insight-panel p {
  margin-top: 10px;
  line-height: 1.6;
}

.valuation-product .product-panel h3,
.valuation-product .insight-panel h3 {
  font-size: 25px;
}

.valuation-product .panel-kicker {
  margin-bottom: 12px;
}

.valuation-product .feature-list {
  margin-top: 16px;
}

.valuation-product .valuation-report-contents .product-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.valuation-product .valuation-report-contents .product-panel {
  grid-column: span 2;
}

.valuation-product .valuation-report-contents .product-panel:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.valuation-product .valuation-guides .insight-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.valuation-product .valuation-guides a.insight-panel {
  grid-column: span 2;
}

.valuation-product .valuation-guides a.insight-panel:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.valuation-product .valuation-faq .faq-list {
  margin-top: 0;
  gap: 10px;
}

.valuation-product .valuation-faq .faq-item {
  padding: 15px 18px;
}

.valuation-product .footer {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 28px max(20px, calc((100% - 1180px) / 2));
  color: #ffffff;
  background:
    linear-gradient(105deg, #07164a 0%, #123b63 60%, #087f78 100%);
  box-shadow: 0 -16px 36px rgba(7, 18, 40, 0.1);
}

.valuation-product .footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #2457d6, #087f78, #b77d24);
}

.valuation-product .footer-contact {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.valuation-product .footer-contact a {
  color: #ffffff;
  font: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.48);
  text-underline-offset: 3px;
}

.valuation-product .footer-contact a:hover {
  text-decoration-color: #ffffff;
}

@media (max-width: 1100px) {
  .valuation-product .access-option-individual .access-option-features,
  .valuation-product .access-option-advisor .access-option-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .valuation-product .product-hero {
    padding: 36px 0 46px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .valuation-product .report-visual {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
  }

  .valuation-product .valuation-access-grid {
    grid-column: 1;
    grid-row: 3;
  }

  .valuation-product .valuation-report-contents .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .valuation-product .valuation-report-contents .product-panel,
  .valuation-product .valuation-report-contents .product-panel:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .valuation-product .valuation-guides .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .valuation-product .valuation-guides a.insight-panel,
  .valuation-product .valuation-guides a.insight-panel:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .valuation-product .valuation-guides a.insight-panel:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .valuation-product .topbar {
    gap: 12px;
    padding: 14px 16px;
  }

  .valuation-product .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 10px;
  }

  .valuation-product .nav-links a {
    min-height: 32px;
    justify-content: center;
  }

  .valuation-product .nav-cta {
    min-height: 38px;
  }

  .valuation-product .product-hero {
    padding: 30px 0 40px;
  }

  .valuation-product > .section {
    padding: 46px 0;
  }

  .valuation-product .section-head {
    margin-bottom: 20px;
  }

  .valuation-product .section-head h2 {
    font-size: 32px;
  }

  .valuation-product .footer {
    padding: 24px 20px;
  }
}

@media (max-width: 640px) {
  .valuation-product .valuation-access-grid,
  .valuation-product .valuation-report-contents .product-grid,
  .valuation-product .valuation-guides .insight-grid {
    grid-template-columns: 1fr;
  }

  .valuation-product .valuation-guides a.insight-panel:last-child {
    grid-column: auto;
  }

  .valuation-product .valuation-access-grid .access-option,
  .valuation-product .pathway-card,
  .valuation-product .product-panel,
  .valuation-product .insight-panel {
    padding: 20px;
  }

  .valuation-product .valuation-guides a.insight-panel {
    padding-right: 64px;
  }

  .valuation-product .valuation-guides a.insight-panel::after {
    top: 20px;
    right: 18px;
  }

  .valuation-product .visual-bar {
    min-height: 56px;
    padding: 0 14px;
    flex-direction: row;
    align-items: center;
  }

  .valuation-product .report-sheet {
    padding: 16px;
  }

  .valuation-product .report-title-row {
    margin-bottom: 14px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .valuation-product .report-title-row h2 {
    font-size: 19px;
  }

  .valuation-product .report-line {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    font-size: 13px;
  }

  .valuation-product .mini-chart {
    height: 90px;
    margin-top: 16px;
    padding: 14px;
  }

  .valuation-product .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

/* Compact, client-facing ValuSight hub flow. */
.platform-home .hero {
  min-height: 620px;
  padding: 48px 0 60px;
  gap: 36px;
}

.platform-home > .section {
  padding: 64px 0;
}

.platform-home .section-head {
  margin-bottom: 26px;
}

.platform-home #workflow {
  background:
    linear-gradient(180deg, #07185f 0%, #0b1d73 45%, #07105d 100%);
}

.platform-home #workflow::before {
  background:
    linear-gradient(180deg, rgba(4, 12, 54, 0.06), rgba(4, 12, 54, 0.18));
}

.platform-home #workflow .section-head h2 {
  color: #ffffff;
}

.platform-home #workflow .pathway-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.96) 100%);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 58px rgba(0, 7, 44, 0.28);
}

.platform-home #guides {
  padding: 64px 0 78px;
}

@media (max-width: 960px) {
  .platform-home .hero {
    min-height: 0;
    padding: 42px 0 50px;
  }
}

@media (max-width: 760px) {
  .platform-home .topbar {
    gap: 12px;
    padding: 14px 16px;
  }

  .platform-home .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 10px;
  }

  .platform-home .nav-links a {
    min-height: 32px;
    justify-content: center;
  }

  .platform-home .nav-cta {
    min-height: 38px;
  }

  .platform-home .hero {
    padding: 30px 0 40px;
  }

  .platform-home > .section {
    padding: 48px 0;
  }

  .platform-home #guides {
    padding: 48px 0 60px;
  }
}
