@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Red+Rose:wght@700&display=swap");

@font-face {
  font-family: "Brand Inter";
  src: url("/fonts/brand/Inter-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brand Inter";
  src: url("/fonts/brand/Inter-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brand Inter";
  src: url("/fonts/brand/Inter-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #060706;
  --near-black: #211d1d;
  --muted: #6f6f6d;
  --faint: #a8a9aa;
  --surface: #ffffff;
  --surface-2: #f8f8f6;
  --surface-3: #f0efec;
  --line: #dedbd5;
  --line-strong: #b9b6b0;
  --green: #6b8f6a;
  --green-soft: rgba(171, 203, 170, .28);
  --sage: #c4cec3;
  --blue: #6f8393;
  --blue-soft: rgba(180, 204, 222, .28);
  --rust: #8c6250;
  --rust-soft: rgba(197, 184, 124, .24);
  --gold: #c5b87c;
  --gold-soft: rgba(197, 184, 124, .20);
  --shadow: 0 12px 40px rgba(6, 7, 6, .10);
  --shadow-sm: 0 4px 16px rgba(6, 7, 6, .07);
  --radius: 6px;
  --max: 1180px;
  --font: "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Brand Inter", sans-serif;
  --brand-wordmark: "Red Rose", "Brand Inter", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --serif: "Playfair Display", "FreightNeo Pro Book", "FreightNeo Pro", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--surface-2);
  color: var(--ink);
  font-family: var(--font);
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, textarea { font: inherit; }

.site-header {
  align-items: center;
  backdrop-filter: blur(22px) saturate(1.12);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px clamp(20px, 3vw, 58px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header:has(.mobile-menu[open]),
.suite-product-header:has(.mobile-menu[open]) {
  z-index: 1000;
}
.app-header { position: static; }
.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  width: 48px;
}
.logo-mark {
  background: transparent;
  border: 0;
  padding: 0;
}
.logo-mark img {
  display: block;
  height: 100%;
  image-rendering: -webkit-optimize-contrast;
  object-fit: contain;
  width: 100%;
}
.brand-copy { display: grid; gap: 1px; min-width: 0; }
.brand-copy strong {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  white-space: nowrap;
}
.brand-copy span { color: var(--muted); font-size: 12px; white-space: nowrap; }
.site-header .brand-copy strong,
.suite-product-header .brand-copy strong {
  font-family: var(--brand-wordmark);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.site-nav {
  align-items: center;
  display: flex;
  gap: 18px;
}
.mobile-nav-trigger {
  display: none;
}
.mobile-menu {
  display: none;
}
.site-nav {
  justify-content: flex-end;
  min-width: 0;
}
.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 12px;
  position: relative;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.site-nav a::after {
  background: var(--ink);
  border-radius: 999px;
  bottom: 2px;
  content: "";
  height: 2px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: opacity .18s ease, transform .18s ease;
  width: calc(100% - 24px);
}
.site-nav a:hover::after {
  opacity: .38;
  transform: translateX(-50%) scaleX(1);
}
.site-nav a.active::after,
.site-nav a:focus-visible::after {
  opacity: 0;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .nav-cta,
.site-nav a.active {
  background:
    radial-gradient(circle at 84% 76%, rgba(176, 176, 170, .26), transparent 28%),
    linear-gradient(155deg, #252424 0%, #050505 54%, #343230 100%);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 16px 36px rgba(6, 7, 6, .20), inset 0 1px 0 rgba(255, 255, 255, .20), inset 0 -16px 24px rgba(255, 255, 255, .05);
  color: white;
  transform: translateY(-1px);
}
.suite-body .site-header .site-nav a:hover,
.suite-body .site-header .site-nav a:focus-visible,
.suite-body .site-header .site-nav a.active {
  background:
    radial-gradient(circle at 84% 76%, rgba(176, 176, 170, .26), transparent 28%),
    linear-gradient(155deg, #252424 0%, #050505 54%, #343230 100%);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 16px 36px rgba(6, 7, 6, .20), inset 0 1px 0 rgba(255, 255, 255, .20), inset 0 -16px 24px rgba(255, 255, 255, .05);
  color: white;
  transform: translateY(-1px);
}

.hero {
  align-items: center;
  display: grid;
  isolation: isolate;
  min-height: calc(100vh - 160px);
  overflow: hidden;
  padding: 54px max(22px, calc((100vw - var(--max)) / 2)) 70px;
  position: relative;
}
.hero-scene {
  bottom: 26px;
  left: max(22px, calc((100vw - var(--max)) / 2));
  opacity: .86;
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  top: 24px;
  z-index: -1;
}
.scene {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  padding: 14px;
  position: absolute;
}
.scene-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.scene-top span { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.scene-top strong { font-size: 13px; }
.scene-sales {
  height: 315px;
  left: 56%;
  top: 26px;
  width: 360px;
}
.scene-meetings {
  bottom: 40px;
  height: 245px;
  left: 50%;
  width: 410px;
}
.scene-room {
  height: 238px;
  right: 28px;
  top: 210px;
  width: 300px;
}
.scene-bars {
  align-items: end;
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, 1fr);
  height: 140px;
  padding: 14px;
}
.scene-bars i {
  background: var(--near-black);
  border-radius: 4px 4px 0 0;
  display: block;
}
.scene-row {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.scene-row span { color: var(--muted); font-size: 12px; }
.answer-line {
  background: var(--line);
  border-radius: 999px;
  height: 12px;
  width: 82%;
}
.answer-line.wide { width: 96%; }
.answer-line.short { width: 52%; }
.source-chip {
  background: var(--green-soft);
  border: 1px solid rgba(171, 203, 170, .42);
  border-radius: var(--radius);
  color: var(--green);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-self: start;
  padding: 8px 10px;
}
.source-chip.blue {
  background: var(--blue-soft);
  border-color: rgba(180, 204, 222, .42);
  color: var(--blue);
}
.room-stack {
  display: grid;
  gap: 8px;
}
.room-stack span {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  padding: 12px;
}
.intent-meter {
  background: var(--line);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}
.intent-meter i {
  background: var(--gold);
  display: block;
  height: 100%;
}
.hero-copy {
  max-width: 690px;
  min-width: 0;
  position: relative;
}
.eyebrow {
  color: var(--near-black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
h1, h2, h3, p { margin: 0; }
h1, h2, h3, p, span, strong, a, button { overflow-wrap: break-word; }
.hero h1 {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  max-width: 760px;
}
.hero-text {
  color: var(--muted);
  font-size: 18px;
  margin-top: 20px;
  max-width: 620px;
}
.hero-actions,
.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.button {
  align-items: center;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(6, 7, 6, .13), inset 0 1px 0 rgba(255, 255, 255, .48);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.button::before {
  background:
    radial-gradient(circle at 78% 82%, rgba(176, 176, 170, .28), transparent 32%),
    linear-gradient(140deg, rgba(255, 255, 255, .36), transparent 42%);
  content: "";
  inset: 1px;
  opacity: .84;
  pointer-events: none;
  position: absolute;
}
.button:hover {
  box-shadow: 0 18px 42px rgba(6, 7, 6, .18), inset 0 1px 0 rgba(255, 255, 255, .58);
  transform: translateY(-2px);
}
.button > *,
.button {
  z-index: 1;
}
.button.primary {
  background:
    radial-gradient(circle at 84% 76%, rgba(176, 176, 170, .26), transparent 28%),
    linear-gradient(155deg, #252424 0%, #050505 54%, #343230 100%);
  border: 1px solid rgba(6, 7, 6, .88);
  box-shadow: 0 16px 36px rgba(6, 7, 6, .24), inset 0 1px 0 rgba(255, 255, 255, .20), inset 0 -16px 24px rgba(255, 255, 255, .05);
  color: white;
}
.button.secondary {
  background:
    radial-gradient(circle at 88% 72%, rgba(176, 176, 170, .18), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f4f4f3 48%, #dedede 100%);
  border: 1px solid rgba(6, 7, 6, .16);
  box-shadow: 0 12px 28px rgba(6, 7, 6, .10), inset 0 1px 0 rgba(255, 255, 255, .86), inset 0 -18px 30px rgba(6, 7, 6, .045);
  color: var(--ink);
}

.band {
  padding: 56px max(22px, calc((100vw - var(--max)) / 2));
  position: relative;
}
.section-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-head h2,
.split-band h2,
.pilot-band h2 {
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1.12;
  max-width: 720px;
}
.module-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.module-card,
.panel,
.kpi,
.requirements-grid div,
.signal-list div,
.signal-list a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.module-card {
  display: grid;
  gap: 14px;
  min-height: 248px;
  min-width: 0;
  padding: 20px;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.module-card::before {
  background: var(--ink);
  border-radius: var(--radius) var(--radius) 0 0;
  content: "";
  height: 4px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
}
.module-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 24px 58px rgba(6, 7, 6, .13);
  transform: translateY(-6px);
}
.module-card h3 { font-size: 22px; letter-spacing: 0; }
.module-card p,
.section-copy,
.requirements-grid span,
.signal-list span {
  color: var(--muted);
}
.module-icon {
  align-items: center;
  background: var(--green-soft);
  border-radius: var(--radius);
  color: var(--near-black);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 42px;
}
.text-link { color: var(--near-black); font-weight: 900; }
.split-band {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(6, 7, 6, .92), rgba(6, 7, 6, .72) 54%, rgba(6, 7, 6, .48)),
    linear-gradient(180deg, rgba(6, 7, 6, .10), rgba(6, 7, 6, .84)),
    url("/assets/projects/harborview-mixed-use-generated.webp") center / cover no-repeat;
  border-block: 0;
  color: white;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 360px;
  overflow: hidden;
}
.split-band::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .10), transparent 24%),
    radial-gradient(ellipse at 74% 16%, rgba(197, 184, 124, .25), transparent 28%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.split-band > * {
  position: relative;
  z-index: 1;
}
.split-band .eyebrow {
  color: var(--sage);
}
.section-copy {
  font-size: 16px;
  margin-top: 14px;
  max-width: 650px;
}
.split-band .section-copy {
  color: rgba(255, 255, 255, .72);
}
.signal-list {
  display: grid;
  gap: 10px;
}
.signal-list div,
.signal-list a {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .045));
  backdrop-filter: blur(18px) saturate(1.1);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 22px 55px rgba(0, 0, 0, .22);
  color: white;
  display: grid;
  gap: 4px;
  padding: 16px;
}
.signal-list a {
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.signal-list a:hover {
  border-color: rgba(255, 255, 255, .30);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 28px 62px rgba(0, 0, 0, .30);
  transform: translateY(-4px);
}
.signal-list b { font-size: 22px; }
.split-band .signal-list span {
  color: rgba(255, 255, 255, .66);
}
.requirements-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 20px;
}
.requirements-grid div {
  display: grid;
  gap: 8px;
  padding: 18px;
}
.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding: 22px max(22px, calc((100vw - var(--max)) / 2));
}
.site-footer a { color: var(--green); font-weight: 800; }

.suite-body {
  background: var(--surface-2);
}
.suite-hero {
  align-items: center;
  background:
    radial-gradient(ellipse at 62% -14%, rgba(255, 255, 255, .18), transparent 42%),
    linear-gradient(145deg, #050505 0%, #181717 54%, #060706 100%);
  color: white;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 430px;
  min-height: calc(100vh - 150px);
  overflow: hidden;
  padding: 64px max(22px, calc((100vw - var(--max)) / 2));
  position: relative;
}
.suite-hero-premium {
  background:
    radial-gradient(circle at 77% 24%, rgba(197, 184, 124, .34), transparent 25%),
    linear-gradient(90deg, rgba(6, 7, 6, .94) 0%, rgba(6, 7, 6, .77) 47%, rgba(6, 7, 6, .42) 100%),
    linear-gradient(180deg, rgba(6, 7, 6, .12), rgba(6, 7, 6, .9)),
    url("/assets/projects/riverbend-market-skyline.webp") center / cover no-repeat;
  grid-template-columns: minmax(0, .92fr) minmax(560px, .86fr);
  min-height: min(850px, calc(100svh - 78px));
  padding-bottom: 58px;
  padding-top: 74px;
}
.suite-hero-premium::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, .12), transparent 24%),
    linear-gradient(0deg, rgba(248, 247, 242, .96), transparent 18%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.suite-hero-premium::after {
  background:
    radial-gradient(ellipse at 74% 54%, rgba(255, 255, 255, .22), transparent 28%),
    radial-gradient(ellipse at 88% 20%, rgba(153, 214, 163, .12), transparent 24%);
  content: "";
  filter: blur(28px);
  inset: 0;
  opacity: .74;
  pointer-events: none;
  position: absolute;
}
.suite-hero-premium > * {
  min-width: 0;
  position: relative;
  z-index: 1;
}
.suite-copy {
  min-width: 0;
}
.suite-hero-premium .suite-copy {
  justify-items: center;
  text-align: center;
}
.suite-copy .eyebrow {
  color: var(--sage);
}
.suite-copy h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 5.9vw, 82px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .92;
  max-width: 850px;
}
.suite-typewriter {
  min-height: 2.78em;
}
.suite-typewriter::after {
  animation: typeCaret .8s step-end infinite;
  content: "";
  display: inline-block;
  height: .78em;
  margin-left: 6px;
  transform: translateY(.08em);
  width: 2px;
  background: rgba(255, 255, 255, .82);
}
.suite-typewriter.is-complete::after {
  animation: caretFade .34s ease forwards;
}
.suite-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.6;
  margin-top: 22px;
  max-width: 680px;
}
.hero-badge {
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: .12em;
  margin-bottom: 22px;
  padding: 8px 11px;
  text-transform: uppercase;
}
.hero-badge span {
  background: #99d6a3;
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(153, 214, 163, .13);
  display: inline-block;
  height: 8px;
  position: relative;
  width: 8px;
  animation: liveBlink 1.8s ease-in-out infinite;
}
.hero-badge span::after {
  border: 1px solid rgba(153, 214, 163, .72);
  border-radius: inherit;
  content: "";
  inset: -7px;
  opacity: .4;
  position: absolute;
  transform: scale(.72);
  animation: liveRing 1.8s ease-in-out infinite;
}
.suite-hero .hero-actions {
  gap: 12px;
}
.suite-hero .button {
  border-radius: 999px;
  font-family: var(--font);
  font-size: 18px;
  min-height: 50px;
  padding: 0 24px;
}
.suite-hero .button.primary,
.suite-hero .hero-primary,
.readiness-hero .button.primary,
.analyzer-band .button.primary,
.investor-hero .button.primary,
.meridian-call-experience .button.primary:not(.mic-button) {
  background:
    radial-gradient(circle at 84% 76%, rgba(176, 176, 170, .28), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f7f7f6 38%, #d7d7d4 100%);
  border-color: rgba(255, 255, 255, .72);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .92), inset 0 -18px 30px rgba(6, 7, 6, .06);
  color: var(--ink);
}
.suite-hero .button.primary:hover,
.suite-hero .hero-primary:hover,
.readiness-hero .button.primary:hover,
.analyzer-band .button.primary:hover,
.investor-hero .button.primary:hover,
.meridian-call-experience .button.primary:not(.mic-button):hover {
  background:
    radial-gradient(circle at 84% 76%, rgba(176, 176, 170, .34), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #fafafa 40%, #e5e5e2 100%);
}
.dark-secondary {
  background:
    radial-gradient(circle at 86% 78%, rgba(176, 176, 170, .22), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .055) 42%, rgba(6, 7, 6, .62) 100%);
  border-color: rgba(255, 255, 255, .30);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .22), inset 0 -18px 30px rgba(255, 255, 255, .05);
  color: white;
}
.dark-secondary:hover {
  background:
    radial-gradient(circle at 86% 78%, rgba(176, 176, 170, .30), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .30), rgba(255, 255, 255, .075) 42%, rgba(6, 7, 6, .52) 100%);
  color: white;
}
.suite-demo-panel {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  display: grid;
  gap: 18px;
  padding: 22px;
}
.suite-status-row {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
}
.suite-status-row span,
.suite-mini-grid span {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 800;
}
.suite-status-row strong {
  background: var(--sage);
  border-radius: var(--radius);
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  min-height: 30px;
  padding: 6px 10px;
}
.suite-mini-grid {
  display: grid;
  gap: 10px;
}
.suite-mini-grid div {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  display: grid;
  gap: 4px;
  padding: 14px;
}
.suite-mini-grid b {
  color: white;
  font-size: 24px;
  line-height: 1;
}
.suite-service-stack {
  display: block;
  min-height: 560px;
  perspective: 1200px;
  position: relative;
  transform-style: preserve-3d;
}
.suite-service-card {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, .18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .045));
  backdrop-filter: blur(24px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 28px 55px rgba(0, 0, 0, .34), 0 70px 120px rgba(0, 0, 0, .36);
  overflow: hidden;
  align-items: start;
  color: white;
  display: grid;
  gap: 10px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  min-height: 128px;
  opacity: 0;
  padding: 16px;
  position: absolute;
  text-decoration: none;
  transform: translate3d(var(--card-x, 0px), 0, 0) rotateY(var(--card-ry, -5deg)) rotateX(var(--card-rx, 1.5deg));
  transform-origin: center left;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
  animation: serviceCardPop .58s cubic-bezier(.19, 1, .22, 1) forwards;
  width: min(320px, 58%);
  z-index: var(--card-z, 1);
}
.suite-service-card-primary {
  left: 0;
  top: 18px;
  --card-x: 0px;
  --card-ry: -5deg;
  --card-rx: 2deg;
  --card-z: 3;
  animation-delay: .18s;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, .24), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .06));
}
.suite-service-card:nth-of-type(2) {
  right: 0;
  top: 166px;
  --card-x: 0px;
  --card-ry: -4deg;
  --card-rx: 1deg;
  --card-z: 2;
  animation-delay: .32s;
}
.suite-service-card:nth-of-type(3) {
  left: 126px;
  top: 302px;
  --card-x: 0px;
  --card-ry: -3deg;
  --card-rx: .4deg;
  --card-z: 1;
  animation-delay: .46s;
}
.suite-service-card:nth-of-type(4) {
  right: 28px;
  top: 438px;
  --card-x: 0px;
  --card-ry: -2deg;
  --card-rx: .4deg;
  --card-z: 1;
  animation-delay: .58s;
}
.suite-service-card:hover,
.suite-service-card:focus-visible,
.suite-service-card:nth-of-type(2):hover,
.suite-service-card:nth-of-type(2):focus-visible,
.suite-service-card:nth-of-type(3):hover,
.suite-service-card:nth-of-type(3):focus-visible {
  background:
    radial-gradient(circle at 86% 12%, rgba(197, 184, 124, .28), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .29), rgba(255, 255, 255, .085));
  border-color: rgba(255, 255, 255, .30);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 34px 80px rgba(0, 0, 0, .42), 0 86px 130px rgba(0, 0, 0, .38);
  transform: translate3d(calc(var(--card-x, 0px) - 6px), -10px, 44px) rotateY(-1deg) rotateX(0deg) scale(1.025);
  z-index: 8;
}
.suite-service-card::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, .34), transparent 38%);
  content: "";
  height: 1px;
  left: 22px;
  position: absolute;
  right: 22px;
  top: 0;
}
.suite-service-card::after {
  background: radial-gradient(circle, rgba(197, 184, 124, .28), transparent 62%);
  content: "";
  height: 170px;
  pointer-events: none;
  position: absolute;
  right: -70px;
  top: -80px;
  width: 170px;
}
.service-index {
  align-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .20), 0 18px 42px rgba(0, 0, 0, .20);
  display: flex;
  font-size: 13px;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  position: relative;
  width: 44px;
  z-index: 1;
}
.suite-service-card strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.service-card-copy {
  min-width: 0;
  position: relative;
  z-index: 1;
}
.suite-service-card p {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.45;
  margin: 8px 0 0;
  position: relative;
  z-index: 1;
}
.service-metric {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 800;
  align-self: start;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 7px 10px;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
}
.service-preview {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035));
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  grid-column: 1 / -1;
  margin-top: -6px;
  max-height: 0;
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 9px;
  position: relative;
  transition: max-height .22s ease, opacity .18s ease, padding .22s ease, border-color .22s ease, margin .22s ease;
  z-index: 1;
}
.suite-service-card:hover .service-preview,
.suite-service-card:focus-visible .service-preview {
  border-color: rgba(255, 255, 255, .13);
  margin-top: 0;
  max-height: 112px;
  opacity: 1;
  padding: 9px;
}
.sales-preview {
  display: grid;
  gap: 7px;
  grid-template-columns: minmax(92px, .8fr) minmax(0, 1.2fr);
}
.sales-preview span {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 800;
}
.sales-preview i {
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  display: block;
  height: 8px;
  margin-top: 5px;
  overflow: hidden;
}
.sales-preview i::after {
  background: linear-gradient(90deg, #fff, var(--gold));
  border-radius: inherit;
  content: "";
  display: block;
  height: 100%;
  width: var(--bar);
}
.meridian-preview {
  align-items: center;
  display: flex;
  gap: 8px;
}
.meridian-preview b {
  align-items: center;
  background: rgba(6, 7, 6, .62);
  border: 1px solid rgba(197, 184, 124, .36);
  border-radius: 12px;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}
.meridian-preview span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  margin-right: auto;
}
.meridian-preview em {
  background: linear-gradient(180deg, #fff, var(--gold));
  border-radius: 999px;
  display: block;
  height: 18px;
  width: 4px;
}
.meridian-preview em:nth-of-type(2) { height: 25px; }
.meridian-preview em:nth-of-type(3) { height: 14px; }
.meridian-preview em:nth-of-type(4) { height: 22px; }
.room-preview {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}
.room-preview span,
.room-preview strong {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 9px;
}
.room-preview strong {
  background: rgba(197, 184, 124, .20);
  color: white;
  grid-column: 1 / -1;
}
.demo-launch-band {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(197, 184, 124, .16), transparent 34%),
    linear-gradient(180deg, #f8f8f6 0%, #ffffff 42%, #f0efec 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.demo-launch-band::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .36)),
    radial-gradient(circle at 82% 20%, rgba(6, 7, 6, .10), transparent 22%);
  border: 1px solid rgba(6, 7, 6, .06);
  border-radius: 34px;
  box-shadow: 0 38px 90px rgba(6, 7, 6, .08), inset 0 1px 0 rgba(255, 255, 255, .88);
  content: "";
  inset: 28px max(14px, calc((100vw - calc(var(--max) + 48px)) / 2));
  pointer-events: none;
  position: absolute;
}
.demo-launch-band > * {
  position: relative;
  z-index: 1;
}
.demo-module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.suite-workflow-sections {
  background:
    linear-gradient(180deg, #f7f7f5 0%, #ffffff 42%, #efeeeb 100%);
  display: grid;
  gap: 18px;
  padding: 38px max(22px, calc((100vw - var(--max)) / 2)) 70px;
}
.suite-workflow-section {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(6, 7, 6, .92), rgba(6, 7, 6, .60)),
    url("/assets/projects/riverbend-market-skyline.webp") center / cover no-repeat;
  border: 1px solid rgba(6, 7, 6, .10);
  border-radius: 24px;
  box-shadow: 0 28px 75px rgba(6, 7, 6, .12), inset 0 1px 0 rgba(255, 255, 255, .14);
  color: white;
  display: grid;
  gap: 22px;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  min-height: 250px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  scroll-margin-top: 96px;
}
.suite-workflow-section::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 34%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.suite-workflow-section > * {
  position: relative;
  z-index: 1;
}
.workflow-meridian {
  background:
    linear-gradient(90deg, rgba(6, 7, 6, .92), rgba(6, 7, 6, .56)),
    url("/assets/projects/riverbend-multifamily-hero.webp") center / cover no-repeat;
}
.workflow-room {
  background:
    linear-gradient(90deg, rgba(6, 7, 6, .92), rgba(6, 7, 6, .56)),
    url("/assets/projects/harborview-mixed-use-generated.webp") center / cover no-repeat;
}
.workflow-capital {
  background:
    linear-gradient(90deg, rgba(6, 7, 6, .92), rgba(6, 7, 6, .56)),
    url("/assets/projects/cedar-park-btr-generated.webp") center / cover no-repeat;
}
.workflow-index {
  align-items: center;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
  display: flex;
  font-size: 14px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  width: 58px;
}
.suite-workflow-section .eyebrow {
  color: rgba(255, 255, 255, .70);
}
.suite-workflow-section h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .98;
  max-width: 780px;
}
.suite-workflow-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.55;
  margin-top: 12px;
  max-width: 650px;
}
.suite-workflow-section .button {
  align-self: end;
  white-space: nowrap;
}

