:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --soft: #f5f5f7;
  --paper: #ffffff;
  --panel: #ffffff;
  --line: #e5e5ea;
  --accent: #9a7b4f;
  --accent-dark: #6f5634;
  --quiet: #515154;
  --gold: #9a7b4f;
  --terra: #8f5b48;
  --blue: #556070;
  --green: #4d6d5a;
  --shadow: 0 24px 70px rgba(8, 8, 11, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(233, 231, 242, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.header-actions,
.hero-actions,
.trust-row,
.cockpit-actions,
.panel-heading,
.control-strip,
.composer,
.metric-row,
.mini-tabs,
.integration-card > div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
}

.brand img {
  width: 172px;
  height: 48px;
  display: block;
}

.site-nav {
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.text-button,
.nav-button {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.mega-nav {
  position: relative;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-weight: 500;
}

.nav-trigger::after {
  content: "⌄";
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger {
  background: #f4f4f5;
  border-color: var(--line);
}

.mega-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 50;
  display: grid;
  min-width: 620px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(8, 8, 11, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.resources-panel,
.product-panel {
  min-width: 720px;
}

.tools-panel {
  min-width: 640px;
}

.slim-panel {
  min-width: 430px;
  grid-template-columns: 1fr;
}

.mega-column {
  display: grid;
  gap: 8px;
}

.mega-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.mega-panel a,
.mega-panel button {
  display: grid;
  gap: 4px;
  min-height: 74px;
  align-content: center;
  padding: 12px 12px 12px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
}

.mega-panel a:hover,
.mega-panel button:hover {
  border-color: var(--line);
  background: #f8f8f8;
}

.mega-panel strong {
  font-size: 1rem;
  font-weight: 600;
}

.mega-panel span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.35;
}

.site-nav a:hover,
.text-button:hover,
.nav-button:hover {
  color: var(--ink);
}

.header-actions,
.hero-actions,
.cockpit-actions {
  gap: 10px;
}

.text-button {
  border: 0;
  background: transparent;
}

.nav-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  appearance: none;
  box-shadow: none;
}

.nav-button:hover {
  border-color: #cfc8ba;
  background: #f7f7f9;
}

.primary-button,
.secondary-button,
.icon-button,
.segment button,
.mini-tabs button,
.open-button {
  min-height: 40px;
  border-radius: 9px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 16px;
}

.primary-button {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 22, 18, 0.18);
}

.primary-button:hover,
.secondary-button:hover,
.icon-button:hover,
.open-button:hover,
.segment button:hover,
.mini-tabs button:hover {
  transform: translateY(-1px);
}

.secondary-button {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
}

.large {
  min-height: 48px;
  padding-inline: 20px;
}

.small {
  min-height: 34px;
  padding-inline: 12px;
  font-size: 0.86rem;
}

.icon-button {
  width: 42px;
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
  font-size: 1.05rem;
}

main {
  overflow: hidden;
}

.hero {
  min-height: min(720px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 70px) 64px;
  background: #ffffff;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-visual-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 clamp(10px, 2vw, 18px);
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--quiet);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
  font-weight: 600;
}

.hero-copy > p {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
  color: #33323a;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
  font-weight: 400;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

.trust-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 8px 11px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-product,
.hero-command {
  position: relative;
  width: min(1120px, 100%);
  min-height: clamp(330px, 38vw, 520px);
  margin: 0 auto;
  border: 1px solid rgba(233, 231, 242, 0.95);
  border-radius: 18px;
  overflow: hidden;
  background: #171612;
  box-shadow: var(--shadow);
}

.hero-command {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  padding: 14px;
  background:
    radial-gradient(circle at 80% 20%, rgba(182, 154, 106, 0.18), transparent 30%),
    linear-gradient(135deg, #111111, #242321);
  color: #ffffff;
}

.fixed-hero-command {
  min-height: 470px;
  isolation: isolate;
}

.command-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #73d48f;
  box-shadow: 0 0 0 6px rgba(115, 212, 143, 0.13);
}

.command-sidebar small,
.command-topline span,
.command-grid span,
.command-grid small,
.command-list small {
  color: #cfcfcf;
}

.command-sidebar button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-align: left;
  padding: 0 12px;
}

.command-main {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 34px);
}