.readiness-page {
  background: #f6f4ef;
}
.readiness-hero {
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(197, 184, 124, .32), transparent 26%),
    linear-gradient(90deg, rgba(6, 7, 6, .94) 0%, rgba(6, 7, 6, .78) 52%, rgba(6, 7, 6, .44) 100%),
    linear-gradient(180deg, rgba(6, 7, 6, .16), rgba(6, 7, 6, .86)),
    url("/assets/projects/riverbend-market-skyline.webp") center / cover no-repeat;
  color: white;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  min-height: min(720px, calc(100svh - 72px));
  overflow: hidden;
  padding: 72px max(22px, calc((100vw - var(--max)) / 2));
  position: relative;
}
.readiness-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 28%),
    linear-gradient(0deg, rgba(248, 247, 242, .94), transparent 17%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.readiness-hero::after {
  background: radial-gradient(ellipse at 76% 50%, rgba(255, 255, 255, .20), transparent 32%);
  content: "";
  filter: blur(28px);
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.readiness-hero > * {
  min-width: 0;
  position: relative;
  z-index: 1;
}
.readiness-hero .eyebrow {
  color: var(--sage);
}
.readiness-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .94;
  max-width: 780px;
}
.readiness-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
  line-height: 1.58;
  margin-top: 20px;
  max-width: 660px;
}
.readiness-score-card {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, .22), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .19), rgba(255, 255, 255, .055));
  backdrop-filter: blur(26px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 34px 78px rgba(0, 0, 0, .38);
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}
.readiness-score-card::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, .36), transparent 38%);
  content: "";
  height: 1px;
  left: 22px;
  position: absolute;
  right: 22px;
  top: 0;
}
.readiness-score-card span {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.readiness-score-card strong {
  color: white;
  font-family: var(--serif);
  font-size: 86px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .9;
}
.readiness-score-card p {
  color: rgba(255, 255, 255, .72);
  margin: 0;
}
.score-bar,
.module-fit-grid i {
  background: rgba(255, 255, 255, .13);
  border-radius: 999px;
  display: block;
  height: 9px;
  overflow: hidden;
}
.score-bar i,
.module-fit-grid i::after {
  background: linear-gradient(90deg, white, var(--gold));
  border-radius: inherit;
  content: "";
  display: block;
  height: 100%;
  width: var(--score);
}
.readiness-mini-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6px;
}
.readiness-mini-grid div {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  display: grid;
  gap: 5px;
  padding: 12px;
}
.readiness-mini-grid b {
  color: white;
  font-size: 24px;
  line-height: 1;
}
.readiness-mini-grid small {
  color: rgba(255, 255, 255, .60);
  font-size: 11px;
  font-weight: 800;
}
.readiness-band {
  background: #f6f4ef;
}
.assessment-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
}
.assessment-form {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.question-group {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(6, 7, 6, .08), inset 0 1px 0 rgba(255, 255, 255, .92);
  display: grid;
  gap: 0;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  padding: 0;
}
.question-group legend {
  background: var(--ink);
  color: white;
  float: left;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  padding: 16px 20px;
  text-transform: uppercase;
  width: 100%;
}
.readiness-question {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr);
  padding: 18px 20px;
}
.readiness-question > div:first-child {
  display: grid;
  gap: 6px;
}
.readiness-question strong {
  font-size: 15px;
  line-height: 1.3;
}
.readiness-question span {
  color: var(--muted);
  font-size: 13px;
}
.readiness-options {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.readiness-options button {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--near-black);
  cursor: pointer;
  display: grid;
  gap: 3px;
  min-height: 72px;
  padding: 12px;
  text-align: left;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.readiness-options button small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}
.readiness-options button.active,
.readiness-options button:hover {
  background:
    radial-gradient(circle at 85% 10%, rgba(197, 184, 124, .24), transparent 36%),
    var(--near-black);
  border-color: var(--near-black);
  box-shadow: 0 16px 32px rgba(6, 7, 6, .16);
  color: white;
  transform: translateY(-2px);
}
.readiness-options button.active small,
.readiness-options button:hover small {
  color: rgba(255, 255, 255, .64);
}
.assessment-output {
  display: grid;
  gap: 14px;
  min-width: 0;
  position: sticky;
  top: 92px;
}
.readiness-page .panel {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(6, 7, 6, .08), inset 0 1px 0 rgba(255, 255, 255, .92);
  overflow: hidden;
}
.readiness-page .panel-head {
  background: linear-gradient(145deg, #060706, #171512 66%, #2b2723);
  border-bottom: 0;
  color: white;
  min-height: 62px;
  padding: 16px 20px;
}
.readiness-page .panel-head h2,
.readiness-page .panel-head span {
  color: white;
}
.readiness-page .panel-head span {
  color: rgba(255, 255, 255, .58);
}
.readiness-page-head {
  background:
    linear-gradient(90deg, rgba(6, 7, 6, .92), rgba(6, 7, 6, .60) 60%, rgba(6, 7, 6, .30)),
    url("/assets/projects/cedar-park-btr-generated.webp") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  color: white;
  margin-bottom: 32px;
  min-height: 180px;
  overflow: hidden;
  padding: 34px;
  display: grid;
  gap: 14px;
  align-content: end;
}
.readiness-page-head h1 {
  color: white;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .95;
}
.readiness-page-head .head-meta {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
  max-width: 680px;
}
.impact-panel {
  border-top: 0;
}
.module-fit-grid {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.module-fit-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  padding: 12px;
}
.module-fit-grid span,
.readiness-needed-list strong {
  color: var(--near-black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.module-fit-grid strong {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}
.module-fit-grid p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}
.module-fit-grid i {
  background: var(--surface-3);
}
.readiness-needed-list {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.readiness-needed-list div {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 4px;
  padding: 12px;
}
.readiness-needed-list span {
  color: var(--muted);
  font-size: 13px;
}
.analyzer-band {
  background:
    radial-gradient(circle at 76% 18%, rgba(197, 184, 124, .22), transparent 28%),
    linear-gradient(90deg, rgba(6, 7, 6, .95), rgba(6, 7, 6, .80)),
    url("/assets/projects/riverbend-multifamily-hero.webp") center / cover no-repeat;
  color: white;
  overflow: hidden;
}
.analyzer-band::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .08), transparent 34%),
    radial-gradient(ellipse at 20% 100%, rgba(255, 255, 255, .11), transparent 38%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.analyzer-band > * {
  position: relative;
  z-index: 1;
}
.analyzer-band .eyebrow {
  color: var(--sage);
}
.analyzer-band .section-head h2 {
  color: white;
}
.analyzer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
}
.analyzer-band .panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .055));
  backdrop-filter: blur(22px) saturate(1.15);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 28px 68px rgba(0, 0, 0, .34);
}
.analyzer-band .panel-head {
  border-color: rgba(255, 255, 255, .14);
}
.analyzer-band .panel-head h2 {
  color: white;
}
.analyzer-band .panel-head span,
.analyzer-copy p {
  color: rgba(255, 255, 255, .66);
}
.analyzer-copy {
  padding: 16px 16px 0;
}
.analyzer-copy p {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.58;
}
.analyzer-drop-zone {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .28);
  box-sizing: border-box;
  color: white;
  margin: 0 16px;
  max-width: calc(100% - 32px);
}
.analyzer-drop-zone span {
  color: rgba(255, 255, 255, .62);
}
.analyzer-drop-zone.is-dragging {
  background: rgba(197, 184, 124, .20);
  border-color: var(--gold);
}
.analyzer-actions {
  margin: 0;
  padding: 0 16px 16px;
}
.analyzer-textarea {
  background: rgba(255, 255, 255, .92);
  border: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-sizing: border-box;
  max-width: 100%;
  min-height: 190px;
  overflow: auto;
  resize: vertical;
  width: 100%;
}
.lead-analysis-result {
  color: rgba(255, 255, 255, .72);
  display: grid;
  gap: 14px;
  padding: 16px;
}
.analyzer-summary-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.analyzer-summary-grid div {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  display: grid;
  gap: 4px;
  padding: 12px;
}
.analyzer-summary-grid strong {
  color: white;
  font-size: 28px;
  line-height: 1;
}
.analyzer-summary-grid span {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.analyzer-readout {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  padding: 14px;
}
.analyzer-readout.is-ready {
  border-left-color: #99d6a3;
}
.analyzer-readout strong {
  color: white;
}
.analyzer-readout p {
  color: rgba(255, 255, 255, .68);
  margin: 0;
}
.qualified-list {
  display: grid;
  gap: 10px;
}
.qualified-card {
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .22);
  border-left: 4px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  color: var(--ink);
  display: grid;
  gap: 8px;
  padding: 14px 16px;
}
.qualified-card.tier-1 { border-left-color: #99d6a3; }
.qualified-card.tier-2 { border-left-color: var(--gold); }
.qualified-card.needs-cleanup { border-left-color: #e07070; }
.qualified-card-head {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.qualified-card-head strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}
.qualified-score {
  align-items: center;
  background: rgba(6,7,6,.07);
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 5px;
  padding: 4px 9px;
  white-space: nowrap;
}
.qualified-card p {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  margin: 0;
}
.qualified-card small {
  background: rgba(255, 255, 255, .12);
  border-radius: 10px;
  color: rgba(255, 255, 255, .84);
  display: block;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}
.qualified-card .score-bar {
  height: 4px;
  margin-top: 2px;
}

.product-body {
  background: var(--surface-2);
}
.product-shell {
  display: flex;
  min-height: 100vh;
}
.template-sidebar {
  background: var(--surface);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 18px 14px;
  position: sticky;
  top: 0;
  width: 232px;
}
.sidebar-brand {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: inherit;
  display: flex;
  gap: 10px;
  min-height: 78px;
  padding: 2px 4px 18px;
  text-decoration: none;
}
.sidebar-nav {
  display: grid;
  gap: 3px;
  padding-top: 14px;
}
.nav-link {
  align-items: center;
  border-radius: var(--radius);
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 600;
  min-height: 38px;
  padding: 0 12px;
  text-decoration: none;
}
.nav-link:hover {
  background: var(--surface-3);
  color: var(--near-black);
}
.nav-link.active {
  background: var(--near-black);
  color: #fff;
}
.sidebar-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  margin-top: auto;
  padding: 14px 4px 0;
  text-transform: uppercase;
}
.main-pane {
  display: grid;
  flex: 1;
  grid-template-rows: auto 1fr;
  min-width: 0;
}
.template-topbar {
  align-items: center;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 24px;
}
.template-topbar span:first-child {
  color: var(--near-black);
  font-size: 13px;
  font-weight: 700;
}
.template-topbar span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.suite-product-header {
  align-items: center;
  backdrop-filter: blur(18px) saturate(1.08);
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 78px;
  padding: 10px clamp(18px, 2.8vw, 54px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.suite-brand {
  align-items: center;
  color: inherit;
  display: flex;
  gap: 12px;
  min-width: 0;
}
.suite-product-nav {
  align-items: center;
  display: flex;
  gap: 16px;
  overflow-x: auto;
}
.suite-product-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  flex: 0 0 auto;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 12px;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.suite-product-nav a:hover,
.suite-product-nav a:focus-visible,
.suite-product-nav .nav-cta,
.suite-product-nav a.active {
  background:
    radial-gradient(circle at 84% 76%, rgba(176, 176, 170, .26), transparent 28%),
    linear-gradient(155deg, #252424 0%, #050505 54%, #343230 100%);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 16px 36px rgba(6, 7, 6, .20), inset 0 1px 0 rgba(255, 255, 255, .20), inset 0 -16px 24px rgba(255, 255, 255, .05);
  color: white;
  transform: translateY(-1px);
}
.suite-main-pane {
  display: block;
  min-height: calc(100vh - 78px);
}
.suite-product-header + .product-shell {
  min-height: calc(100vh - 78px);
}
.suite-product-header + .product-shell .template-sidebar {
  height: calc(100vh - 78px);
  top: 78px;
}

.app-shell {
  display: grid;
  gap: 18px;
  max-width: var(--max);
  padding: 30px 24px 64px;
  margin: 0 auto;
  width: 100%;
}
.app-title {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-width: 0;
}
.app-title > * { min-width: 0; }
.app-title h1 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  min-height: 34px;
  padding: 0 12px;
}
.chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.kpi-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.kpi {
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 16px;
}
.kpi span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.kpi strong { font-size: 30px; line-height: 1; }
.kpi p { color: var(--muted); font-size: 13px; }
.dashboard-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
}
.panel { overflow: hidden; }
.panel-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
}
.panel-head h2 {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.panel-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.sales-page .main-pane {
  background:
    radial-gradient(ellipse at 82% -8%, rgba(197, 184, 124, .09), transparent 24%),
    linear-gradient(180deg, #f8f8f6, #ffffff 42%, #f0efec);
}
.sales-dashboard-shell {
  max-width: 1360px;
}
.sales-page .app-title {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(246, 246, 244, .92)),
    rgba(255, 255, 255, .74);
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 30px;
  box-shadow: 0 34px 85px rgba(6, 7, 6, .10), inset 0 1px 0 rgba(255, 255, 255, .94);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  min-height: 204px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}
.sales-page .app-title::before {
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, .70), transparent 26%),
    linear-gradient(135deg, rgba(6, 7, 6, .82), rgba(33, 29, 29, .28) 58%, rgba(180, 204, 222, .24));
  border-radius: 999px;
  box-shadow: inset 34px 38px 92px rgba(255, 255, 255, .19), inset -46px -44px 106px rgba(6, 7, 6, .24), 0 38px 90px rgba(6, 7, 6, .18);
  content: "";
  height: 150px;
  opacity: .82;
  position: absolute;
  right: -86px;
  top: -48px;
  transform: rotate(-12deg);
  width: 286px;
}
.sales-page .app-title > * {
  position: relative;
  z-index: 1;
}
.sales-page .app-title h1 {
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: .96;
  max-width: 760px;
}
.sales-page .app-title .eyebrow {
  color: rgba(6, 7, 6, .52);
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 12px;
}
.sales-page .app-title h1 {
  grid-column: 1;
  grid-row: 2;
}
.sales-page .toolbar {
  align-content: start;
  align-self: start;
  background:
    linear-gradient(145deg, #050505 0%, #1a1917 58%, #302d29 100%);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 24px;
  box-shadow: 0 26px 58px rgba(6, 7, 6, .24), inset 0 1px 0 rgba(255, 255, 255, .14);
  display: flex;
  gap: 8px;
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  min-height: 132px;
  padding: 18px;
  width: 100%;
}
.sales-page .toolbar::before {
  color: rgba(255, 255, 255, .58);
  content: "Reporting window";
  display: block;
  flex: 0 0 100%;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.sales-page .toolbar .chip {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .70);
}
.sales-page .toolbar .chip.active {
  background: white;
  border-color: white;
  color: var(--ink);
}
.sales-page .kpi {
  background: white;
  border: 1px solid rgba(6, 7, 6, .08);
  border-top: 4px solid var(--ink);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(6, 7, 6, .07);
  min-height: 140px;
  padding: 22px;
}
.sales-page .panel {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 22px;
  box-shadow: 0 20px 54px rgba(6, 7, 6, .07);
}
.sales-page .panel:has(.data-table) {
  overflow-x: clip;
}
.sales-page .panel:has(.data-table) .data-table {
  display: block;
  overflow-x: auto;
  width: 100%;
}
.sales-page .panel-head {
  background:
    linear-gradient(135deg, #050505 0%, #141311 62%, #2a2724 100%);
  border-bottom: 0;
  color: white;
  min-height: 56px;
}
.sales-page .panel-head h2,
.sales-page .panel-head span {
  color: white;
}
.sales-page .panel-head span {
  opacity: .68;
}
.list {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.list-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 6px;
  padding: 12px;
}
.list-item strong {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.list-item span,
.list-item p { color: var(--muted); font-size: 13px; }
.readout {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.readout p {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  padding: 12px;
}
.data-table {
  border-collapse: collapse;
  width: 100%;
}
.data-table th,
.data-table td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}
.data-table th {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.data-table tr:last-child td { border-bottom: 0; }
.score {
  background: var(--green-soft);
  border-radius: 999px;
  color: var(--near-black);
  display: inline-flex;
  font-weight: 900;
  min-width: 32px;
  justify-content: center;
  padding: 3px 8px;
}
.score.high {
  background: rgba(107, 143, 106, .16);
  border: 1px solid rgba(107, 143, 106, .24);
  color: #405f3f;
}
.score.mid {
  background: rgba(197, 184, 124, .20);
  border: 1px solid rgba(197, 184, 124, .32);
  color: #756830;
}
.score.low {
  background: rgba(140, 98, 80, .14);
  border: 1px solid rgba(140, 98, 80, .24);
  color: #7a4434;
}
.badge {
  align-items: center;
  background: rgba(6, 7, 6, .07);
  border: 1px solid rgba(6, 7, 6, .09);
  border-radius: 999px;
  color: var(--near-black);
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  min-height: 26px;
  padding: 0 9px;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-success {
  background: rgba(107, 143, 106, .16);
  border-color: rgba(107, 143, 106, .24);
  color: #405f3f;
}
.badge-info {
  background: rgba(111, 131, 147, .14);
  border-color: rgba(111, 131, 147, .24);
  color: #475e70;
}
.badge-warning {
  background: rgba(197, 184, 124, .20);
  border-color: rgba(197, 184, 124, .32);
  color: #756830;
}
.badge-danger {
  background: rgba(140, 98, 80, .14);
  border-color: rgba(140, 98, 80, .24);
  color: #7a4434;
}
.cell-main {
  color: var(--near-black);
  display: block;
  font-weight: 900;
  line-height: 1.22;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cell-sub {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  margin-top: 4px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chip-stack,
.score-stack {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip-stack {
  margin-top: 7px;
}
.score-stack {
  min-width: 124px;
}
.score-stack .score {
  min-height: 30px;
  min-width: 42px;
  padding: 0 10px;
}
.stage-pill,
.metric-pill {
  background: linear-gradient(180deg, #ffffff, #f1f0eb);
  border: 1px solid rgba(6, 7, 6, .09);
  border-radius: 999px;
  color: var(--near-black);
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  min-height: 30px;
  padding: 7px 10px;
}
.table-foot {
  border-top: 1px solid rgba(6, 7, 6, .07);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  padding: 12px 16px;
}
.panel-body {
  padding: 16px;
}
.empty-state {
  align-content: center;
  color: var(--muted);
  display: grid;
  gap: 4px;
  min-height: 96px;
  padding: 18px;
  text-align: center;
}
.empty-state strong {
  color: var(--near-black);
}
.sales-workspace-page {
  background: #f6f4ef;
}
.sales-workspace-page .site-header {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(6, 7, 6, .055);
}
.sales-workspace-page .product-shell {
  background: #f6f4ef;
  min-height: calc(100vh - 78px);
}
.sales-workspace-page .template-sidebar {
  background:
    linear-gradient(180deg, rgba(6, 7, 6, .92), rgba(16, 15, 14, .98)),
    url("/assets/suite/sales-intelligence-card.webp") center / cover no-repeat;
  border-right: 0;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, .08), 22px 0 58px rgba(6, 7, 6, .10);
  color: white;
  height: calc(100vh - 78px);
  padding: 20px 16px;
  top: 78px;
  width: 250px;
}
.sales-workspace-page .sidebar-brand {
  border-bottom-color: rgba(255, 255, 255, .12);
  min-height: 92px;
}
.sales-workspace-page .sidebar-brand .brand-copy strong {
  color: white;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
}
.sales-workspace-page .sidebar-brand .brand-copy span,
.sales-workspace-page .sidebar-footer {
  color: rgba(255, 255, 255, .56);
}
.sales-workspace-page .sidebar-footer {
  border-top-color: rgba(255, 255, 255, .12);
}
.sales-workspace-page .nav-link {
  border: 1px solid transparent;
  border-radius: 16px;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  min-height: 44px;
}
.sales-workspace-page .nav-link:hover {
  background: rgba(255, 255, 255, .09);
  color: white;
}
.sales-workspace-page .nav-link.active {
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(224, 223, 218, .94));
  border-color: rgba(255, 255, 255, .50);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .84);
  color: var(--ink);
}
.sales-workspace-page .main-pane {
  background:
    radial-gradient(ellipse at 84% -8%, rgba(180, 204, 222, .18), transparent 26%),
    linear-gradient(180deg, rgba(250, 249, 245, .96), rgba(255, 255, 255, .98) 44%, rgba(239, 237, 231, .94));
  flex: 1 1 0;
  max-width: calc(100vw - 250px);
  min-width: 0;
  width: calc(100vw - 250px);
}
.sales-workspace-page .template-topbar {
  backdrop-filter: blur(18px) saturate(1.08);
  background: rgba(255, 255, 255, .82);
  border-bottom-color: rgba(6, 7, 6, .08);
  box-sizing: border-box;
  min-height: 64px;
  margin: 0;
  max-width: calc(100vw - 250px);
  padding: 0 34px;
  width: calc(100vw - 250px);
}
.sales-workspace-page .app-shell {
  gap: 22px;
  grid-template-columns: minmax(0, 1fr);
  margin: 0;
  max-width: calc(100vw - 250px);
  padding: 34px clamp(20px, 3vw, 42px) 72px;
  width: calc(100vw - 250px);
}
.sales-workspace-page .page-head,
.sales-workspace-page .section-tabs,
.sales-workspace-page .sales-toolbar,
.sales-workspace-page .sales-table-panel,
.sales-workspace-page .panel {
  min-width: 0;
}
.sales-workspace-page .page-head {
  background:
    linear-gradient(90deg, rgba(6, 7, 6, .92), rgba(6, 7, 6, .70) 58%, rgba(6, 7, 6, .30)),
    linear-gradient(180deg, rgba(6, 7, 6, .14), rgba(6, 7, 6, .42)),
    url("/assets/suite/sales-intelligence-card.webp") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  box-shadow: 0 34px 90px rgba(6, 7, 6, .18), inset 0 1px 0 rgba(255, 255, 255, .14);
  color: white;
  display: grid;
  gap: 10px;
  min-height: 222px;
  overflow: hidden;
  padding: 32px 34px;
}
.sales-workspace-page .page-head h1 {
  color: white;
  font-family: var(--display);
  font-size: clamp(42px, 4.2vw, 58px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: .95;
  max-width: 780px;
}
.sales-workspace-page .head-meta,
.sales-workspace-page .page-head .head-meta {
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
  max-width: 760px;
}
.sales-workspace-page .section-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sales-workspace-page .section-tab {
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(6, 7, 6, .10);
  border-radius: 999px;
  color: rgba(6, 7, 6, .66);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  min-height: 40px;
  padding: 0 14px;
}
.sales-workspace-page .section-tab:hover {
  border-color: rgba(6, 7, 6, .22);
  color: var(--ink);
}
.sales-workspace-page .section-tab.active {
  background: linear-gradient(145deg, #242321, #050505 70%, #34312d);
  border-color: rgba(6, 7, 6, .82);
  box-shadow: 0 16px 34px rgba(6, 7, 6, .16), inset 0 1px 0 rgba(255, 255, 255, .14);
  color: white;
}
.sales-workspace-page .section-tab .count {
  background: rgba(6, 7, 6, .08);
  border-radius: 999px;
  margin-left: 8px;
  padding: 2px 7px;
}
.sales-workspace-page .section-tab.active .count {
  background: rgba(255, 255, 255, .16);
}
.sales-toolbar {
  align-items: stretch;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(6, 7, 6, .06), inset 0 1px 0 rgba(255, 255, 255, .86);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(132px, .72fr));
  padding: 12px;
}
.sales-toolbar-compact {
  grid-template-columns: minmax(280px, 1fr) minmax(150px, 220px) auto;
}
.sales-search,
.sales-select {
  background: white;
  border: 1px solid rgba(6, 7, 6, .10);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(6, 7, 6, .045);
  color: var(--ink);
  display: grid;
  min-height: 48px;
  min-width: 0;
  position: relative;
}
.sales-search {
  align-items: center;
  grid-template-columns: 20px minmax(0, 1fr);
  padding: 0 14px;
}
.sales-search span {
  border: 2px solid rgba(6, 7, 6, .36);
  border-radius: 999px;
  height: 13px;
  position: relative;
  width: 13px;
}
.sales-search span::after {
  background: rgba(6, 7, 6, .36);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 9px;
  position: absolute;
  top: 8px;
  transform: rotate(45deg);
  width: 2px;
}
.sales-search input,
.sales-select select {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  min-height: 46px;
  min-width: 0;
  outline: none;
  width: 100%;
}
.sales-search input::placeholder {
  color: rgba(6, 7, 6, .44);
}
.sales-select {
  grid-template-rows: auto 1fr;
  padding: 7px 32px 6px 12px;
}
.sales-select > span {
  color: rgba(6, 7, 6, .46);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .10em;
  line-height: 1;
  text-transform: uppercase;
}
.sales-select::after {
  border-bottom: 2px solid rgba(6, 7, 6, .42);
  border-right: 2px solid rgba(6, 7, 6, .42);
  content: "";
  height: 7px;
  pointer-events: none;
  position: absolute;
  right: 14px;
  top: 20px;
  transform: rotate(45deg);
  width: 7px;
}
.toolbar-reset {
  align-self: stretch;
  justify-self: stretch;
  min-height: 48px;
  min-width: 92px;
  padding-left: 16px;
  padding-right: 16px;
}
.sales-workspace-page .panel,
.sales-workspace-page .kpi {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(6, 7, 6, .08), inset 0 1px 0 rgba(255, 255, 255, .92);
  overflow: hidden;
}
.sales-workspace-page .panel-head {
  background: linear-gradient(145deg, #060706, #171512 66%, #2b2723);
  border-bottom: 0;
  color: white;
  min-height: 62px;
  padding: 16px 20px;
}
.sales-workspace-page .panel-head h2,
.sales-workspace-page .panel-head span {
  color: white;
}
.sales-workspace-page .panel-head span {
  opacity: .72;
}
.sales-table-panel {
  overflow-x: auto;
}
.sales-workspace-page .data-table {
  background: white;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}
.sales-workspace-page .data-table th,
.sales-workspace-page .data-table td {
  border-bottom: 1px solid rgba(6, 7, 6, .075);
  padding: 15px 18px;
  text-align: left;
  vertical-align: middle;
}
.sales-workspace-page .data-table th {
  color: rgba(6, 7, 6, .48);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sales-workspace-page .data-table tbody tr {
  cursor: pointer;
  transition: background .18s ease;
}
.sales-workspace-page .data-table tbody tr:hover td {
  background: rgba(197, 184, 124, .09);
}
.sales-workspace-page .data-table tr:last-child td {
  border-bottom: 0;
}
.sales-workspace-page .data-table td:first-child,
.sales-workspace-page .data-table th:first-child {
  padding-left: 20px;
}
.sales-workspace-page .date-cell {
  width: 142px;
}
.sales-workspace-page .lead-cell {
  min-width: 0;
}
.sales-workspace-page .score {
  min-height: 30px;
  min-width: 42px;
  padding: 0 10px;
}
.sales-workspace-page .kpi-grid {
  gap: 16px;
}
.sales-workspace-page .kpi {
  background: linear-gradient(180deg, #ffffff, #f7f5ef);
  min-height: 136px;
  padding: 20px;
  position: relative;
}
.sales-workspace-page .kpi::before {
  background: linear-gradient(90deg, var(--ink), rgba(6, 7, 6, .30));
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.sales-workspace-page .report-kpi[data-signal="score"]::before,
.sales-workspace-page .report-kpi[data-signal="discovery"]::before {
  background: linear-gradient(90deg, var(--green), rgba(107, 143, 106, .30));
}
.sales-workspace-page .report-kpi[data-signal="risk"]::before {
  background: linear-gradient(90deg, var(--rust), rgba(140, 98, 80, .30));
}
.sales-workspace-page .kpi strong {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 600;
}
.objection-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.objection-card {
  background:
    linear-gradient(180deg, #ffffff, #f7f5ef);
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(6, 7, 6, .08), inset 0 1px 0 rgba(255, 255, 255, .92);
  cursor: pointer;
  display: grid;
  gap: 16px;
  min-height: 420px;
  padding: 20px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.objection-card:hover,
.objection-card:focus-visible {
  border-color: rgba(197, 184, 124, .58);
  box-shadow: 0 30px 76px rgba(6, 7, 6, .12), inset 0 1px 0 rgba(255, 255, 255, .92);
  outline: none;
  transform: translateY(-2px);
}
.objection-card-top {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
.objection-title {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.objection-title span,
.objection-block span {
  color: rgba(6, 7, 6, .52);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.objection-title h2 {
  color: var(--ink);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}
.objection-badges {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.objection-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.objection-metrics div {
  background: rgba(6, 7, 6, .045);
  border: 1px solid rgba(6, 7, 6, .07);
  border-radius: 16px;
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 12px;
}
.objection-metrics strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}
.objection-metrics span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}
.objection-card-body {
  display: grid;
  gap: 12px;
}
.objection-block {
  border-left: 3px solid rgba(6, 7, 6, .12);
  display: grid;
  gap: 7px;
  padding-left: 12px;
}
.objection-block p {
  color: var(--near-black);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  margin: 0;
}
.coaching-block {
  border-left-color: rgba(107, 143, 106, .42);
}
.examples-block {
  border-left-color: rgba(111, 131, 147, .42);
}
.quote-stack {
  display: grid;
  gap: 8px;
}
.quote,
.quote-card {
  background: rgba(6, 7, 6, .045);
  border: 1px solid rgba(6, 7, 6, .07);
  border-radius: 14px;
  color: rgba(6, 7, 6, .70);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  margin: 0;
  padding: 11px 12px;
}
.suggested,
.coaching-note {
  background: rgba(107, 143, 106, .11);
  border: 1px solid rgba(107, 143, 106, .20);
  border-radius: 14px;
  color: var(--near-black);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  padding: 11px 12px;
}
.objection-card-action {
  align-items: center;
  border-top: 1px solid rgba(6, 7, 6, .08);
  color: rgba(6, 7, 6, .62);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  justify-content: flex-end;
  letter-spacing: .08em;
  margin-top: auto;
  padding-top: 12px;
  text-transform: uppercase;
}
.entry {
  background: white;
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 16px;
  display: grid;
  gap: 10px;
  padding: 14px;
}
.entry-head {
  align-items: start;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.entry-head strong {
  color: var(--near-black);
  line-height: 1.2;
}
.subtle {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.trend-card-list {
  display: grid;
  gap: 12px;
}
.trend-card {
  background: linear-gradient(180deg, #ffffff, #f4f2eb);
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 18px;
  display: grid;
  gap: 12px;
  padding: 15px;
}
.trend-card-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.trend-card-head span,
.trend-card-metrics div > span:not(.score) {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.trend-card-head strong {
  color: var(--ink);
  font-size: 18px;
}
.trend-card-metrics {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.trend-card-metrics div {
  background: rgba(6, 7, 6, .045);
  border: 1px solid rgba(6, 7, 6, .07);
  border-radius: 14px;
  display: grid;
  gap: 4px;
  min-height: 66px;
  padding: 10px;
}
.trend-card-metrics strong {
  color: var(--near-black);
  font-size: 22px;
  line-height: 1;
}
.report-bar {
  background: rgba(6, 7, 6, .08);
  border-radius: 999px;
  height: 9px;
  overflow: hidden;
}
.report-bar i {
  background: linear-gradient(90deg, var(--green), #8ca78b);
  border-radius: inherit;
  display: block;
  height: 100%;
}
.report-bar.gold i {
  background: linear-gradient(90deg, var(--gold), #d8ce96);
}
.report-bar.warning i {
  background: linear-gradient(90deg, var(--gold), #d8ce96);
}
.report-bar.danger i {
  background: linear-gradient(90deg, var(--rust), #b78973);
}
.report-bar.success i {
  background: linear-gradient(90deg, var(--green), #8ca78b);
}
.ranked-list {
  counter-reset: none;
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ranked-list li {
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f4f2eb);
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 18px;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr) minmax(120px, 32%);
  min-height: 78px;
  padding: 12px;
}
.rank-number {
  align-items: center;
  background: var(--ink);
  border-radius: 14px;
  color: white;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}
.ranked-list strong {
  color: var(--near-black);
  display: block;
  line-height: 1.2;
}
.ranked-list span:not(.rank-number) {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.compliance-stack {
  display: grid;
  gap: 10px;
}
.compliance-row {
  background: linear-gradient(180deg, #ffffff, #f4f2eb);
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(160px, .45fr) minmax(180px, 1fr);
  padding: 13px;
}
.compliance-row strong {
  color: var(--near-black);
  display: block;
}
.compliance-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.score-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}
.score-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.score-tile {
  background: linear-gradient(180deg, #ffffff, #f3f1eb);
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(6, 7, 6, .05);
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 13px;
}
.score-tile span {
  color: rgba(6, 7, 6, .55);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.score-tile strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}
.drawer-backdrop {
  background: rgba(6, 7, 6, .34);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity .18s ease;
  z-index: 80;
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  background: #f7f5ef;
  border-left: 1px solid rgba(6, 7, 6, .12);
  box-shadow: -24px 0 72px rgba(6, 7, 6, .20);
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100vh;
  max-width: min(620px, 100vw);
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: transform .22s ease;
  width: 620px;
  z-index: 90;
}
.drawer.open {
  transform: translateX(0);
}
.drawer-head {
  align-items: center;
  background: linear-gradient(145deg, #060706, #171512 70%, #2b2723);
  color: white;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  min-height: 78px;
  padding: 16px 18px;
}
.drawer-head h2 {
  color: white;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0;
}
.drawer-body {
  display: grid;
  gap: 14px;
  overflow: auto;
  padding: 16px;
}
.transcript-demo-panel {
  overflow: hidden;
}
.demo-tool-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 430px;
  padding: 16px;
}
.demo-input-stack {
  min-width: 0;
}
.demo-textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 238px;
  padding: 14px;
  width: 100%;
}
.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.file-button {
  cursor: pointer;
}
.file-button input {
  display: none;
}
.analysis-result {
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  display: grid;
  gap: 12px;
  min-height: 238px;
  padding: 14px;
}
.analysis-result strong {
  color: var(--ink);
}
.analysis-label {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.analysis-score {
  display: block;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
  margin-top: 4px;
}
.analysis-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.analysis-grid div {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 2px;
  padding: 10px;
}
.analysis-grid b {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}
.analysis-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.meeting-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) 430px;
}
.meeting-title { align-items: center; }
.status-strip {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  padding: 11px 13px;
}
.ask-panel {
  display: grid;
}
textarea {
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  min-height: 150px;
  outline: none;
  padding: 16px;
  resize: vertical;
}
.sample-question-row {
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
}
.sample-question-row button {
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--near-black);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  min-height: 34px;
  padding: 0 12px;
}
.sample-question-row button:hover {
  background: white;
  border-color: var(--line-strong);
}
.ask-panel .button-row { margin: 0; padding: 14px 16px; }
.ask-panel .button { align-self: center; }
.answer-box {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 16px;
}
.answer-box p { color: var(--muted); }
.source-list {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.source-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 5px;
  padding: 12px;
}
.source-item strong { font-size: 14px; }
.source-item span { color: var(--muted); font-size: 12px; }
.source-item.uploaded {
  background: var(--green-soft);
  border-color: rgba(107, 143, 106, .28);
}
.meridian-page .main-pane {
  background:
    linear-gradient(180deg, rgba(6, 7, 6, .06), rgba(248, 248, 246, .96) 28%, var(--surface-3));
}
.meridian-page {
  background: var(--ink);
}
.meridian-page .suite-main-pane {
  background:
    linear-gradient(90deg, rgba(6, 7, 6, .90), rgba(6, 7, 6, .70) 52%, rgba(6, 7, 6, .46)),
    url("/assets/projects/harborview-mixed-use-generated.webp") center / cover fixed no-repeat;
  display: block;
  min-height: calc(100vh - 74px);
}
.meridian-page .template-topbar {
  display: none;
}
.meridian-shell {
  max-width: none;
  padding: 0;
}
.meridian-call-experience {
  background:
    radial-gradient(ellipse at 72% 0%, rgba(197, 184, 124, .22), transparent 38%),
    linear-gradient(155deg, rgba(7, 7, 6, .90) 0%, rgba(28, 27, 25, .84) 58%, rgba(6, 7, 6, .94) 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: white;
  display: grid;
  gap: 16px;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  padding: clamp(24px, 4vw, 54px) max(22px, calc((100vw - 1420px) / 2));
  position: relative;
}
.meridian-call-experience::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), transparent 18%),
    radial-gradient(ellipse at 78% 16%, rgba(255, 255, 255, .18), transparent 24%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.meridian-call-experience > * {
  position: relative;
  z-index: 1;
}
.call-room-bar {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 14px;
}
.call-room-bar h1 {
  color: white;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1;
  margin-top: 2px;
}
.call-room-bar .eyebrow {
  color: var(--sage);
}
.call-room-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.call-room-meta span {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
  padding: 7px 10px;
}
.call-room-meta i {
  background: #99d6a3;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(153, 214, 163, .13);
  height: 8px;
  margin-top: 3px;
  width: 8px;
}
.meridian-demo-steps {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 16px 42px rgba(0, 0, 0, .20);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 10px;
}
.meridian-demo-steps span {
  align-items: center;
  color: rgba(255, 255, 255, .72);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 5px 7px;
}
.meridian-demo-steps b {
  align-items: center;
  background: rgba(166, 75, 65, .28);
  border: 1px solid rgba(239, 154, 143, .30);
  border-radius: 999px;
  color: #ffdcd8;
  display: inline-flex;
  flex: 0 0 auto;
  height: 26px;
  justify-content: center;
  width: 26px;
}
.meridian-demo-steps .readiness-step.is-ready {
  color: rgba(224, 255, 229, .92);
}
.meridian-demo-steps .readiness-step.is-ready b {
  background: rgba(112, 181, 122, .28);
  border-color: rgba(159, 211, 158, .42);
  color: #dcffe0;
}
.call-room-layout {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .65fr);
}
.call-main-stage,
.call-side-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 22px 64px rgba(0, 0, 0, .28);
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 14px;
}
.call-main-stage {
  grid-template-rows: minmax(360px, 1fr) auto;
}
.call-side-panel {
  align-content: start;
}
.meridian-live-hero {
  background:
    linear-gradient(90deg, rgba(6, 7, 6, .92) 0%, rgba(6, 7, 6, .78) 48%, rgba(6, 7, 6, .42) 100%),
    linear-gradient(180deg, rgba(6, 7, 6, .10), rgba(6, 7, 6, .78)),
    url("/assets/projects/harborview-mixed-use-generated.webp") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(6, 7, 6, .26);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  overflow: hidden;
  padding: clamp(22px, 4vw, 46px);
  position: relative;
}
.meridian-live-hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, .10), transparent 20%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.meridian-live-hero > * {
  min-width: 0;
  position: relative;
  z-index: 1;
}
.meridian-copy {
  align-content: center;
  display: grid;
  padding: 18px 0;
}
.meridian-copy h1 {
  color: white;
  font-family: var(--serif);
  font-size: clamp(38px, 4.7vw, 62px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .98;
  max-width: 720px;
}
.meridian-copy .eyebrow {
  color: var(--sage);
}
.meridian-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.55;
  margin-top: 14px;
  max-width: 650px;
}
.voice-hint {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  margin-top: 16px;
  max-width: 540px;
  padding: 11px 12px;
}
.voice-hint strong { color: white; }
.mic-button {
  align-items: center;
  display: inline-flex;
  gap: 9px;
}
.mic-button.is-listening,
.button.primary.mic-button.is-listening {
  background: #4a2523;
  border-color: rgba(239, 154, 143, .40);
  color: white;
}
.mic-pulse {
  background: #d66f66;
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(214, 111, 102, .18);
  display: inline-block;
  height: 10px;
  width: 10px;
}
.mic-button:not(.is-listening) .mic-pulse {
  background: #8f5a52;
  box-shadow: 0 0 0 8px rgba(143, 90, 82, .14);
}
.mic-button.is-listening .mic-pulse {
  animation: micPulse 1s ease-in-out infinite;
}
.meeting-stage {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .03)),
    linear-gradient(155deg, rgba(36, 34, 31, .92), rgba(10, 10, 9, .94) 58%, rgba(0, 0, 0, .97));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .12);
  color: white;
  display: grid;
  gap: 12px;
  padding: 16px;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transform-origin: center;
}
.meeting-status-tile {
  background:
    radial-gradient(ellipse at 50% 22%, rgba(255, 255, 255, .18), transparent 54%),
    linear-gradient(145deg, rgba(44, 44, 42, .78), rgba(6, 7, 6, .92));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 18px 44px rgba(0, 0, 0, .26);
  min-height: 360px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}
.tile-background {
  display: block;
  filter: saturate(.9) contrast(1.06);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.03);
  width: 100%;
}
.tile-shade {
  background:
    radial-gradient(ellipse at 50% 26%, rgba(255, 255, 255, .10), transparent 42%),
    linear-gradient(90deg, rgba(6, 7, 6, .70), rgba(6, 7, 6, .50)),
    linear-gradient(180deg, rgba(6, 7, 6, .16), rgba(6, 7, 6, .82));
  inset: 0;
  position: absolute;
}
.tile-glass {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .38);
  display: grid;
  gap: 10px;
  height: 100%;
  justify-items: center;
  padding: 20px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.meridian-avatar {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    var(--ink);
  border: 1px solid rgba(197, 184, 124, .42);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .16);
  display: inline-flex;
  height: 74px;
  justify-content: center;
  overflow: hidden;
  padding: 17px;
  width: 74px;
}
.meridian-avatar img {
  display: block;
  height: 82%;
  object-fit: contain;
  width: 82%;
}
.tile-kicker {
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.tile-glass strong {
  color: white;
  font-family: var(--serif);
  font-size: clamp(42px, 4.4vw, 62px);
  font-weight: 400;
  line-height: .95;
}
.tile-glass p {
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
  margin: 0;
  max-width: 430px;
}
.voice-wave {
  align-items: end;
  display: flex;
  gap: 5px;
  height: 30px;
  justify-content: center;
  margin-top: 2px;
}
.voice-wave span {
  background: linear-gradient(180deg, #fff, #c5b87c);
  border-radius: 999px;
  display: block;
  height: 12px;
  opacity: .52;
  width: 5px;
}
.meeting-status-tile.is-listening .voice-wave span,
.meeting-status-tile.is-speaking .voice-wave span {
  animation: waveLift .78s ease-in-out infinite;
}
.meeting-status-tile.is-listening .voice-wave span:nth-child(2),
.meeting-status-tile.is-speaking .voice-wave span:nth-child(2) { animation-delay: .08s; }
.meeting-status-tile.is-listening .voice-wave span:nth-child(3),
.meeting-status-tile.is-speaking .voice-wave span:nth-child(3) { animation-delay: .16s; }
.meeting-status-tile.is-listening .voice-wave span:nth-child(4),
.meeting-status-tile.is-speaking .voice-wave span:nth-child(4) { animation-delay: .24s; }
.meeting-status-tile.is-listening .voice-wave span:nth-child(5),
.meeting-status-tile.is-speaking .voice-wave span:nth-child(5) { animation-delay: .32s; }
.meeting-status-tile.is-searching {
  background:
    radial-gradient(ellipse at 50% 22%, rgba(197, 184, 124, .24), transparent 54%),
    linear-gradient(145deg, rgba(44, 44, 42, .78), rgba(6, 7, 6, .92));
}
.meeting-status-tile.is-gathering .tile-shade,
.meeting-status-tile.is-searching .tile-shade {
  background:
    radial-gradient(ellipse at 50% 22%, rgba(197, 184, 124, .26), transparent 46%),
    linear-gradient(90deg, rgba(6, 7, 6, .68), rgba(6, 7, 6, .48)),
    linear-gradient(180deg, rgba(6, 7, 6, .10), rgba(6, 7, 6, .80));
}
.meeting-status-tile.is-ready {
  border-color: rgba(159, 211, 158, .34);
}
.meeting-status-tile.is-speaking .tile-shade {
  background:
    radial-gradient(ellipse at 50% 22%, rgba(159, 211, 158, .28), transparent 46%),
    linear-gradient(90deg, rgba(6, 7, 6, .64), rgba(6, 7, 6, .46)),
    linear-gradient(180deg, rgba(6, 7, 6, .10), rgba(6, 7, 6, .82));
}
.meeting-status-tile.is-error {
  border-color: rgba(140, 98, 80, .40);
}
.call-bottom-strip {
  display: grid;
  gap: 10px;
}
.call-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.call-workbench {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr);
}
.meridian-call-experience .panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
  border-color: rgba(255, 255, 255, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 42px rgba(0, 0, 0, .24);
  color: white;
}
.meridian-call-experience .panel-head {
  border-bottom-color: rgba(255, 255, 255, .12);
}
.meridian-call-experience .panel-head h2 {
  color: white;
  font-size: 13px;
  letter-spacing: .06em;
}
.meridian-call-experience .panel-head span {
  color: rgba(255, 255, 255, .62);
}
.meridian-call-experience textarea,
.meridian-call-experience .drop-zone,
.meridian-call-experience .answer-box,
.meridian-call-experience .readout,
.meridian-call-experience .source-item,
.meridian-call-experience .uploaded-source {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .86);
}
.meridian-call-experience textarea {
  border-left: 0;
  border-right: 0;
  color: white;
}
.meridian-call-experience .drop-zone strong,
.meridian-call-experience .answer-box strong,
.meridian-call-experience .source-item strong,
.meridian-call-experience .uploaded-source strong {
  color: white;
}
.meridian-call-experience .drop-zone span,
.meridian-call-experience .uploaded-source-list p,
.meridian-call-experience .uploaded-source span,
.meridian-call-experience .answer-box p,
.meridian-call-experience .readout p,
.meridian-call-experience .source-item span {
  color: rgba(255, 255, 255, .66);
}
.meridian-call-experience .readout p {
  background: rgba(255, 255, 255, .075);
  border-color: rgba(255, 255, 255, .14);
}
.meridian-call-experience .readout p::selection,
.meridian-call-experience .answer-box p::selection {
  background: rgba(197, 184, 124, .62);
  color: #090907;
}
.meridian-call-experience .sample-question-row,
.meridian-call-experience .button-row {
  border-top-color: rgba(255, 255, 255, .12);
}
.meridian-call-experience .sample-question-row button {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .14);
  color: white;
}
.call-resource-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
}
.meeting-topline {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  gap: 10px;
  padding-bottom: 12px;
}
.meeting-topline small {
  color: rgba(255, 255, 255, .62);
  margin-left: auto;
}
.live-dot {
  background: #99d6a3;
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(153, 214, 163, .12);
  height: 9px;
  width: 9px;
}
.live-dot.is-missing {
  background: #d66f66;
  box-shadow: 0 0 0 7px rgba(214, 111, 102, .13);
}
.live-dot.is-ready {
  animation: liveBlink 1.45s ease-in-out infinite;
  background: #99d6a3;
  box-shadow: 0 0 0 7px rgba(153, 214, 163, .13);
}
.meridian-readiness-list {
  display: grid;
  gap: 9px;
}
.readiness-card {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  column-gap: 10px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 58px;
  padding: 10px;
}
.readiness-card b {
  background: #d66f66;
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(214, 111, 102, .13);
  display: block;
  height: 10px;
  width: 10px;
}
.readiness-card span {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.readiness-card strong {
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  justify-self: end;
  text-align: right;
}
.readiness-card.is-ready {
  background:
    linear-gradient(145deg, rgba(153, 214, 163, .17), rgba(255, 255, 255, .045));
  border-color: rgba(153, 214, 163, .28);
}
.readiness-card.is-ready b {
  animation: liveBlink 1.45s ease-in-out infinite;
  background: #99d6a3;
  box-shadow: 0 0 0 7px rgba(153, 214, 163, .13);
}
.readiness-card.is-missing {
  border-color: rgba(214, 111, 102, .20);
}
.source-item.source-empty {
  background: rgba(214, 111, 102, .10);
  border-color: rgba(214, 111, 102, .20);
}
.participant-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.participant-grid div {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  display: grid;
  gap: 5px;
  min-height: 98px;
  place-content: center;
  text-align: center;
}
.participant-grid b {
  font-size: 26px;
}
.participant-grid span {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 800;
}
.participant-grid .bot-tile {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, .18), transparent 52%),
    rgba(197, 184, 124, .18);
  border-color: rgba(197, 184, 124, .34);
}
.voice-capture {
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  display: grid;
  gap: 3px;
  padding: 10px 12px;
}
.voice-capture span {
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.voice-capture strong {
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  line-height: 1.4;
}
.transcript-feed {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  max-height: 190px;
  min-height: 156px;
  overflow-y: auto;
  padding: 12px;
}
.transcript-feed p {
  background: rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .76);
  margin: 0;
  padding: 9px 10px;
}
.transcript-feed strong {
  color: white;
}
.meridian-workspace {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(340px, .75fr) minmax(0, 1.25fr);
}
.drop-zone {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(240, 239, 236, .78));
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  display: grid;
  gap: 8px;
  margin: 16px;
  min-height: 170px;
  padding: 18px;
  text-align: center;
}
.drop-zone input {
  display: none;
}
.drop-zone strong {
  font-size: 18px;
}
.drop-zone span,
.uploaded-source-list p,
.uploaded-source span {
  color: var(--muted);
  font-size: 12px;
}
.drop-zone.is-dragging {
  background: var(--green-soft);
  border-color: var(--green);
}
.uploaded-source-list {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
}
.uploaded-source {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 3px;
  padding: 10px;
}
.live-ask-panel textarea {
  min-height: 136px;
}

@keyframes waveLift {
  0%, 100% { height: 10px; opacity: .44; }
  50% { height: 29px; opacity: .98; }
}

@keyframes micPulse {
  0%, 100% { box-shadow: 0 0 0 7px rgba(159, 211, 158, .18); }
  50% { box-shadow: 0 0 0 13px rgba(159, 211, 158, .04); }
}

.document-action {
  background: white;
  cursor: pointer;
  font: inherit;
  text-align: left;
  width: 100%;
}
.document-action:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.investor-demo {
  background: var(--surface-2);
}
.investor-hero {
  align-items: end;
  background: var(--ink);
  color: white;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  isolation: isolate;
  min-height: min(680px, calc(100svh - 84px));
  padding: 76px max(22px, calc((100vw - var(--max)) / 2)) 42px;
  position: relative;
  overflow: hidden;
}
.investor-hero-bg {
  background:
    linear-gradient(90deg, rgba(6, 7, 6, .86) 0%, rgba(6, 7, 6, .66) 42%, rgba(6, 7, 6, .24) 100%),
    linear-gradient(180deg, rgba(6, 7, 6, .18), rgba(6, 7, 6, .72)),
    var(--project-hero-image, none) center / cover no-repeat;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
  z-index: -1;
}
.investor-hero > * { min-width: 0; }
.investor-hero .eyebrow { color: var(--sage); }
.investor-hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .98;
  max-width: 760px;
}
.investor-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, .80);
  font-size: 18px;
  line-height: 1.55;
  max-width: 660px;
  margin-top: 16px;
}
.section-tab {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  cursor: pointer;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  min-height: 40px;
  padding: 0 16px;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.section-tab:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .36);
  color: white;
  transform: translateY(-1px);
}
.section-tab.active {
  background:
    radial-gradient(circle at 84% 76%, rgba(176, 176, 170, .28), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f7f7f6 38%, #d7d7d4 100%);
  border-color: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  color: var(--ink);
}
.project-overview-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding-bottom: 40px;
  padding-top: 36px;
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
}
.project-overview-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}
.project-overview-card {
  background: linear-gradient(180deg, white, var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 16px;
  padding: 22px;
  position: relative;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  width: 100%;
}
.project-overview-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 24px 58px rgba(6, 7, 6, .13);
  transform: translateY(-4px);
}
.project-overview-card::before {
  background: var(--ink);
  border-radius: var(--radius) var(--radius) 0 0;
  content: "";
  height: 4px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
}
.project-overview-card-head {
  display: grid;
  gap: 8px;
}
.project-overview-card-head h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}
.project-overview-strategy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.project-overview-kpis {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.project-overview-kpi {
  min-height: 0;
  padding: 10px;
}
.project-overview-kpi span { font-size: 10px; }
.project-overview-kpi strong { font-size: 20px; }
.project-overview-kpi p { font-size: 11px; }
.project-overview-cta {
  font-size: 13px;
  justify-self: start;
  min-height: 38px;
  padding: 0 16px;
}
.investor-hero-panel {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  backdrop-filter: blur(18px);
}
.investor-hero-panel article {
  background: rgba(6, 7, 6, .52);
  border-right: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  gap: 5px;
  min-height: 104px;
  padding: 14px;
}
.investor-hero-panel article:nth-child(3n) { border-right: 0; }
.investor-hero-panel strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: .96;
}
.investor-hero-panel span {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.investor-hero-panel small {
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  line-height: 1.35;
}
.room-media {
  border-radius: var(--radius);
  margin-bottom: 10px;
  max-height: 340px;
  overflow: hidden;
  width: 100%;
}
.room-media img {
  display: block;
  height: clamp(190px, 28vw, 320px);
  object-fit: cover;
  width: 100%;
}
.rooms-band,
.room-stage,
.room-detail-rich,
.next-step-band {
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
}
.rooms-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
  padding-top: 34px;
}
.band-head,
.next-step-band {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.band-head h2,
.next-step-band h2,
.room-copy h2,
.investor-detail-head h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.08;
}
.lead-chip {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 3px;
  min-width: 280px;
  padding: 13px;
}
.lead-chip strong { font-size: 14px; }
.lead-chip small { color: var(--muted); font-size: 11px; }
.room-tabs {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin-top: 20px;
}
.room-tabs button {
  align-content: start;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  display: grid;
  gap: 6px;
  font-weight: 800;
  min-height: 92px;
  padding: 12px;
  text-align: left;
}
.room-tabs button strong { color: var(--ink); font-size: 13px; }
.room-tabs button small { color: var(--muted); font-size: 10px; line-height: 1.3; }
.room-tabs button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.room-tabs button.active strong,
.room-tabs button.active small { color: rgba(255, 255, 255, .72); }
.room-stage {
  align-items: stretch;
  background: var(--surface-2);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(320px, .72fr) minmax(440px, 1.28fr);
  padding-bottom: 36px;
  padding-top: 36px;
}
.room-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}
.room-copy h2 {
  font-size: 44px;
  max-width: 680px;
}
.room-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}
.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.signal-row span {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--near-black);
  font-size: 11px;
  font-weight: 800;
  padding: 8px 10px;
}
.room-visual { min-width: 0; }
.visual-frame,
.plan-map {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual-frame {
  display: block;
  margin: 0;
  position: relative;
}
.visual-frame img {
  display: block;
  height: clamp(340px, 36vw, 500px);
  object-fit: cover;
  width: 100%;
}
.visual-frame figcaption {
  align-items: center;
  background: rgba(6, 7, 6, .78);
  border-radius: var(--radius);
  bottom: 14px;
  color: white;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  left: 14px;
  padding: 10px 12px;
  position: absolute;
  right: 14px;
}
.light-text {
  color: white;
  font-weight: 800;
}
.room-detail-rich {
  background: var(--surface);
  border-block: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding-bottom: 40px;
  padding-top: 36px;
}
.investor-detail-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.investor-detail-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.gallery-grid,
.feature-grid,
.unit-grid,
.metric-grid,
.document-grid {
  display: grid;
  gap: 14px;
}
.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery-card,
.feature-card,
.unit-card,
.metric-card,
.document-row {
  background: linear-gradient(180deg, white, var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.gallery-card {
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 10px;
  padding: 10px;
  text-align: left;
}
.gallery-card img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}
.gallery-card strong,
.feature-card strong,
.unit-card strong,
.metric-card strong,
.document-row strong { font-size: 15px; }
.gallery-card span,
.feature-card p,
.unit-card p,
.metric-card p,
.document-row p,
.document-row small {
  color: var(--muted);
  font-size: 12px;
}
.plan-map {
  min-height: 460px;
  position: relative;
}
.plan-map img {
  display: block;
  height: 460px;
  object-fit: cover;
  width: 100%;
}
.plan-map::after {
  background: linear-gradient(180deg, transparent, rgba(6, 7, 6, .34));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.plan-point {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(6, 7, 6, .18);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(6, 7, 6, .18);
  display: grid;
  gap: 2px;
  min-width: 126px;
  padding: 8px;
  position: absolute;
  text-align: left;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.plan-point span { font-size: 12px; font-weight: 900; }
.plan-point small { color: var(--muted); font-size: 10px; }
.feature-grid,
.unit-grid,
.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-card,
.unit-card,
.metric-card {
  display: grid;
  gap: 8px;
  padding: 16px;
}
.unit-card b,
.metric-card strong {
  font-size: 26px;
}
.data-table-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.timeline-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.timeline-list article {
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}
.timeline-list span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.document-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.document-row {
  cursor: pointer;
  display: grid;
  gap: 6px;
  padding: 14px;
  text-align: left;
}
.document-row strong {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.document-list-rich {
  padding: 16px;
}
.document-list-rich .document-row {
  box-shadow: none;
}
.investor-signal-grid {
  background: var(--surface-2);
}
.next-step-band {
  align-items: center;
  background: var(--surface);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 44px;
  padding-top: 44px;
}
.next-step-band p:not(.eyebrow) {
  color: var(--muted);
  max-width: 620px;
}

.capital-page .main-pane {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(240, 239, 236, .78) 48%, rgba(248, 248, 246, 1)),
    repeating-linear-gradient(90deg, rgba(6, 7, 6, .035) 0, rgba(6, 7, 6, .035) 1px, transparent 1px, transparent 92px);
}
.capital-page .panel,
.capital-page .kpi {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  box-shadow:
    0 18px 44px rgba(6, 7, 6, .08),
    0 1px 0 rgba(255, 255, 255, .82) inset;
}
.capital-page .panel-head {
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 248, 246, .88));
}
.capital-title {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(248, 248, 246, .94) 52%, rgba(240, 239, 236, .88) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow:
    0 24px 70px rgba(6, 7, 6, .12),
    0 1px 0 rgba(255, 255, 255, .92) inset;
  overflow: hidden;
  padding: 22px;
  position: relative;
}
.capital-title::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .0) 0%, rgba(255, 255, 255, .52) 42%, rgba(197, 184, 124, .12) 100%),
    linear-gradient(90deg, transparent 0%, rgba(6, 7, 6, .06) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.capital-title::after {
  background:
    linear-gradient(90deg, rgba(6, 7, 6, .08), rgba(6, 7, 6, 0)),
    repeating-linear-gradient(90deg, rgba(6, 7, 6, .06) 0, rgba(6, 7, 6, .06) 1px, transparent 1px, transparent 58px);
  bottom: -38px;
  content: "";
  height: 90px;
  left: 20px;
  opacity: .42;
  position: absolute;
  right: 20px;
  transform: perspective(600px) rotateX(66deg);
  transform-origin: center bottom;
}
.capital-title > * {
  position: relative;
  z-index: 1;
}
.capital-title h1 { font-size: 44px; }
.app-subtitle {
  color: var(--near-black);
  font-size: 17px;
  font-weight: 700;
  margin-top: 10px;
}
.capital-hero-card {
  align-self: stretch;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08) 0%, transparent 26%),
    linear-gradient(155deg, #0b0b0a 0%, #24201d 56%, #070706 100%);
  border-radius: var(--radius);
  box-shadow:
    0 30px 72px rgba(6, 7, 6, .28),
    0 1px 0 rgba(255, 255, 255, .18) inset;
  color: white;
  display: grid;
  gap: 10px;
  min-width: 280px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}
.capital-hero-card::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, .14), transparent 38%, rgba(197, 184, 124, .16));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.capital-hero-card > * {
  position: relative;
  z-index: 1;
}
.capital-hero-card span,
.capital-hero-card small {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.capital-hero-card strong {
  font-size: 38px;
  line-height: 1;
}
.capital-hero-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}
.capital-hero-card .chip {
  justify-self: start;
}
.capital-signal-stack {
  min-height: 126px;
  perspective: 900px;
  position: relative;
}
.signal-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(240, 239, 236, .96));
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius);
  box-shadow:
    0 20px 34px rgba(0, 0, 0, .28),
    0 1px 0 rgba(255, 255, 255, .78) inset;
  color: var(--near-black);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 46px;
  padding: 10px 12px;
  position: absolute;
  right: 0;
  transform-style: preserve-3d;
}
.signal-card span {
  color: var(--muted);
  font-size: 11px;
}
.signal-card strong {
  font-size: 20px;
}
.signal-card-back {
  opacity: .64;
  top: 4px;
  transform: translateX(38px) translateY(0) rotateY(-13deg) scale(.86);
}
.signal-card-mid {
  opacity: .86;
  top: 40px;
  transform: translateX(18px) rotateY(-9deg) scale(.93);
}
.signal-card-front {
  top: 78px;
  transform: rotateY(-5deg);
}
.capital-kpis {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.capital-kpis .kpi {
  transition: transform .18s ease, box-shadow .18s ease;
}
.capital-kpis .kpi:hover {
  box-shadow: 0 24px 56px rgba(6, 7, 6, .12);
  transform: translateY(-2px);
}
.capital-kpis .kpi strong {
  font-size: 25px;
}
.forecast-list {
  display: grid;
  gap: 12px;
  padding: 16px;
}
.forecast-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 248, 246, .94));
  box-shadow:
    0 14px 34px rgba(6, 7, 6, .07),
    0 1px 0 rgba(255, 255, 255, .88) inset;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 1fr);
  padding: 16px;
}
.forecast-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.forecast-row h3 {
  font-size: 22px;
  letter-spacing: 0;
  margin-top: 6px;
}
.forecast-row p {
  color: var(--muted);
  margin-top: 6px;
}
.forecast-metrics {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.forecast-metrics div,
.stage-forecast div,
.profile-score-grid div,
.cleanup-summary div,
.segment-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(240, 239, 236, .76));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow:
    0 8px 18px rgba(6, 7, 6, .045),
    0 1px 0 rgba(255, 255, 255, .72) inset;
  display: grid;
  gap: 4px;
  padding: 10px;
}
.forecast-metrics span,
.stage-forecast span,
.profile-score-grid span,
.cleanup-summary span,
.segment-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.forecast-metrics strong,
.stage-forecast strong,
.profile-score-grid strong,
.cleanup-summary strong {
  font-size: 18px;
}
.progress-stack {
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
}
.progress-stack div {
  background: linear-gradient(180deg, #ffffff, #f0efec);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset;
  display: grid;
  gap: 8px;
  padding: 10px;
}
.progress-stack span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.progress-stack i {
  background: linear-gradient(90deg, var(--green), #8ca78b);
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(107, 143, 106, .28);
  display: block;
  height: 9px;
  width: var(--progress);
}
.progress-stack i.gold {
  background: linear-gradient(90deg, var(--gold), #d8ce96);
  box-shadow: 0 4px 10px rgba(197, 184, 124, .34);
}
.stage-forecast {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 16px;
}
.stage-forecast .stage-total {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), transparent 32%),
    linear-gradient(155deg, #0b0b0a 0%, #26221e 100%);
  box-shadow: 0 18px 40px rgba(6, 7, 6, .18);
  color: white;
}
.stage-forecast .stage-total span,
.stage-forecast .stage-total p {
  color: rgba(255, 255, 255, .72);
}
.stage-forecast p,
.segment-card p {
  color: var(--muted);
  font-size: 13px;
}
.capital-grid {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.investor-table-panel { overflow-x: auto; }
.capital-table tr {
  cursor: pointer;
}
.capital-table tr.is-selected td {
  background: linear-gradient(180deg, rgba(197, 184, 124, .22), rgba(197, 184, 124, .12));
  box-shadow: 0 1px 0 rgba(255, 255, 255, .74) inset;
}
.capital-table td strong {
  display: block;
}
.capital-table td span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 3px;
}
.investor-detail-panel {
  position: static;
}
.profile-score-grid,
.cleanup-summary,
.segment-grid,
.integration-grid {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.profile-score-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.profile-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding: 14px 16px;
}
.profile-section h3 {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.profile-section p {
  color: var(--muted);
  font-size: 13px;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip-row span,
.integration-grid span {
  background: linear-gradient(180deg, #ffffff, #f0efec);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 14px rgba(6, 7, 6, .04);
  color: var(--near-black);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 9px;
}
.timeline-list {
  display: grid;
  gap: 8px;
}
.timeline-list div {
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}
.timeline-list span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.timeline-list strong {
  display: block;
  margin-top: 2px;
}
.cleanup-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 0;
}
.segment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.integration-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.action-item {
  background: white;
  color: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.safety-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  padding: 12px 14px;
}

@keyframes liveBlink {
  0%, 100% { opacity: .72; transform: scale(.94); }
  45% { opacity: 1; transform: scale(1.08); }
}

@keyframes liveRing {
  0% { opacity: .42; transform: scale(.68); }
  62% { opacity: .02; transform: scale(1.62); }
  100% { opacity: 0; transform: scale(1.8); }
}

@keyframes typeCaret {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes caretFade {
  to { opacity: 0; }
}

@keyframes serviceCardPop {
  from {
    opacity: 0;
    transform: translate3d(var(--card-x, 0px), 28px, -34px) rotateY(var(--card-ry, -5deg)) rotateX(var(--card-rx, 1.5deg)) scale(.95);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--card-x, 0px), 0, 0) rotateY(var(--card-ry, -5deg)) rotateX(var(--card-rx, 1.5deg)) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .suite-typewriter::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header,
  .site-footer,
  .section-head,
  .app-title,
  .suite-product-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero { min-height: 720px; }
  .hero h1 { font-size: 42px; }
  .hero-text { font-size: 16px; }
  .scene-sales { left: 16px; top: 390px; width: 310px; }
  .scene-meetings { left: auto; right: 16px; width: 310px; bottom: 34px; }
  .scene-room { display: none; }
  .module-grid,
  .requirements-grid,
  .kpi-grid,
  .dashboard-grid,
  .capital-grid,
  .demo-tool-grid,
  .call-room-layout,
  .call-workbench,
  .meridian-live-hero,
  .meridian-workspace,
  .meeting-grid,
  .room-stage,
  .split-band,
  .suite-hero,
  .investor-hero,
  .readiness-hero,
  .assessment-layout,
  .analyzer-grid {
    grid-template-columns: 1fr;
  }
  .project-overview-grid {
    grid-template-columns: 1fr;
  }
  .room-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .gallery-grid,
  .feature-grid,
  .unit-grid,
  .metric-grid,
  .timeline-list,
  .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .investor-hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .suite-hero {
    min-height: 0;
  }
  .suite-copy h1 { font-size: 42px; }
  .suite-service-stack {
    display: grid;
    gap: 14px;
    min-height: 0;
    max-width: 560px;
  }
  .suite-service-card,
  .suite-service-card:nth-of-type(2),
  .suite-service-card:nth-of-type(3),
  .suite-service-card:nth-of-type(4) {
    animation: none;
    left: auto;
    opacity: 1;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }
  .service-preview {
    border-color: rgba(255, 255, 255, .13);
    margin-top: 0;
    max-height: none;
    min-height: 48px;
    opacity: 1;
    padding: 9px;
  }
  .readiness-score-card {
    max-width: 560px;
    transform: none;
  }
  .assessment-output {
    position: static;
  }
  .readiness-question {
    grid-template-columns: 1fr;
  }
  .sales-page .app-title {
    grid-template-columns: 1fr;
  }
  .sales-page .app-title .eyebrow,
  .sales-page .app-title h1,
  .sales-page .toolbar {
    grid-column: 1;
    grid-row: auto;
  }
  .sales-page .toolbar {
    min-height: 0;
  }
  .capital-title h1 { font-size: 34px; }
  .capital-kpis,
  .stage-forecast,
  .forecast-row {
    grid-template-columns: 1fr;
  }
  .meeting-stage {
    transform: none;
  }
  .call-room-bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .call-room-meta {
    justify-content: flex-start;
  }
  .meridian-demo-steps {
    grid-template-columns: 1fr;
  }
  .call-main-stage {
    grid-template-rows: auto auto;
  }
  .meeting-status-tile {
    min-height: 190px;
  }
  .investor-hero h1 { font-size: 38px; }
  .investor-visual { min-height: 250px; }
  .data-table { min-width: 760px; }
  .panel { overflow-x: auto; }
  .investor-detail-panel { position: static; }
  .product-shell { display: block; }
  .suite-product-header + .product-shell .template-sidebar {
    height: auto;
    top: 0;
  }
  .template-sidebar {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    height: auto;
    min-height: 0;
    position: static;
    width: 100%;
  }
  .sidebar-nav {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .nav-link {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .site-header,
  .suite-product-header {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    min-height: 72px;
    padding: 8px 16px;
  }
  .site-header::after,
  .suite-product-header::after {
    align-items: center;
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    color: white;
    content: "\2630";
    display: flex;
    font-size: 25px;
    font-weight: 700;
    height: 44px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 16px;
    top: 14px;
    width: 44px;
    z-index: 4;
  }
  .site-header::after,
  .suite-product-header::after {
    display: none;
  }
  .site-header .brand,
  .suite-product-header .suite-brand {
    gap: 0;
    left: 50%;
    position: absolute;
    top: 10px;
    transform: translateX(-50%);
    z-index: 2;
  }
  .site-header .brand-copy,
  .suite-product-header .brand-copy {
    display: none;
  }
  .site-header .brand-mark,
  .suite-product-header .brand-mark {
    height: 52px;
    width: 52px;
  }
  .site-nav,
  .suite-product-nav {
    align-items: stretch;
    backdrop-filter: blur(18px) saturate(1.08);
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius);
    box-shadow: none;
    cursor: pointer;
    display: grid;
    gap: 0;
    max-height: 44px;
    min-height: 44px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 16px;
    top: 14px;
    transition: max-height .18s ease, width .18s ease, top .18s ease, box-shadow .18s ease;
    width: 44px;
    z-index: 5;
  }
  .site-nav,
  .suite-product-nav {
    display: none;
  }
  .mobile-menu {
    display: block;
    position: absolute;
    right: 16px;
    top: 14px;
    z-index: 70;
  }
  .mobile-menu summary {
    align-items: center;
    background:
      radial-gradient(circle at 82% 80%, rgba(176, 176, 170, .24), transparent 30%),
      linear-gradient(145deg, #ffffff 0%, #f6f6f5 48%, #dedede 100%);
    border: 1px solid rgba(6, 7, 6, .14);
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(6, 7, 6, .14), inset 0 1px 0 rgba(255, 255, 255, .86), inset 0 -14px 22px rgba(6, 7, 6, .06);
    color: var(--ink);
    cursor: pointer;
    display: grid;
    font-size: 0;
    font-weight: 700;
    height: 44px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    place-items: center;
    position: relative;
    width: 44px;
    z-index: 82;
  }
  .mobile-menu > summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu > summary::before,
  .mobile-menu > summary::after {
    background: currentColor;
    border-radius: 999px;
    content: "";
    display: block;
    height: 3px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: box-shadow .18s ease, opacity .18s ease, transform .18s ease;
    width: 19px;
  }
  .mobile-menu > summary::before {
    box-shadow: 0 -7px 0 currentColor;
  }
  .mobile-menu > summary::after {
    transform: translate(-50%, calc(-50% + 7px));
  }
  .mobile-menu[open] {
    inset: 0;
    position: fixed;
    z-index: 1001;
  }
  .mobile-menu[open] > summary {
    background:
      radial-gradient(circle at 82% 80%, rgba(176, 176, 170, .30), transparent 30%),
      linear-gradient(145deg, #ffffff 0%, #eeeeed 100%);
    border-color: rgba(6, 7, 6, .18);
    color: var(--ink);
    position: fixed;
    right: 16px;
    top: 14px;
  }
  .mobile-menu[open] > summary::before {
    box-shadow: none;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .mobile-menu[open] > summary::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .mobile-menu nav {
    align-content: start;
    backdrop-filter: blur(28px) saturate(1.2);
    background:
      linear-gradient(180deg, rgba(6, 7, 6, .82), rgba(6, 7, 6, .94)),
      radial-gradient(circle at 80% 20%, rgba(176, 176, 170, .18), transparent 28%),
      url("/assets/projects/riverbend-market-skyline.webp") center / cover no-repeat;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: white;
    display: grid;
    gap: 10px;
    inset: 0;
    min-height: 100svh;
    overflow-y: auto;
    padding: 110px 24px 30px;
    position: fixed;
    width: auto;
  }
  .mobile-menu nav::before {
    background: url("/assets/brand/elvison-temple-black.png") center / contain no-repeat;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    content: "";
    display: block;
    filter: invert(1);
    height: 74px;
    justify-self: center;
    margin-bottom: 16px;
    width: 74px;
  }
  .mobile-menu nav::after {
    content: none;
    display: none;
  }
  .mobile-menu a {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 14px 36px rgba(0, 0, 0, .22);
    color: white;
    display: block;
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .01em;
    padding: 18px 20px;
    position: relative;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
  }
  .mobile-menu a::after {
    color: rgba(255, 255, 255, .42);
    content: "\2192";
    font-size: 18px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: color .18s ease, transform .18s ease;
  }
  .mobile-menu a:hover,
  .mobile-menu a:focus {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .08));
    border-color: rgba(255, 255, 255, .32);
    color: white;
    transform: translateY(-2px);
  }
  .mobile-menu a:hover::after,
  .mobile-menu a:focus::after {
    color: rgba(255, 255, 255, .72);
    transform: translateY(-50%) translateX(3px);
  }
  .mobile-menu a.active {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .10));
    border-color: rgba(255, 255, 255, .36);
    color: white;
  }
  .mobile-menu .mobile-nav-group {
    display: grid;
    gap: 8px;
  }
  .mobile-menu .mobile-nav-group > summary {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 14px 36px rgba(0, 0, 0, .22);
    color: white;
    cursor: pointer;
    display: block;
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .01em;
    list-style: none;
    padding: 18px 52px 18px 20px;
    position: relative;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
  }
  .mobile-menu .mobile-nav-group > summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu .mobile-nav-group > summary::after {
    color: rgba(255, 255, 255, .60);
    content: "+";
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-menu .mobile-nav-group[open] > summary::after {
    content: "-";
  }
  .mobile-menu .mobile-nav-group > summary:hover,
  .mobile-menu .mobile-nav-group > summary:focus,
  .mobile-menu .mobile-nav-group > summary.active {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .10));
    border-color: rgba(255, 255, 255, .36);
    color: white;
    transform: translateY(-2px);
  }
  .mobile-submenu {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: -2px 0 2px;
  }
  .mobile-menu .mobile-submenu a {
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    min-height: 42px;
    padding: 12px 14px;
  }
  .mobile-menu .mobile-submenu a::after {
    display: none;
  }
  .site-nav::before,
  .suite-product-nav::before {
    content: "";
    display: none;
  }
  .mobile-nav-trigger {
    display: none;
  }
  .site-nav a,
  .suite-product-nav a {
    display: none;
    font-family: var(--font);
  }
  .site-nav:focus,
  .site-nav:focus-within,
  .site-nav:hover,
  .suite-product-nav:focus,
  .suite-product-nav:focus-within,
  .suite-product-nav:hover {
    box-shadow: 0 24px 58px rgba(6, 7, 6, .18);
    max-height: 280px;
    padding: 8px;
    top: 62px;
    width: min(240px, calc(100vw - 32px));
  }
  .site-nav:focus::before,
  .site-nav:focus-within::before,
  .site-nav:hover::before,
  .suite-product-nav:focus::before,
  .suite-product-nav:focus-within::before,
  .suite-product-nav:hover::before {
    display: none;
  }
  .site-nav:focus .mobile-nav-trigger,
  .site-nav:focus-within .mobile-nav-trigger,
  .site-nav:hover .mobile-nav-trigger,
  .suite-product-nav:focus .mobile-nav-trigger,
  .suite-product-nav:focus-within .mobile-nav-trigger,
  .suite-product-nav:hover .mobile-nav-trigger {
    display: none;
  }
  .site-nav:focus a,
  .site-nav:focus-within a,
  .site-nav:hover a,
  .suite-product-nav:focus a,
  .suite-product-nav:focus-within a,
  .suite-product-nav:hover a {
    color: var(--muted);
    display: block;
    font-size: 14px;
    padding: 12px;
    text-align: left;
    transform: none;
  }
  .site-nav:focus a:hover,
  .site-nav:focus-within a:hover,
  .site-nav:hover a:hover,
  .site-nav:focus .nav-cta,
  .site-nav:focus-within .nav-cta,
  .site-nav:hover .nav-cta,
  .suite-product-nav:focus a:hover,
  .suite-product-nav:focus-within a:hover,
  .suite-product-nav:hover a:hover,
  .suite-product-nav:focus a.active,
  .suite-product-nav:focus-within a.active,
  .suite-product-nav:hover a.active {
    background: var(--surface-2);
    border-color: var(--line);
    color: var(--ink);
  }
  .hero {
    min-height: 640px;
    padding-top: 36px;
  }
  .hero h1 { font-size: 30px; }
  .suite-hero {
    padding: 46px 22px;
  }
  .suite-copy h1 { font-size: 32px; }
  .suite-copy p:not(.eyebrow) { font-size: 15px; }
  .readiness-hero {
    display: block;
    min-height: 0;
    overflow: hidden;
    padding: 46px 22px 54px;
  }
  .readiness-hero > div:first-child {
    max-width: calc(100vw - 44px);
    width: 100%;
  }
  .readiness-hero h1 {
    font-size: 30px;
    max-width: calc(100vw - 44px);
  }
  .readiness-hero p:not(.eyebrow) {
    font-size: 15px;
    max-width: calc(100vw - 44px);
  }
  .readiness-score-card {
    margin-top: 34px;
    max-width: calc(100vw - 44px);
    padding: 18px;
    width: 100%;
  }
  .readiness-score-card strong {
    font-size: 64px;
  }
  .readiness-mini-grid,
  .readiness-options,
  .analyzer-summary-grid {
    grid-template-columns: 1fr;
  }
  .question-group legend {
    line-height: 1.35;
  }
  .readiness-question {
    padding: 14px;
  }
  .analyzer-band {
    padding-left: 22px;
    padding-right: 22px;
  }
  .analyzer-band .panel-head {
    align-items: flex-start;
    gap: 10px;
  }
  .analyzer-band .panel-head h2 {
    font-size: 12px;
    letter-spacing: .12em;
    line-height: 1.25;
  }
  .analyzer-band .panel-head span {
    font-size: 12px;
    line-height: 1.35;
    text-align: right;
  }
  .analyzer-copy {
    padding: 12px 14px 0;
  }
  .analyzer-copy p {
    font-size: 14px;
    line-height: 1.52;
  }
  .analyzer-drop-zone {
    min-height: 150px;
    padding: 18px;
  }
  .analyzer-drop-zone strong {
    font-size: 18px;
    line-height: 1.25;
  }
  .analyzer-drop-zone span {
    font-size: 13px;
    line-height: 1.45;
  }
  .analyzer-textarea {
    font-size: 14px;
    min-height: 150px;
  }
  .suite-hero-premium {
    min-height: 0;
    padding-bottom: 30px;
    padding-top: 40px;
  }
  .hero-badge {
    align-items: flex-start;
    border-radius: var(--radius);
    line-height: 1.35;
    max-width: 100%;
  }
  .suite-service-card {
    gap: 16px;
    min-height: 0;
    padding: 18px;
  }
  .suite-service-card,
  .suite-service-card:nth-of-type(2),
  .suite-service-card:nth-of-type(3),
  .suite-service-card:nth-of-type(4) {
    transform: none;
  }
  .suite-service-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .service-metric {
    grid-column: 2;
    justify-self: start;
  }
  .service-preview {
    grid-column: 1 / -1;
  }
  .suite-hero-premium {
    align-content: start;
    background:
      linear-gradient(180deg, rgba(6, 7, 6, .70), rgba(6, 7, 6, .88)),
      radial-gradient(circle at 78% 18%, rgba(176, 176, 170, .22), transparent 28%),
      url("/assets/projects/riverbend-market-skyline.webp") center / cover no-repeat;
    gap: 18px;
    min-height: calc(100svh - 72px);
    padding: 28px 18px 24px;
  }
  .suite-hero-premium::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 24%),
      linear-gradient(0deg, rgba(248, 247, 242, .82), transparent 12%);
  }
  .suite-hero-premium::after {
    filter: blur(18px);
    opacity: .38;
  }
  .suite-hero-premium .suite-copy {
    display: grid;
    gap: 12px;
  }
  .suite-hero-premium .hero-badge {
    align-items: center;
    border-radius: 999px;
    font-size: 9px;
    line-height: 1;
    margin-bottom: 0;
    max-width: max-content;
    padding: 7px 9px;
  }
  .suite-hero-premium .hero-badge span {
    height: 7px;
    width: 7px;
  }
  .suite-hero-premium .suite-copy h1 {
    font-size: clamp(42px, 13vw, 50px);
    line-height: .9;
    max-width: 320px;
    min-height: 0;
  }
  .suite-hero-premium .suite-typewriter {
    min-height: 0;
  }
  .suite-hero-premium .suite-typewriter::after {
    display: none;
  }
  .suite-hero-premium .suite-copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.45;
    margin-top: 0;
    max-width: 330px;
  }
  .suite-hero-premium .hero-actions {
    display: none;
  }
  .suite-hero-premium .suite-service-stack {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    min-height: 0;
  }
  .suite-hero-premium .suite-service-card,
  .suite-hero-premium .suite-service-card:nth-of-type(2),
  .suite-hero-premium .suite-service-card:nth-of-type(3),
  .suite-hero-premium .suite-service-card:nth-of-type(4) {
    align-content: end;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(6, 7, 6, .22), rgba(6, 7, 6, .88)),
      radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .20), transparent 34%),
      url("/assets/projects/riverbend-market-skyline.webp") center / cover no-repeat;
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 18px 42px rgba(0, 0, 0, .28);
    gap: 8px;
    grid-template-columns: 1fr;
    min-height: 154px;
    padding: 12px;
  }
  .suite-hero-premium .suite-service-card:nth-of-type(2) {
    background:
      linear-gradient(180deg, rgba(6, 7, 6, .18), rgba(6, 7, 6, .86)),
      radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .18), transparent 34%),
      url("/assets/projects/riverbend-multifamily-hero.webp") center / cover no-repeat;
  }
  .suite-hero-premium .suite-service-card:nth-of-type(3) {
    background:
      linear-gradient(180deg, rgba(6, 7, 6, .18), rgba(6, 7, 6, .86)),
      radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .18), transparent 34%),
      url("/assets/projects/harborview-mixed-use-generated.webp") center / cover no-repeat;
  }
  .suite-hero-premium .suite-service-card:nth-of-type(4) {
    background:
      linear-gradient(180deg, rgba(6, 7, 6, .18), rgba(6, 7, 6, .86)),
      radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .18), transparent 34%),
      url("/assets/projects/cedar-park-btr-generated.webp") center / cover no-repeat;
  }
  .suite-hero-premium .suite-service-card strong {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.05;
  }
  .suite-hero-premium .suite-service-card p {
    display: -webkit-box;
    font-size: 11px;
    line-height: 1.34;
    margin-top: 4px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .suite-hero-premium .service-index {
    background: rgba(255, 255, 255, .14);
    border-radius: 12px;
    font-size: 10px;
    height: 32px;
    left: 10px;
    position: absolute;
    top: 10px;
    width: 32px;
  }
  .suite-hero-premium .service-metric,
  .suite-hero-premium .service-preview {
    display: none;
  }
  .suite-hero-premium .suite-service-card::after {
    height: 96px;
    opacity: .58;
    right: -48px;
    top: -48px;
    width: 96px;
  }
  .suite-workflow-sections {
    gap: 14px;
    padding: 22px 18px 44px;
  }
  .suite-workflow-section {
    align-items: start;
    border-radius: 22px;
    gap: 14px;
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
  }
  .suite-workflow-section .button {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 42px;
  }
  .workflow-index {
    border-radius: 14px;
    font-size: 12px;
    height: 42px;
    width: 42px;
  }
  .suite-workflow-section h2 {
    font-size: 28px;
    line-height: 1;
  }
  .suite-workflow-section p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.45;
  }
  .sales-page .app-title {
    border-radius: 22px;
    padding: 24px;
  }
  .sales-page .app-title h1 {
    font-size: 34px;
  }
  .analysis-grid { grid-template-columns: 1fr; }
  .scene { opacity: .54; }
  .scene-sales,
  .scene-meetings {
    left: 22px;
    right: 22px;
    width: auto;
  }
  .scene-sales { top: 390px; }
  .scene-meetings { display: none; }
  .section-head h2,
  .split-band h2,
  .pilot-band h2,
  .app-title h1 {
    font-size: 26px;
  }
  .investor-hero {
    display: grid;
    gap: 18px;
    min-height: 0;
    max-width: 100vw;
    padding: 38px 18px 26px;
    width: 100vw;
  }
  .investor-hero-bg {
    background:
      linear-gradient(180deg, rgba(6, 7, 6, .58), rgba(6, 7, 6, .88)),
      var(--project-hero-image, none) center / cover no-repeat;
    transform: none;
  }
  .investor-hero > div:first-child {
    max-width: 100%;
    width: 100%;
  }
  .investor-hero h1 {
    font-size: 38px;
    max-width: 100%;
  }
  .investor-hero p:not(.eyebrow) {
    font-size: 15px;
    max-width: 100%;
  }
  .investor-hero .hero-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }
  .investor-hero .button {
    font-size: 14px;
    min-height: 44px;
    padding: 0 12px;
  }
  .investor-visual {
    margin-top: 28px;
    max-width: calc(100vw - 58px);
    min-height: 0;
    padding: 10px;
  }
  .investor-visual img { height: 220px; }
  .kpi-grid { grid-template-columns: 1fr; }
  .gallery-grid,
  .feature-grid,
  .unit-grid,
  .metric-grid,
  .timeline-list,
  .document-grid,
  .investor-hero-panel {
    grid-template-columns: 1fr;
  }
  .investor-hero-panel {
    border-radius: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .investor-hero-panel article {
    min-height: 86px;
    padding: 12px 10px;
  }
  .investor-hero-panel strong {
    font-size: 28px;
  }
  .investor-hero-panel small {
    display: none;
  }
  .rooms-band {
    padding: 22px 18px 14px;
  }
  .room-tabs {
    display: flex;
    gap: 8px;
    margin: 14px -18px 0;
    overflow-x: auto;
    padding: 0 18px 4px;
    scroll-snap-type: x proximity;
  }
  .room-tabs button {
    flex: 0 0 138px;
    min-height: 58px;
    padding: 10px;
    scroll-snap-align: start;
  }
  .room-tabs button small {
    display: none;
  }
  .room-tabs button strong {
    font-size: 12px;
    line-height: 1.15;
  }
  .room-stage {
    gap: 18px;
    padding: 24px 18px;
    scroll-margin-top: 88px;
  }
  .participant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .participant-grid div {
    min-height: 78px;
  }
  .call-room-bar h1 {
    font-size: 28px;
  }
  .call-main-stage,
  .call-side-panel {
    padding: 10px;
  }
  .meeting-status-tile {
    min-height: 330px;
    padding: 10px;
  }
  .tile-glass {
    padding: 14px;
  }
  .tile-glass strong {
    font-size: 38px;
  }
  .tile-glass p {
    font-size: 13px;
  }
  .transcript-feed {
    max-height: 140px;
    min-height: 118px;
  }
  .visual-frame img,
  .plan-map img {
    height: 260px;
  }
  .plan-map {
    min-height: 260px;
  }
  .plan-point {
    min-width: 104px;
  }
  .band-head,
  .investor-detail-head,
  .next-step-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .lead-chip {
    min-width: 0;
    width: 100%;
  }
  .document-list-rich {
    gap: 10px;
    padding: 12px;
  }
  .document-list-rich .document-row {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(242, 242, 240, .90));
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(6, 7, 6, .06);
    padding: 14px;
  }
  .document-row strong {
    align-items: flex-start;
    gap: 12px;
  }
  .document-row strong span {
    white-space: nowrap;
  }
  .meridian-copy h1,
  .room-copy h2 {
    font-size: 30px;
  }
  .capital-hero-card { min-width: 0; }
  .profile-score-grid,
  .cleanup-summary,
  .segment-grid,
  .integration-grid {
    grid-template-columns: 1fr;
  }
}