.command-topline {
  display: grid;
  gap: 6px;
}

.command-topline strong {
  font-size: clamp(1.7rem, 4vw, 3.8rem);
  font-weight: 650;
}

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

.command-grid article {
  display: grid;
  gap: 6px;
  min-height: 130px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.command-grid strong {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 650;
}

.command-list {
  display: grid;
  gap: 10px;
}

.command-list div {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: start;
  padding: 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.command-list span {
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: #b69a6a;
}

.command-list strong,
.command-list small {
  grid-column: 2;
}

.hero-product img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

.hero-product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 22, 18, 0.05), rgba(23, 22, 18, 0.5));
  pointer-events: none;
}

.hero-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: min(270px, calc(100% - 34px));
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(23, 22, 18, 0.78);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.hero-card small,
.hero-card span {
  color: #d8d6e5;
  font-weight: 600;
  font-size: 0.78rem;
}

.priority-card {
  left: 18px;
  bottom: 18px;
}

.sync-card {
  right: 18px;
  top: 18px;
}

.sync-card strong {
  font-size: 1.9rem;
}

.logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #08080b;
}

.logos span {
  min-height: 78px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 650;
}

.logos span:last-child {
  border-right: 0;
}

.section,
.cockpit,
.proof,
.final-cta {
  padding: clamp(56px, 8vw, 106px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 28px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.feature-grid,
.integration-grid,
.proof-grid {
  display: grid;
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid article,
.integration-card,
.proof-grid article,
.panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 14px 38px rgba(43, 38, 28, 0.06);
}

.feature-grid article {
  padding: 22px;
}

.feature-grid p,
.integration-card p {
  color: var(--muted);
  line-height: 1.55;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 30px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: #eaf2ee;
  color: var(--accent-dark);
  font-weight: 650;
  font-size: 0.78rem;
}

.cockpit {
  background: #171612;
  color: #ffffff;
}

.cockpit-kpis,
.playbook-strip {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.cockpit-kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cockpit-kpis article,
.playbook-strip {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.cockpit-kpis article {
  min-height: 116px;
  padding: 15px;
  display: grid;
  gap: 6px;
}

.cockpit-kpis span {
  color: #cfc5b7;
  font-size: 0.82rem;
}

.cockpit-kpis strong {
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 650;
}

.cockpit-kpis small {
  color: #b9b4ae;
}

.playbook-strip {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 15px;
}

.playbook-strip article {
  display: grid;
  gap: 4px;
}

.playbook-strip span {
  color: var(--accent);
  font-size: 0.76rem;
  text-transform: uppercase;
  font-weight: 600;
}

.playbook-strip strong {
  color: #ffffff;
  font-size: 1.1rem;
}

.playbook-strip p {
  margin: 0;
  color: #d9d7d1;
}

.playbook-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cockpit-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.cockpit .eyebrow {
  color: var(--accent);
}

.cockpit .secondary-button,
.cockpit .icon-button {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.control-strip {
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.scan-console {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.4fr) minmax(170px, 0.45fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.scan-console h3,
.scan-console p {
  margin-bottom: 0;
}

.scan-console p:not(.eyebrow) {
  color: #d9d7d1;
  line-height: 1.5;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-grid button,
.area-grid a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.area-grid button.selected {
  background: #ffffff;
  color: var(--ink);
}

.scan-summary {
  display: grid;
  gap: 5px;
  justify-items: start;
  color: #ffffff;
}

.scan-summary strong {
  font-size: 2.2rem;
  line-height: 1;
}

.scan-summary span {
  color: #d9d7d1;
  font-size: 0.82rem;
  font-weight: 600;
}

.search-box,
.threshold,
.segment,
.mini-tabs {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.search-box {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
}

.search-box span,
.threshold {
  color: #cfc5b7;
  font-weight: 500;
  font-size: 0.88rem;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
}

.search-box input::placeholder {
  color: #9e9588;
}

.threshold {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}

.threshold input {
  accent-color: var(--accent);
}

.segment,
.mini-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
}

.segment button,
.mini-tabs button {
  background: transparent;
  color: #cfc5b7;
  padding: 0 13px;
}

.segment button.selected,
.mini-tabs button.selected {
  background: #ffffff;
  color: var(--ink);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.86fr);
  gap: 16px;
  align-items: start;
}

.ideas-panel {
  grid-column: 2;
}

.idea-list {
  display: grid;
  gap: 8px;
}

.idea-list button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  padding: 0 12px;
  font-weight: 500;
}

.idea-list button:hover {
  border-color: #cfc8ba;
  background: #f7f7f9;
}

.panel {
  min-width: 0;
  padding: 18px;
  color: var(--ink);
}

.panel-heading {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.table {
  display: grid;
  gap: 8px;
}

.row {
  display: grid;
  grid-template-columns: minmax(170px, 1.35fr) 98px 112px 86px 82px;
  gap: 10px;
  align-items: center;
  min-height: 66px;
  padding: 10px;
  border: 1px solid #eee8dc;
  border-radius: 11px;
  background: #ffffff;
}

.row.header {
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.account strong,
.account span,
.source span,
.timeline strong,
.timeline small,
.event strong,
.event time {
  display: block;
}

.account span,
.source span,
.fit small,
.timeline small,
.event time {
  color: var(--muted);
  font-size: 0.78rem;
}

.tag {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 650;
}

.tag.hot {
  background: #f7dfca;
  color: #8a3c00;
}

.tag.warm {
  background: #e0efe8;
  color: #075f37;
}

.tag.risk {
  background: #f3ded8;
  color: #7c2c74;
}

.score {
  height: 7px;
  overflow: hidden;
  margin-top: 5px;
  border-radius: 999px;
  background: #eceaf4;
}

.score span {
  display: block;
  height: 100%;
  background: var(--accent);
}

.open-button {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.confidence,
.run-state {
  white-space: nowrap;
  border-radius: 999px;
  padding: 7px 10px;
  background: #eaf2ee;
  color: var(--accent-dark);
  font-weight: 650;
  font-size: 0.82rem;
}

.summary {
  color: #423e36;
  line-height: 1.65;
}

.signal-list {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.signal {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid #eee8dc;
  border-radius: 11px;
  background: #fdfbf6;
}

.signal::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.composer {
  gap: 10px;
  align-items: end;
  margin-top: 14px;
}

.composer label {
  flex: 1;
  color: var(--muted);
  font-weight: 600;
}

select {
  width: 100%;
  min-height: 40px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #ffffff;
  padding: 0 10px;
  color: var(--ink);
}

.draft {
  min-height: 94px;
  margin-top: 12px;
  padding: 13px;
  white-space: pre-line;
  border-radius: 12px;
  background: #171612;
  color: #ffffff;
  line-height: 1.55;
  font-size: 0.92rem;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.timeline li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.timeline span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eceaf4;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.timeline li.done span {
  background: var(--green);
  color: white;
}

canvas {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 720 / 310;
  border: 1px solid #eee8dc;
  border-radius: 12px;
  background: #ffffff;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.metric-row div {
  padding: 12px;
  border-radius: 12px;
  background: #171612;
}

.metric-row strong {
  display: block;
  color: #ffffff;
  font-size: 1.45rem;
}

.metric-row span {
  color: #d7cec0;
  font-size: 0.8rem;
}

.events {
  display: grid;
  gap: 10px;
}

.event {
  padding: 11px 11px 11px 13px;
  border-left: 3px solid var(--accent);
  border-radius: 0 11px 11px 0;
  background: #ffffff;
}

.toggle {
  position: relative;
  width: 48px;
  height: 28px;
  display: inline-block;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #ececf1;
}

.toggle span::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: white;
  transition: transform 160ms ease;
}

.toggle input:checked + span {
  background: #111111;
  border-color: #b69a6a;
}

.toggle input:checked + span::after {
  transform: translateX(20px);
}

.integrations {
  background:
    linear-gradient(180deg, #ffffff, #f7f7f9),
    linear-gradient(90deg, rgba(154, 123, 79, 0.08), transparent 40%);
}

.integration-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.integration-card {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.integration-card > div {
  gap: 10px;
}

.integration-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: white;
  font-weight: 650;
}

.integration-card a {
  width: fit-content;
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.integration-card a:hover {
  text-decoration: underline;
}

.hubspot {
  background: var(--gold);
}

.salesforce {
  background: var(--blue);
}

.slack {
  background: #12c46f;
}

.mail {
  background: var(--terra);
}

.connect-button.connected {
  background: var(--accent-dark);
}

.proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  background: #ffffff;
}

.market-section {
  background: #f7f7f9;
}

.venture-proof {
  background: #f5f5f7;
}

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

.venture-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(8, 8, 11, 0.06);
}

.fixed-venture-grid article {
  display: flex;
  flex-direction: column;
}

.fixed-venture-grid article p {
  margin-bottom: 0;
}

.venture-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  font-weight: 650;
  line-height: 1;
}

.venture-grid span {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

.venture-grid p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.location-finder {
  background:
    linear-gradient(180deg, #ffffff 0%, #faf9f6 100%),
    linear-gradient(90deg, rgba(154, 123, 79, 0.07), transparent 42%);
}

.locator-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.locator-controls,
.locator-results {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(8, 8, 11, 0.07);
}

.locator-controls {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
}

.locator-controls > div {
  display: grid;
  gap: 14px;
}

.locator-controls label,
.control-group > span,
.zip-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.control-group {
  display: grid;
  gap: 8px;
}

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

.choice-grid button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: #424245;
  font-weight: 500;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.choice-grid button:hover {
  transform: translateY(-1px);
  border-color: #cfc8ba;
}

.choice-grid button.selected {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.radius-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.zip-form {
  display: grid;
  gap: 8px;
}

.zip-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.zip-form input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
}

.locator-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.locator-results {
  min-height: 360px;
  max-height: 560px;
  overflow: auto;
  padding: 10px;
}

.nearby-empty,
.nearby-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #ffffff;
}

.nearby-empty {
  min-height: 330px;
  align-content: center;
  justify-items: center;
  text-align: center;
  background: #f7f7f9;
}

.nearby-empty span,
.nearby-card p {
  color: var(--muted);
  line-height: 1.55;
}

.nearby-card + .nearby-card {
  margin-top: 10px;
}

.nearby-card header {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: start;
}

.nearby-card h3 {
  margin-bottom: 3px;
}

.nearby-card small {
  color: var(--accent-dark);
  font-weight: 600;
}

.nearby-card p {
  margin: 0;
}

.nearby-card footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.nearby-pill {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f3f2ef;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
}

.search-progress {
  display: none;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7f7f9);
}

.search-progress.active {
  display: grid;
}

.pulse-orbit {
  position: relative;
  width: 58px;
  height: 58px;
  margin: 2px 0;
  border: 1px solid #e8e1d6;
  border-radius: 50%;
  background: #111111;
  overflow: hidden;
}

.pulse-orbit::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.pulse-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c0a06b;
  animation: orbitPulse 1.5s ease-in-out infinite;
}

.pulse-orbit span:nth-child(1) {
  left: 25px;
  top: 8px;
}

.pulse-orbit span:nth-child(2) {
  right: 10px;
  bottom: 16px;
  animation-delay: 160ms;
}

.pulse-orbit span:nth-child(3) {
  left: 12px;
  bottom: 15px;
  animation-delay: 320ms;
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.28);
  }
}

.search-progress strong {
  font-weight: 600;
}

.search-progress p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #ececf1;
}

.progress-track span {
  display: block;
  width: 12%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #111111, #b69a6a);
  transition: width 340ms ease;
}

.ask-section {
  background: #ffffff;
}

.ask-shell {
  display: grid;
  gap: 14px;
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7f7f9;
  padding: 14px;
  box-shadow: 0 14px 38px rgba(8, 8, 11, 0.06);
}

.ask-chat {
  display: grid;
  gap: 10px;
  max-height: 430px;
  overflow: auto;
  padding: 8px;
}

.agent-message,
.user-message {
  max-width: min(760px, 92%);
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.agent-message {
  justify-self: start;
}

.user-message {
  justify-self: end;
  background: #111111;
  color: #ffffff;
}

.agent-message strong,
.user-message strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.agent-message p,
.user-message p {
  margin: 0;
  line-height: 1.55;
}

.agent-message p {
  color: #424245;
}

.ask-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.ask-form input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  padding: 0 14px;
  color: var(--ink);
}

.ask-prompts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ask-prompts button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 500;
}

.ask-prompts button:hover {
  color: var(--ink);
  border-color: #cfc8ba;
}

.purpose-hero {
  min-height: calc(86vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: clamp(24px, 6vw, 84px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 70px);
  background: #ffffff;
}

.fixed-purpose-hero {
  overflow: hidden;
}

.purpose-hero h1 {
  margin-left: 0;
  max-width: 1050px;
}

.purpose-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.purpose-card {
  display: grid;
  gap: 12px;
  min-height: 360px;
  align-content: end;
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 15%, rgba(182, 154, 106, 0.22), transparent 34%),
    linear-gradient(145deg, #111111, #24231f);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.fixed-purpose-card {
  position: relative;
  z-index: 1;
}

.founder-hero {
  min-height: calc(86vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.48fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 82% 16%, rgba(182, 154, 106, 0.12), transparent 30%),
    #ffffff;
}

.founder-copy h1 {
  margin-left: 0;
}

.founder-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.7;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.founder-tags span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 500;
}

.founder-photo-card {
  min-height: 540px;
  border-radius: 26px;
  overflow: hidden;
  background: #111111;
  box-shadow: var(--shadow);
}

.founder-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
  object-position: center;
}

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

.founder-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(8, 8, 11, 0.06);
}

.founder-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.founder-grid p,
.founder-mission p {
  color: var(--muted);
  line-height: 1.65;
}

.founder-mission {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.purpose-card span {
  color: #c7b08a;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.purpose-card strong {
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  font-weight: 650;
  line-height: 1.1;
}

.purpose-card p {
  margin: 0;
  color: #d7d7dc;
}

.purpose-split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.purpose-split p {
  color: var(--muted);
  line-height: 1.65;
}

.purpose-list {
  display: grid;
  gap: 12px;
}

.purpose-list article {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.purpose-list span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.purpose-list p,
.purpose-list strong {
  grid-column: 2;
}

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

.market-grid article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(8, 8, 11, 0.06);
}

.market-grid strong {
  display: block;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
}

.market-grid span {
  display: block;
  margin-top: 5px;
  color: var(--accent-dark);
  font-weight: 650;
}

.market-grid p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.55;
}

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

.proof-grid article {
  min-height: 230px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-grid strong {
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  line-height: 0.95;
}

.proof-grid span {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 360px;
  border-top: 1px solid var(--line);
  background: #08080b;
  color: #ffffff;
}

.final-cta .eyebrow {
  color: var(--accent);
}

.final-cta h2 {
  max-width: 900px;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: #d9d7d1;
  line-height: 1.65;
}

.final-actions {
  display: grid;
  gap: 10px;
  min-width: min(320px, 100%);
}

.final-cta .secondary-button {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer {
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 70px);
  background: #060608;
  color: #ffffff;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  width: 170px;
  height: auto;
  filter: invert(1) grayscale(1) contrast(1.3);
}

.footer-brand p {
  max-width: 420px;
  margin-top: 24px;
  color: #aaaab2;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-socials a {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

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

.footer-links div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 8px;
}

.footer-links a,
.footer-links button {
  width: fit-content;
  border: 0;
  background: transparent;
  color: #aaaab2;
  padding: 0;
  text-align: left;
  text-decoration: none;
  font-weight: 750;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #ffffff;
}

.footer-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badges span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #bdbdc4;
  font-weight: 500;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 30px 0;
  color: #8f8f98;
}

.footer-legal a {
  color: #a9a9b1;
  text-decoration: none;
  font-weight: 500;
}

.footer-legal a:hover {
  color: #ffffff;
}

.legal-disclaimer {
  max-width: 1180px;
  margin: 0 auto;
  color: #777780;
  text-align: center;
  line-height: 1.65;
}

.legal-page {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.legal-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(8, 8, 11, 0.06);
}

.legal-block h2 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.legal-block p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-mini-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 30px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}

.legal-mini-footer a {
  color: var(--ink);
  text-decoration: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 40;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  min-width: min(420px, calc(100vw - 32px));
  padding: 13px 16px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 12px;
  background: #171612;
  color: #ffffff;
  box-shadow: 0 18px 48px rgba(23, 22, 18, 0.28);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.pricing-popover {
  position: fixed;
  top: 72px;
  right: clamp(14px, 4vw, 54px);
  z-index: 35;
  width: min(340px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.pricing-popover.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pricing-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pricing-popover a,
.pricing-popover button:not(.modal-close) {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  font-weight: 600;
}

.pricing-popover a:hover,
.pricing-popover button:not(.modal-close):hover {
  border-color: var(--line);
  background: #f7f7f9;
}

.mini-close {
  width: 28px;
  height: 28px;
  font-size: 1rem;
}

.modal {
  width: min(620px, calc(100vw - 28px));
  max-height: min(86vh, 920px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(23, 22, 18, 0.55);
  backdrop-filter: blur(6px);
}

.modal h2 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

.wide-modal {
  width: min(1120px, calc(100vw - 28px));
}

.modal p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-card {
  display: grid;
  gap: 5px;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7f7f9;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--ink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.price-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(8, 8, 11, 0.06);
}

.featured-plan {
  border-color: #111111;
  box-shadow: 0 22px 60px rgba(8, 8, 11, 0.14);
}

.plan-label {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f3f2ef;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.35rem;
}

.price {
  margin: 18px 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 650;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 1rem;
}

.price-card p {
  color: var(--muted);
  line-height: 1.55;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 25px;
  color: #34333b;
  font-weight: 750;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.price-card .primary-button,
.price-card .secondary-button {
  margin-top: auto;
}

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

.account-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.account-form input,
.account-form select {
  width: 100%;
  min-height: 46px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  padding: 0 12px;
  color: var(--ink);
  text-transform: none;
}

.account-form .full-field,
.account-form button {
  grid-column: 1 / -1;
}

.modal-close {
  float: right;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  font-size: 1.2rem;
}

.architecture-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.architecture-list span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font-weight: 600;
}

.panel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.subpage-hero {
  min-height: calc(72vh - 72px);
  display: grid;
  align-content: center;
  padding: clamp(52px, 8vw, 110px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(145deg, rgba(8, 8, 11, 0.96), rgba(28, 27, 24, 0.94)),
    linear-gradient(120deg, rgba(154, 123, 79, 0.18), transparent 45%);
  color: #ffffff;
}

.subpage-hero.compact {
  min-height: 52vh;
}

.subpage-hero .eyebrow {
  color: var(--accent);
}

.subpage-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.subpage-hero p {
  max-width: 760px;
  color: #e3e0d8;
  font-size: 1.08rem;
  line-height: 1.65;
}

.process-grid,
.data-table-section,
.page-grid {
  padding: clamp(34px, 5vw, 70px);
}

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

.process-grid article {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(8, 8, 11, 0.06);
}

.process-grid strong {
  display: inline-flex;
  min-width: 46px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 999px;
  background: #08080b;
  color: var(--accent);
}

.process-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.page-section {
  padding: clamp(38px, 6vw, 76px) clamp(18px, 5vw, 70px);
}

.muted-section {
  background: #f7f7f9;
}

.module-grid,
.ops-grid {
  display: grid;
  gap: 14px;
}

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

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

.module-grid article,
.ops-grid article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(8, 8, 11, 0.06);
}

.module-grid p,
.ops-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.module-grid span {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 9px;
  border-radius: 999px;
  background: #f3f2ef;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.ops-grid strong {
  display: block;
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.compact-table .data-row {
  grid-template-columns: 0.9fr 0.8fr 1fr 1.4fr;
}

.data-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.data-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.5fr 1.2fr;
  gap: 12px;
  padding: 17px;
  border-bottom: 1px solid var(--line);
}

.data-row:last-child {
  border-bottom: 0;
}

.data-row.header {
  background: #08080b;
  color: #ffffff;
  font-weight: 650;
}

.data-row span {
  color: #4b4a55;
  line-height: 1.45;
}

.data-row.header span {
  color: #ffffff;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #08080b;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.source-links a:hover {
  color: var(--accent);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .mega-panel {
    left: 0;
    min-width: min(720px, calc(100vw - 36px));
  }

  .hero,
  .proof {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .integration-grid,
  .proof-grid,
  .process-grid,
  .pricing-grid,
  .venture-grid,
  .cockpit-kpis,
  .command-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .scan-console {
    grid-template-columns: 1fr;
  }

  .locator-shell {
    grid-template-columns: 1fr;
  }

  .hero-command,
  .purpose-hero,
  .purpose-split,
  .founder-hero,
  .founder-mission {
    grid-template-columns: 1fr;
  }

  .playbook-strip {
    grid-template-columns: 1fr;
  }

  .ideas-panel {
    grid-column: auto;
  }
}

@media (max-width: 740px) {
  .site-header {
    min-height: 64px;
    padding: 12px 14px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand img {
    width: 148px;
    height: auto;
  }

  .header-actions .text-button,
  .site-nav {
    display: none;
  }

  .hero,
  .section,
  .cockpit,
  .proof,
  .final-cta {
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 42px;
    gap: 18px;
  }

  .hero-product {
    display: none;
  }

  .hero-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -96px 14px 14px;
  }

  .sync-card {
    margin-top: 8px;
  }

  .feature-grid,
  .integration-grid,
  .proof-grid,
  .process-grid,
  .module-grid,
  .ops-grid,
  .founder-grid,
  .pricing-grid,
  .metric-row,
  .market-grid,
  .venture-grid,
  .cockpit-kpis,
  .command-grid,
  .choice-grid,
  .radius-grid {
    grid-template-columns: 1fr;
  }

  .zip-form div {
    grid-template-columns: 1fr;
  }

  .command-sidebar {
    display: none;
  }

  .price-card {
    min-height: auto;
  }

  .account-form {
    grid-template-columns: 1fr;
  }

  .final-actions {
    min-width: 0;
  }

  .logos {
    display: none;
  }

  .footer-top,
  .footer-links,
  .footer-badges {
    grid-template-columns: 1fr;
  }

  .footer-badges span {
    justify-items: start;
    padding-inline: 14px;
  }

  .cockpit-header,
  .composer {
    flex-direction: column;
    align-items: stretch;
  }

  .cockpit-actions {
    flex-wrap: wrap;
  }

  .row,
  .row.header {
    grid-template-columns: 1fr 84px;
  }

  .row.header div:nth-child(n + 3),
  .row .source,
  .row .fit,
  .row .tag-wrap {
    display: none;
  }

  .data-row,
  .data-row.header {
    grid-template-columns: 1fr;
  }

  .ask-form {
    grid-template-columns: 1fr;
  }

  .agent-message,
  .user-message {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.05rem, 8.3vw, 2.85rem);
    line-height: 1.06;
  }
}