/* --- a) Dark sidebar ---------------------------------------- */

/* --- m) Main pane background -------------------------------- */

/* --- Topbar on dark ----------------------------------------- */

/* --- b) Pipeline hero banner -------------------------------- */
/* --- n) Page headings on dark ------------------------------- */

/* --- c) Glass-morphism KPI cards ---------------------------- */

/* --- d) Stage tracker premium ------------------------------- */

/* --- e) Run log console ------------------------------------- */

/* --- Status banner glass ------------------------------------ */

/* --- f) Panels on dark -------------------------------------- */

/* --- g) Data tables on dark --------------------------------- */

/* --- h) Badges on dark -------------------------------------- */

/* --- i) Filter bar + section tabs on dark ------------------- */

/* --- j) Score pills on dark --------------------------------- */

/* --- k) Form inputs on dark (ICP page) ---------------------- */

/* --- l) Drawer on dark -------------------------------------- */

/* --- o) Empty states on dark -------------------------------- */

/* --- p) Activity page channel cards (glass treatment) ------- */

/* --- q) Campaign metrics — command center ------------------- */

/* --- r) Firm directory Bloomberg feel ----------------------- */

/* --- Misc dark overrides ------------------------------------ */

/* ICP list cards on dark */

/* Inbox cards on dark */

/* Timeline on dark (logbook) */

/* Site header on capital outreach — dark treatment */

/* Mobile menu on dark */

/* Responsive — hero stats collapse */
@media (max-width: 900px) {
  /* ============================================================
   Firm directory card grid
   ============================================================ */
.firm-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.firms-summary {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}
.firm-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  cursor: pointer;
  display: grid;
  gap: 10px;
  padding: 18px;
  text-align: left;
  transition: all .18s ease;
  width: 100%;
}
.firm-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.firm-card-head {
  align-items: center;
  display: flex;
  gap: 12px;
}
.firm-logo {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  overflow: hidden;
  width: 44px;
}
.firm-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.firm-logo-fallback {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  justify-content: center;
}
.firm-card-title {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.firm-card-title strong {
  color: white;
  font-size: 15px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.firm-domain {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.firm-tier-badge {
  border-radius: 8px;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 2px 9px;
  text-transform: uppercase;
  width: fit-content;
}
.tier-fo_ria { background: rgba(171, 203, 170, 0.18); color: #abcbaa; }
.tier-sponsor { background: rgba(180, 204, 222, 0.18); color: #b4ccde; }
.tier-institutional { background: rgba(197, 184, 124, 0.18); color: var(--gold); }
.tier-skip, .tier-unknown { background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.4); }
.firm-card-summary {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: rgba(255, 255, 255, 0.65);
  display: -webkit-box;
  font-size: 12.5px;
  line-height: 1.55;
  min-height: 48px;
  overflow: hidden;
}
.firm-card-summary em { color: rgba(255, 255, 255, 0.3); font-style: italic; }
.firm-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.firm-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
}
.firm-card-meta {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  font-size: 11px;
  gap: 14px;
  margin-top: 4px;
  padding-top: 10px;
}
.firm-card-meta strong { color: white; }
.firm-conf {
  align-items: center;
  display: inline-flex;
  gap: 4px;
}
.firm-conf-dot {
  border-radius: 50%;
  height: 7px;
  width: 7px;
}
.conf-high { background: #22c55e; }
.conf-med { background: #eab308; }
.conf-low { background: #ef4444; }

@media (max-width: 700px) {
  .firm-grid { grid-template-columns: 1fr; }
}

/* Suite home deploy override: force the final product-selector layout. */
.suite-body .suite-hero-premium {
  align-content: center;
  background:
    linear-gradient(180deg, rgba(6, 7, 6, .68), rgba(6, 7, 6, .88)),
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, .16), transparent 26%),
    url("/assets/projects/riverbend-market-skyline.webp") center / cover no-repeat;
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: min(880px, calc(100svh - 78px));
  padding: clamp(50px, 6vw, 78px) max(22px, calc((100vw - var(--max)) / 2)) clamp(38px, 5vw, 66px);
  text-align: center;
}
.suite-body .suite-hero-premium::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 22%),
    linear-gradient(0deg, rgba(248, 247, 242, .90), transparent 12%);
}
.suite-body .suite-hero-premium::after {
  opacity: .30;
}
.suite-body .suite-hero-premium .suite-copy {
  display: grid;
  justify-items: center;
  max-width: 780px;
  text-align: center;
}
.suite-body .suite-hero-premium .suite-copy h1 {
  font-size: clamp(56px, 7.4vw, 92px);
  line-height: .88;
  max-width: 820px;
  min-height: 0;
}
.suite-body .suite-hero-premium .suite-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .74);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  line-height: 1.45;
  margin: 16px auto 0;
  max-width: 520px;
}
.suite-body .suite-hero-premium .hero-actions {
  display: none;
}
.suite-body .suite-hero-premium .suite-service-stack {
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  min-height: 0;
  perspective: none;
  position: relative;
  transform-style: flat;
  width: 100%;
}
.suite-body .suite-hero-premium .suite-service-card,
.suite-body .suite-hero-premium .suite-service-card-primary,
.suite-body .suite-hero-premium .suite-service-card:nth-of-type(2),
.suite-body .suite-hero-premium .suite-service-card:nth-of-type(3),
.suite-body .suite-hero-premium .suite-service-card:nth-of-type(4) {
  align-content: end;
  align-items: end;
  animation: none;
  background:
    linear-gradient(180deg, rgba(6, 7, 6, .18), rgba(6, 7, 6, .88)),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .18), transparent 34%),
    url("/assets/projects/riverbend-market-skyline.webp") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 24px 60px rgba(0, 0, 0, .24);
  color: white;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  left: auto;
  min-height: 224px;
  opacity: 1;
  overflow: hidden;
  padding: 18px;
  position: relative;
  right: auto;
  text-align: left;
  top: auto;
  transform: none;
  width: auto;
}
.suite-body .suite-hero-premium .suite-service-card:nth-of-type(2) {
  background:
    linear-gradient(180deg, rgba(6, 7, 6, .16), rgba(6, 7, 6, .88)),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .18), transparent 34%),
    url("/assets/projects/riverbend-multifamily-hero.webp") center / cover no-repeat;
}
.suite-body .suite-hero-premium .suite-service-card:nth-of-type(3) {
  background:
    linear-gradient(180deg, rgba(6, 7, 6, .16), rgba(6, 7, 6, .88)),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .18), transparent 34%),
    url("/assets/projects/harborview-mixed-use-generated.webp") center / cover no-repeat;
}
.suite-body .suite-hero-premium .suite-service-card:nth-of-type(4) {
  background:
    linear-gradient(180deg, rgba(6, 7, 6, .16), rgba(6, 7, 6, .88)),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .18), transparent 34%),
    url("/assets/projects/cedar-park-btr-generated.webp") center / cover no-repeat;
}
.suite-body .suite-hero-premium .suite-service-card:hover,
.suite-body .suite-hero-premium .suite-service-card:focus-visible {
  border-color: rgba(255, 255, 255, .34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 32px 80px rgba(0, 0, 0, .34);
  transform: translateY(-5px);
}
.suite-body .suite-hero-premium .suite-service-card::after {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  content: "View details";
  font-family: var(--font);
  font-size: 11px;
  font-weight: 900;
  height: auto;
  justify-self: start;
  letter-spacing: .08em;
  padding: 7px 10px;
  position: relative;
  right: auto;
  text-transform: uppercase;
  top: auto;
  width: auto;
}
.suite-body .suite-hero-premium .service-index {
  background: rgba(255, 255, 255, .14);
  border-radius: 14px;
  font-size: 12px;
  height: 42px;
  left: 14px;
  position: absolute;
  top: 14px;
  width: 42px;
}
.suite-body .suite-hero-premium .suite-service-card strong {
  font-family: var(--font);
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.05;
}
.suite-body .suite-hero-premium .suite-service-card p {
  color: rgba(255, 255, 255, .74);
  font-size: 12.5px;
  line-height: 1.4;
  margin: 6px 0 0;
}
.suite-body .suite-hero-premium .service-metric,
.suite-body .suite-hero-premium .service-preview {
  display: none;
}
.suite-workflow-sections {
  background: linear-gradient(180deg, #f7f7f5 0%, #ffffff 48%, #f0efec 100%);
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 76px max(22px, calc((100vw - var(--max)) / 2)) 38px;
}
.suite-workflow-section,
.suite-workflow-section:nth-child(even) {
  align-items: stretch;
  background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(244, 244, 241, .92));
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(6, 7, 6, .08), inset 0 1px 0 rgba(255, 255, 255, .92);
  color: var(--ink);
  display: grid;
  gap: 24px 34px;
  grid-template-columns: minmax(0, .95fr) minmax(330px, .76fr);
  grid-template-rows: auto auto auto;
  margin: 0 auto;
  max-width: var(--max);
  overflow: hidden;
  padding: 26px;
  position: relative;
  scroll-margin-top: 100px;
  width: 100%;
}
.suite-workflow-section::before,
.suite-workflow-section:nth-child(even)::before {
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  content: "";
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
}
.workflow-sales::before {
  background:
    linear-gradient(180deg, rgba(6, 7, 6, .04), rgba(6, 7, 6, .12)),
    url("/assets/projects/riverbend-market-skyline.webp") center / cover no-repeat;
}
.workflow-meridian::before {
  background:
    linear-gradient(180deg, rgba(6, 7, 6, .04), rgba(6, 7, 6, .12)),
    url("/assets/projects/riverbend-multifamily-hero.webp") center / cover no-repeat;
}
.workflow-room::before {
  background:
    linear-gradient(180deg, rgba(6, 7, 6, .04), rgba(6, 7, 6, .12)),
    url("/assets/projects/harborview-mixed-use-generated.webp") center / cover no-repeat;
}
.workflow-capital::before {
  background:
    linear-gradient(180deg, rgba(6, 7, 6, .04), rgba(6, 7, 6, .12)),
    url("/assets/projects/cedar-park-btr-generated.webp") center / cover no-repeat;
}
.suite-workflow-section .workflow-copy,
.suite-workflow-section:nth-child(even) .workflow-copy {
  align-self: center;
  grid-column: 1;
  grid-row: 1 / span 3;
  max-width: 640px;
}
.suite-workflow-section .workflow-details,
.suite-workflow-section:nth-child(even) .workflow-details {
  display: grid;
  gap: 10px;
  grid-column: 2;
  grid-row: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.suite-workflow-section .workflow-details span {
  background: rgba(6, 7, 6, .04);
  border: 1px solid rgba(6, 7, 6, .075);
  border-radius: 14px;
  color: rgba(6, 7, 6, .66);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  min-height: 58px;
  padding: 11px 12px;
}
.suite-workflow-section .button,
.suite-workflow-section:nth-child(even) .button {
  grid-column: 2;
  grid-row: 3;
  justify-self: start;
  min-height: 44px;
}
.workflow-index,
.suite-workflow-section:nth-child(even) .workflow-index {
  background:
    radial-gradient(circle at 78% 76%, rgba(255, 255, 255, .18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .24), rgba(6, 7, 6, .80));
  border-color: rgba(255, 255, 255, .28);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .22);
  left: auto;
  right: 46px;
  top: 46px;
}
.suite-custom-panel {
  margin: 0 auto;
  max-width: var(--max);
}

@media (max-width: 960px) {
  .suite-body .suite-hero-premium .suite-service-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .suite-workflow-section,
  .suite-workflow-section:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .suite-workflow-section::before,
  .suite-workflow-section:nth-child(even)::before {
    grid-column: 1;
    grid-row: 1;
  }
  .suite-workflow-section .workflow-copy,
  .suite-workflow-section:nth-child(even) .workflow-copy {
    grid-column: 1;
    grid-row: 2;
  }
  .suite-workflow-section .workflow-details,
  .suite-workflow-section:nth-child(even) .workflow-details {
    grid-column: 1;
    grid-row: 3;
  }
  .suite-workflow-section .button,
  .suite-workflow-section:nth-child(even) .button {
    grid-column: 1;
    grid-row: 4;
  }
  .workflow-index,
  .suite-workflow-section:nth-child(even) .workflow-index {
    left: 34px;
    right: auto;
    top: 34px;
  }
}

@media (max-width: 640px) {
  .suite-body .suite-hero-premium {
    min-height: calc(100svh - 72px);
    padding: 26px 18px 22px;
  }
  .suite-body .suite-hero-premium .suite-copy h1 {
    font-size: clamp(44px, 13vw, 54px);
    max-width: 330px;
  }
  .suite-body .suite-hero-premium .suite-service-card,
  .suite-body .suite-hero-premium .suite-service-card-primary,
  .suite-body .suite-hero-premium .suite-service-card:nth-of-type(2),
  .suite-body .suite-hero-premium .suite-service-card:nth-of-type(3),
  .suite-body .suite-hero-premium .suite-service-card:nth-of-type(4) {
    border-radius: 18px;
    min-height: 142px;
    padding: 12px;
  }
  .suite-body .suite-hero-premium .suite-service-card strong {
    font-size: 15px;
  }
  .suite-body .suite-hero-premium .suite-service-card p {
    display: -webkit-box;
    font-size: 10.5px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .suite-body .suite-hero-premium .suite-service-card::after {
    display: none;
  }
  .suite-body .suite-hero-premium .service-index {
    height: 34px;
    width: 34px;
  }
  .suite-workflow-sections {
    gap: 16px;
    padding: 30px 18px 20px;
  }
  .suite-workflow-section,
  .suite-workflow-section:nth-child(even) {
    border-radius: 22px;
    gap: 13px;
    padding: 16px;
  }
  .suite-workflow-section::before,
  .suite-workflow-section:nth-child(even)::before {
    aspect-ratio: auto;
    min-height: 108px;
  }
  .suite-workflow-section .workflow-copy p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .suite-workflow-section .workflow-details,
  .suite-workflow-section:nth-child(even) .workflow-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .suite-workflow-section .workflow-details span {
    display: -webkit-box;
    font-size: 10.5px;
    line-height: 1.25;
    min-height: 50px;
    overflow: hidden;
    padding: 8px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .suite-workflow-section .workflow-details span:nth-child(n+3) {
    display: none;
  }
  .suite-workflow-section .button,
  .suite-workflow-section:nth-child(even) .button {
    justify-self: stretch;
  }
  .workflow-index,
  .suite-workflow-section:nth-child(even) .workflow-index {
    left: 30px;
    top: 30px;
  }
}

@media (max-width: 360px) {
  .suite-body .suite-hero-premium .suite-service-stack {
    grid-template-columns: 1fr;
  }
}

}

.closing-page .main-pane,
.closing-page .suite-main-pane {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(240, 239, 236, .82) 44%, #f8f8f6 100%),
    repeating-linear-gradient(90deg, rgba(6, 7, 6, .035) 0, rgba(6, 7, 6, .035) 1px, transparent 1px, transparent 88px);
}
.closing-shell {
  max-width: 1320px;
  padding-top: 18px;
}
.closing-title {
  background:
    linear-gradient(90deg, rgba(6, 7, 6, .95), rgba(6, 7, 6, .78) 48%, rgba(6, 7, 6, .44)),
    linear-gradient(180deg, rgba(6, 7, 6, .18), rgba(6, 7, 6, .84)),
    url("/assets/projects/cedar-park-btr-generated.webp") center / cover no-repeat;
  border-color: rgba(6, 7, 6, .16);
  color: white;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  min-height: 310px;
  padding: clamp(22px, 3vw, 32px);
}
.closing-title::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .10), transparent 34%),
    radial-gradient(ellipse at 78% 14%, rgba(197, 184, 124, .24), transparent 28%);
}
.closing-title::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0, rgba(255, 255, 255, .08) 1px, transparent 1px, transparent 58px);
  opacity: .28;
}
.closing-title .eyebrow {
  color: var(--sage);
}
.closing-title h1 {
  color: white;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: .98;
  max-width: 700px;
}
.closing-title .app-subtitle,
.closing-title .section-copy {
  color: rgba(255, 255, 255, .76);
}
.closing-title .app-subtitle {
  max-width: 720px;
}
.closing-title .section-copy {
  max-width: 610px;
}
.closing-title .hero-actions {
  margin-top: 18px;
}
.closing-title .button.primary {
  background:
    radial-gradient(circle at 84% 76%, rgba(176, 176, 170, .28), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f7f7f6 38%, #d7d7d4 100%);
  border-color: rgba(255, 255, 255, .72);
  color: var(--ink);
}
.closing-title .dark-secondary {
  background:
    radial-gradient(circle at 86% 78%, rgba(176, 176, 170, .22), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .055) 42%, rgba(6, 7, 6, .62) 100%);
  border-color: rgba(255, 255, 255, .30);
  color: white;
}
.closing-hero-card {
  align-self: center;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, .20), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .055));
  backdrop-filter: blur(18px) saturate(1.12);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 34px 78px rgba(0, 0, 0, .34);
}
.closing-hero-card strong {
  font-size: clamp(34px, 3.5vw, 46px);
}
.closing-pulse-grid {
  display: grid;
  gap: 9px;
  grid-template-columns: 1fr;
}
.closing-pulse-grid div {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  min-height: 42px;
  padding: 8px 10px;
}
.closing-pulse-grid strong {
  color: white;
  font-size: 19px;
}
.closing-kpis {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.closing-kpis .kpi {
  min-height: 98px;
  padding: 14px;
}
.closing-kpis .kpi strong {
  font-size: 22px;
}
.closing-kpis .kpi p {
  font-size: 12px;
  line-height: 1.35;
}
.closing-tabs {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(6, 7, 6, .06), inset 0 1px 0 rgba(255, 255, 255, .86);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 6px;
  position: sticky;
  top: 88px;
  z-index: 9;
}
.closing-tabs button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  min-height: 38px;
  padding: 0 12px;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}
.closing-tabs button:hover,
.closing-tabs button.active {
  background:
    radial-gradient(circle at 84% 76%, rgba(176, 176, 170, .26), transparent 28%),
    linear-gradient(155deg, #252424 0%, #050505 54%, #343230 100%);
  border-color: rgba(6, 7, 6, .88);
  box-shadow: 0 14px 32px rgba(6, 7, 6, .16), inset 0 1px 0 rgba(255, 255, 255, .20);
  color: white;
  transform: translateY(-1px);
}
.closing-view {
  display: none;
}
.closing-view.active {
  display: grid;
  gap: 14px;
}
.closing-overview-grid {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
}
.closing-overview-grid .stage-forecast {
  grid-template-columns: 1fr;
}
.closing-overview-grid .panel-head {
  padding-bottom: 10px;
}
.closing-forecast-row {
  gap: 10px;
  grid-template-columns: minmax(210px, .9fr) minmax(420px, 1.1fr);
  padding: 12px;
}
.closing-forecast-row h3 {
  font-size: 17px;
  margin-top: 4px;
}
.closing-forecast-row p {
  display: -webkit-box;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 4px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.closing-forecast-row .forecast-metrics {
  gap: 6px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.closing-forecast-row .forecast-metrics div {
  padding: 8px;
}
.closing-forecast-row .forecast-metrics span {
  font-size: 9px;
  line-height: 1.1;
}
.closing-forecast-row .forecast-metrics strong {
  font-size: 14px;
}
.closing-forecast-row .progress-stack {
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.closing-forecast-row .progress-stack div {
  padding: 8px;
}
.closing-forecast-row .progress-stack span {
  font-size: 11px;
  line-height: 1.25;
}
.closing-stage-forecast {
  gap: 8px;
  padding: 12px;
}
.closing-stage-forecast div {
  padding: 9px;
}
.closing-stage-forecast strong {
  font-size: 16px;
}
.closing-stage-forecast p {
  font-size: 12px;
  line-height: 1.3;
}
.closing-board {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  overflow-x: auto;
  padding: 16px;
}
.closing-column {
  background: linear-gradient(180deg, rgba(248, 248, 246, .96), rgba(240, 239, 236, .86));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  min-height: 260px;
  min-width: 0;
  padding: 10px;
}
.closing-column-head {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}
.closing-column-head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.closing-column-head strong {
  font-size: 16px;
}
.closing-column-cards {
  display: grid;
  gap: 8px;
}
.closing-card {
  background: white;
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(6, 7, 6, .06);
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 5px;
  padding: 10px;
  text-align: left;
}
.closing-card:hover,
.closing-card.is-selected {
  background:
    linear-gradient(180deg, rgba(197, 184, 124, .24), rgba(197, 184, 124, .12)),
    white;
  border-color: rgba(197, 184, 124, .55);
}
.closing-card strong {
  font-size: 13px;
  line-height: 1.25;
}
.closing-card span,
.closing-card small,
.empty-column {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.empty-column {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 10px;
}
.closing-table .status-pill {
  color: var(--near-black);
}
.status-pill {
  background: rgba(6, 7, 6, .06);
  border: 1px solid rgba(6, 7, 6, .08);
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
}
.status-ready-to-wire,
.status-funds-received {
  background: rgba(171, 203, 170, .28);
  border-color: rgba(107, 143, 106, .24);
}
.status-blocked {
  background: rgba(140, 98, 80, .14);
  border-color: rgba(140, 98, 80, .22);
}
.close-status-grid,
.case-checklist {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.close-status-grid span,
.case-checklist span,
.closing-checklist div,
.closing-report div {
  background: linear-gradient(180deg, #ffffff, #f0efec);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 14px rgba(6, 7, 6, .04);
}
.close-status-grid span {
  display: grid;
  gap: 4px;
  padding: 10px;
}
.close-status-grid small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.close-status-grid strong {
  font-size: 14px;
}
.case-checklist span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  padding: 9px 10px;
}
.case-checklist span::before {
  content: "";
  display: inline-block;
  margin-right: 6px;
}
.case-checklist span.is-complete {
  color: var(--near-black);
}
.case-checklist span.is-complete::before {
  content: "Done";
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.closing-checklist {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.closing-checklist div {
  display: grid;
  gap: 8px;
  padding: 12px;
}
.closing-checklist span,
.closing-report span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.closing-checklist strong,
.closing-report strong {
  font-size: 20px;
}
.closing-checklist i {
  background: var(--surface-3);
  border-radius: 999px;
  display: block;
  height: 8px;
  overflow: hidden;
}
.closing-checklist i::after {
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: inherit;
  content: "";
  display: block;
  height: 100%;
  width: var(--progress);
}
.blocker-item {
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.closing-report {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.closing-report div {
  display: grid;
  gap: 6px;
  padding: 13px;
}
.closing-report p {
  color: var(--muted);
  font-size: 13px;
}
.closing-action-row {
  background: linear-gradient(180deg, #ffffff, #f0efec);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 14px rgba(6, 7, 6, .04);
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 6px;
  padding: 13px;
  text-align: left;
}
.closing-action-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.closing-action-row strong {
  font-size: 18px;
}
.closing-action-row p {
  color: var(--muted);
  font-size: 13px;
}
.closing-integrations {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .closing-board {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
  .closing-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .closing-overview-grid {
    grid-template-columns: 1fr;
  }
  .closing-forecast-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .closing-title {
    grid-template-columns: 1fr;
  }
  .closing-board {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
  .closing-stage-forecast {
    grid-template-columns: 1fr;
  }
  .closing-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(145px, 1fr));
  }
}

@media (max-width: 640px) {
  .closing-title {
    min-height: 0;
    padding: 24px 18px;
  }
  .closing-title h1 {
    font-size: 34px;
  }
  .closing-title .hero-actions {
    display: grid;
  }
  .closing-title .button {
    width: 100%;
  }
  .closing-kpis,
  .closing-board,
  .closing-overview-grid,
  .close-status-grid,
  .case-checklist,
  .closing-integrations {
    grid-template-columns: 1fr;
  }
  .closing-forecast-row .forecast-metrics,
  .closing-forecast-row .progress-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .closing-tabs {
    border-radius: 20px;
    margin-left: -2px;
    margin-right: -2px;
    position: static;
  }
  .closing-board {
    overflow-x: visible;
  }
}

@media (max-width: 1180px) {
  .sales-toolbar {
    grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(145px, 1fr));
  }
  .sales-toolbar-compact {
    grid-template-columns: minmax(260px, 1fr) minmax(145px, 220px) auto;
  }
  .sales-workspace-page .data-table {
    min-width: 900px;
  }
}

@media (max-width: 980px) {
  .sales-workspace-page .product-shell {
    display: block;
  }
  .sales-workspace-page .main-pane {
    max-width: 100%;
    width: 100%;
  }
  .sales-workspace-page .template-topbar,
  .sales-workspace-page .app-shell {
    max-width: 100%;
    width: 100%;
  }
  .sales-workspace-page .template-sidebar {
    background: linear-gradient(145deg, #060706, #191714);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    height: auto;
    min-height: 0;
    padding: 12px 16px;
    position: static;
    top: 0;
    width: 100%;
  }
  .sales-workspace-page .sidebar-brand,
  .sales-workspace-page .sidebar-footer {
    display: none;
  }
  .sales-workspace-page .sidebar-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-top: 0;
  }
  .sales-workspace-page .nav-link {
    flex: 0 0 auto;
    min-height: 40px;
    white-space: nowrap;
  }
  .sales-toolbar,
  .sales-toolbar-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sales-search {
    grid-column: 1 / -1;
  }
  .toolbar-reset {
    justify-self: start;
  }
  .objection-cards {
    grid-template-columns: 1fr;
  }
  .objection-card {
    min-height: 0;
  }
  .trend-card-metrics,
  .objection-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .sales-workspace-page .template-topbar {
    display: none;
  }
  .sales-workspace-page .app-shell {
    padding: 20px 16px 54px;
  }
  .sales-workspace-page .page-head {
    border-radius: 22px;
    min-height: 0;
    padding: 24px;
  }
  .sales-workspace-page .page-head h1 {
    font-size: 38px;
  }
  .sales-workspace-page .head-meta,
  .sales-workspace-page .page-head .head-meta {
    font-size: 15px;
  }
  .sales-toolbar,
  .sales-toolbar-compact,
  .objection-metrics,
  .trend-card-metrics,
  .compliance-row,
  .score-grid,
  .score-grid.cols-2 {
    grid-template-columns: 1fr;
  }
  .sales-search,
  .sales-select,
  .toolbar-reset {
    width: 100%;
  }
  .sales-workspace-page .sidebar-nav {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
  }
  .sales-workspace-page .nav-link {
    font-size: 12px;
    justify-content: center;
    min-width: 0;
    padding: 0 6px;
  }
  .toolbar-reset {
    justify-self: stretch;
  }
  .sales-workspace-page .kpi-grid {
    grid-template-columns: 1fr;
  }
  .ranked-list li {
    align-items: start;
    grid-template-columns: 38px minmax(0, 1fr);
  }
  .ranked-list li .report-bar {
    grid-column: 1 / -1;
  }
  .objection-card-top,
  .entry-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .objection-badges {
    justify-content: flex-start;
  }
  .drawer {
    max-width: 100vw;
    width: 100vw;
  }
}

.sales-workspace-page .section-tab {
  background: rgba(255, 255, 255, .84);
  border-color: rgba(6, 7, 6, .10);
  color: rgba(6, 7, 6, .66);
}
.sales-workspace-page .section-tab:hover {
  background: white;
  border-color: rgba(6, 7, 6, .22);
  color: var(--ink);
}
.sales-workspace-page .section-tab.active {
  background: linear-gradient(145deg, #242321, #050505 70%, #34312d);
  border-color: rgba(6, 7, 6, .82);
  box-shadow: 0 16px 34px rgba(6, 7, 6, .16), inset 0 1px 0 rgba(255, 255, 255, .14);
  color: white;
}
