@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --bg-canvas: #FAFAF7;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F3F5F3;
  --bg-brand-subtle: #E6F5F3;
  --bg-accent-subtle: #FFF4E6;
  --text-primary: #12343B;
  --text-secondary: #60777A;
  --text-tertiary: #809295;
  --text-inverse: #FFFFFF;
  --border-default: #E5ECEB;
  --border-strong: #C9D7D5;
  --border-focus: #038C8C;
  --brand-900: #025159;
  --brand-700: #038C8C;
  --brand-500: #08A696;
  --orange-500: #F28705;
  --orange-600: #F27405;
  --success: #2E9B65;
  --warning: #F5B942;
  --danger: #E8654A;
  --blue: #4D8FCB;
  --lavender: #EDE3F6;
  --lavender-ink: #594168;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --shadow-xs: 0 1px 2px rgba(18, 52, 59, .05);
  --shadow-sm: 0 6px 20px rgba(18, 52, 59, .07);
  --shadow-md: 0 22px 54px rgba(18, 52, 59, .12);
  --container: 1200px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --font: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--text-primary);
  background: var(--bg-canvas);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: #CBEDE9; color: var(--text-primary); }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 1000;
  transform: translateY(-180%); background: var(--brand-900); color: #fff;
  padding: 10px 14px; border-radius: 8px; transition: transform 160ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(3, 140, 140, .34); outline-offset: 3px; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.container-wide { width: min(calc(100% - 48px), 1360px); margin-inline: auto; }
.section { padding-block: 104px; }
.section-sm { padding-block: 72px; }
.section-title { max-width: 760px; margin: 0 0 28px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.04; letter-spacing: -.045em; font-weight: 720; }
.section-copy { max-width: 660px; color: var(--text-secondary); font-size: 17px; line-height: 1.7; }
.eyebrow { margin: 0 0 14px; color: var(--brand-900); font-size: 12px; font-weight: 750; letter-spacing: .105em; text-transform: uppercase; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg-canvas) 92%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border-default) 72%, transparent);
  backdrop-filter: blur(14px);
}
.navbar { min-height: 68px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; font-weight: 760; letter-spacing: -.025em; font-size: 17px; }
.brand img { width: 46px; height: 46px; border-radius: 0; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.nav-link, .nav-popover > summary {
  list-style: none; cursor: pointer; color: #36555A; font-size: 13px; font-weight: 560;
  padding: 9px 10px; border-radius: 7px; transition: background 140ms var(--ease), color 140ms var(--ease);
}
.nav-popover > summary::-webkit-details-marker { display: none; }
.nav-popover > summary::after { content: ""; display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); margin-left: 7px; }
.nav-link:hover, .nav-popover > summary:hover, .nav-link[aria-current="page"] { background: #EDF3F1; color: var(--text-primary); }
.nav-popover { position: relative; }
.nav-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  width: 270px; padding: 8px; background: #fff; border: 1px solid var(--border-default); border-radius: 14px; box-shadow: var(--shadow-md);
}
.nav-menu a { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 10px; border-radius: 9px; }
.nav-menu a:hover { background: #F5F8F7; }
.nav-menu-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--border-default); border-radius: 9px; background: var(--bg-canvas); color: var(--brand-700); font-weight: 750; font-size: 12px; }
.nav-menu strong { display: block; font-size: 13px; line-height: 1.3; }
.nav-menu span { color: var(--text-secondary); font-size: 11.5px; }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 8px; }

.btn {
  min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: 8px; padding: 0 15px;
  font-weight: 650; font-size: 13px; cursor: pointer;
  transition: background 150ms var(--ease), border-color 150ms var(--ease), box-shadow 150ms var(--ease), color 150ms var(--ease);
}
.btn-lg { min-height: 48px; padding-inline: 20px; font-size: 14px; }
.btn-primary { background: var(--brand-900); color: white; box-shadow: 0 1px 0 rgba(0,0,0,.08); }
.btn-primary:hover { background: #073F46; box-shadow: 0 5px 16px rgba(2,81,89,.14); }
.btn-accent { background: var(--orange-500); color: var(--text-primary); }
.btn-accent:hover { background: #E77F03; }
.btn-secondary { background: #fff; border-color: var(--border-strong); color: var(--text-primary); }
.btn-secondary:hover { background: #F5F8F7; border-color: #B7CBC8; }
.btn-ghost { background: transparent; color: #36555A; }
.btn-ghost:hover { background: #EEF3F1; }
.btn-text { min-height: auto; padding: 4px 0; border-radius: 3px; background: transparent; color: var(--brand-900); }
.btn svg { width: 15px; height: 15px; }

.mobile-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; border-radius: 8px; place-items: center; cursor: pointer; }
.mobile-toggle span, .mobile-toggle::before, .mobile-toggle::after { content: ""; display: block; width: 20px; height: 1.5px; background: var(--text-primary); transition: transform 160ms var(--ease); }
.mobile-toggle span { margin-block: 4px; }
.mobile-menu { position: fixed; inset: 68px 0 0; z-index: 90; background: var(--bg-canvas); padding: 20px 24px 40px; overflow: auto; border-top: 1px solid var(--border-default); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a, .mobile-menu summary { display: block; padding: 13px 0; font-size: 18px; font-weight: 650; border-bottom: 1px solid var(--border-default); }
.mobile-menu summary { cursor: pointer; }
.mobile-subnav { padding: 6px 0 6px 16px; }
.mobile-subnav a { font-size: 14px; font-weight: 540; color: var(--text-secondary); }
.mobile-menu .mobile-cta { margin-top: 18px; width: 100%; }

.hero { padding: 72px 0 60px; overflow: hidden; }
.hero-top { text-align: center; max-width: 900px; margin: 0 auto; position: relative; }
.hero-icons { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.hero-icon-bubble { width: 42px; height: 42px; border: 2px solid #fff; border-radius: 50%; background: #F0F6F5; margin-left: -7px; overflow: hidden; box-shadow: 0 0 0 1px var(--border-default); }
.hero-icon-bubble:first-child { margin-left: 0; }
.hero-icon-bubble img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.16); }
.hero h1 { margin: 0 auto; max-width: 840px; font-size: clamp(3rem, 6.6vw, 5.5rem); line-height: .97; letter-spacing: -.065em; font-weight: 760; }
.hero-highlight { position: relative; display: inline-block; z-index: 0; white-space: nowrap; }
.hero-highlight::before { content: ""; position: absolute; z-index: -1; left: -6px; right: -6px; bottom: .06em; height: .43em; border-radius: 999px; background: #FFD899; transform: rotate(-1.2deg); }
.hero-sub { max-width: 720px; margin: 22px auto 0; color: #50696D; font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.hero-microcopy { margin-top: 15px; color: var(--text-tertiary); font-size: 12px; letter-spacing: .02em; }

.hero-stage { position: relative; max-width: 1050px; margin: 42px auto 0; padding: 0 70px 30px; }
.float-art { position: absolute; z-index: 3; width: 82px; filter: drop-shadow(0 8px 14px rgba(18,52,59,.10)); animation: drift 7s ease-in-out infinite; pointer-events: none; }
.float-art.a { left: -12px; top: 10%; transform: rotate(-9deg); }
.float-art.b { right: -18px; top: 26%; width: 74px; animation-delay: -1.7s; }
.float-art.c { left: 12px; bottom: 7%; width: 70px; animation-delay: -3.2s; }
.float-art.d { right: 14px; bottom: 3%; width: 72px; animation-delay: -4.4s; }
@keyframes drift { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }

.product-frame { background: #fff; border: 1px solid #DAE4E2; border-radius: 18px; box-shadow: 0 26px 70px rgba(18,52,59,.14), 0 2px 5px rgba(18,52,59,.04); overflow: hidden; }
.window-bar { height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border-bottom: 1px solid var(--border-default); background: #FBFCFB; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #D5DFDD; }
.window-title { font-size: 11px; font-weight: 650; color: var(--text-secondary); }
.window-chip { padding: 4px 8px; border: 1px solid var(--border-default); border-radius: 6px; background: #fff; color: var(--text-secondary); font-size: 10px; }
.app-preview { display: grid; grid-template-columns: 170px minmax(0,1fr); min-height: 470px; }
.app-sidebar { padding: 16px 10px; border-right: 1px solid var(--border-default); background: #FCFDFB; }
.app-logo { display: flex; align-items: center; gap: 8px; margin: 0 6px 18px; font-size: 12px; font-weight: 720; }
.app-logo .mini-mark { width: 22px; height: 22px; border-radius: 7px; background: var(--brand-900); display: grid; place-items: center; color: white; font-size: 11px; }
.app-nav-item { display: flex; align-items: center; gap: 9px; min-height: 34px; padding: 0 9px; border-radius: 7px; color: #5E7276; font-size: 11px; margin-bottom: 2px; }
.app-nav-item.active { background: var(--bg-brand-subtle); color: var(--text-primary); font-weight: 620; }
.app-nav-icon { width: 15px; height: 15px; border: 1.5px solid currentColor; border-radius: 4px; opacity: .8; }
.app-preview-main { padding: 22px; min-width: 0; background: #fff; }
.preview-heading { display: flex; align-items: start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.preview-title { margin: 0; font-size: 18px; line-height: 1.25; font-weight: 700; letter-spacing: -.02em; }
.preview-heading p { margin: 3px 0 0; color: var(--text-secondary); font-size: 11px; }
.preview-toolbar { display: flex; gap: 7px; align-items: center; }
.preview-pill { display: inline-flex; align-items: center; height: 28px; padding: 0 9px; border: 1px solid var(--border-default); border-radius: 7px; font-size: 9px; color: var(--text-secondary); background: #fff; }
.preview-pill.primary { background: var(--brand-900); border-color: var(--brand-900); color: white; }
.search-summary { display: flex; align-items: center; gap: 8px; padding: 10px 12px; margin-bottom: 12px; background: #F8FAF9; border: 1px solid var(--border-default); border-radius: 9px; overflow: hidden; }
.search-tag { flex: 0 0 auto; padding: 4px 7px; border-radius: 5px; background: var(--bg-brand-subtle); color: var(--brand-900); font-size: 9px; font-weight: 650; }
.search-tag.orange { background: var(--bg-accent-subtle); color: #8A5104; }
.search-meta { color: var(--text-secondary); font-size: 9px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lead-table { border: 1px solid var(--border-default); border-radius: 10px; overflow: hidden; }
.lead-row { display: grid; grid-template-columns: minmax(150px,1.5fr) 72px .9fr .9fr 78px; align-items: center; min-height: 54px; padding: 0 12px; border-bottom: 1px solid var(--border-default); font-size: 10px; }
.lead-row:last-child { border-bottom: 0; }
.lead-row.header { min-height: 34px; background: #FAFBFA; color: var(--text-tertiary); font-size: 9px; font-weight: 650; }
.company-cell { display: flex; align-items: center; gap: 9px; min-width: 0; }
.company-avatar { width: 28px; height: 28px; border-radius: 7px; display: grid; place-items: center; background: var(--bg-brand-subtle); color: var(--brand-900); font-weight: 750; font-size: 10px; flex: 0 0 auto; }
.company-cell strong { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 10px; }
.company-cell span { display: block; color: var(--text-tertiary); font-size: 8.5px; }
.score { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; }
.score-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.signal { color: var(--text-secondary); }
.status { width: fit-content; padding: 3px 6px; border-radius: 999px; background: #EAF6EF; color: #287550; font-size: 8.5px; font-weight: 650; }
.status.new { background: var(--bg-brand-subtle); color: var(--brand-900); }

.proof-strip { padding: 17px 0 20px; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); background: #fff; }
.proof-inner { text-align: center; }
.proof-label { display: block; margin-bottom: 10px; color: var(--text-tertiary); font-size: 10.5px; }
.proof-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 18px; color: #446166; font-size: 12px; font-weight: 600; }
.proof-list span + span::before { content: "•"; margin-right: 18px; color: #B2C3C0; }

.story { background: #F3F4F2; border-top: 1px solid #ECEFEB; border-bottom: 1px solid #E5EAE7; }
.story-block + .story-block { margin-top: 92px; }
.story-heading { margin: 0 0 22px; max-width: 760px; font-size: clamp(2.25rem, 4.6vw, 4rem); letter-spacing: -.05em; line-height: 1; }
.story-kicker { color: var(--text-secondary); max-width: 620px; margin: -8px 0 28px; font-size: 16px; }

.feature-stage { border: 1px solid var(--border-default); border-radius: 16px; overflow: hidden; background: #fff; }
.feature-stage-grid { display: grid; grid-template-columns: 38% 62%; min-height: 430px; }
.feature-stage-copy { padding: 28px; border-right: 1px solid var(--border-default); display: flex; flex-direction: column; }
.feature-stage-copy h3 { margin: 0; font-size: 22px; letter-spacing: -.025em; }
.feature-stage-copy p { color: var(--text-secondary); font-size: 13px; margin: 8px 0 20px; }
.step-list { display: grid; gap: 5px; margin-top: auto; }
.step-item { display: grid; grid-template-columns: 28px 1fr; gap: 10px; padding: 10px; border-radius: 8px; }
.step-item.active { background: #EAF6F4; }
.step-num { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: #fff; border: 1px solid var(--border-default); color: var(--brand-700); font-size: 10px; font-weight: 750; }
.step-item strong { display: block; font-size: 12px; }
.step-item span { display: block; color: var(--text-tertiary); font-size: 10px; }
.feature-stage-ui { background: #EDF6FB; padding: 30px; display: grid; align-items: center; }
.opportunity-panel { background: #fff; border: 1px solid #D9E4E8; border-radius: 14px; box-shadow: 0 14px 30px rgba(18,52,59,.10); padding: 20px; }
.opportunity-head { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--border-default); }
.opportunity-head h4 { margin: 0; font-size: 17px; }
.opportunity-head span { color: var(--text-secondary); font-size: 10px; }
.score-ring { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--brand-500) 0 86%, #E8EFEF 86%); position: relative; flex: 0 0 auto; }
.score-ring::before { content: ""; position: absolute; width: 58px; height: 58px; border-radius: 50%; background: white; }
.score-ring b { position: relative; font-size: 20px; }
.signal-list { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.signal-card { padding: 10px; border: 1px solid var(--border-default); border-radius: 8px; background: #FBFCFB; font-size: 10px; }
.signal-card strong { display: block; font-size: 10px; margin-bottom: 2px; }
.signal-card span { color: var(--text-secondary); }

.mini-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 14px; }
.mini-card { min-height: 126px; padding: 18px; border: 1px solid var(--border-default); border-radius: 12px; background: white; position: relative; overflow: hidden; }
.mini-card strong { display: block; max-width: 150px; font-size: 13px; line-height: 1.35; }
.mini-card p { margin: 6px 0 0; color: var(--text-secondary); font-size: 10.5px; max-width: 160px; }
.mini-icon { width: 30px; height: 30px; margin-bottom: 14px; border-radius: 8px; display: grid; place-items: center; font-weight: 760; font-size: 11px; }
.mini-card:nth-child(1) .mini-icon { background: #DCEFFA; color: #2B6592; }
.mini-card:nth-child(2) .mini-icon { background: #FFF0DC; color: #A76109; }
.mini-card:nth-child(3) .mini-icon { background: #E4F4ED; color: #287550; }
.mini-card:nth-child(4) { background: #092E34; color: white; border-color: #092E34; }
.mini-card:nth-child(4) p { color: #B9D0CD; }
.mini-card:nth-child(4) .mini-icon { background: #164B52; color: #7BD8CD; }

.mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mosaic-card { border: 1px solid var(--border-default); border-radius: 16px; overflow: hidden; background: white; }
.mosaic-card.wide { grid-column: 1 / -1; }
.mosaic-head { min-height: 90px; padding: 20px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.mosaic-head h3 { margin: 0; font-size: 15px; line-height: 1.3; }
.mosaic-head p { margin: 4px 0 0; color: var(--text-secondary); font-size: 11px; }
.mosaic-body { min-height: 270px; padding: 20px; border-top: 1px solid var(--border-default); position: relative; overflow: hidden; }
.tint-orange { background: #FFD77D; }
.tint-coral { background: #FFE7DF; }
.tint-blue { background: #E7F1FF; }
.tint-teal { background: #DDEFEA; }
.tint-sand { background: #F0DCC7; }
.dossier-window { width: 76%; margin-left: auto; background: #fff; border: 1px solid rgba(18,52,59,.16); border-radius: 11px; box-shadow: var(--shadow-sm); overflow: hidden; }
.dossier-bar { height: 28px; border-bottom: 1px solid var(--border-default); display: flex; align-items: center; gap: 5px; padding: 0 9px; }
.dossier-bar i { width: 5px; height: 5px; border-radius: 50%; background: #CAD7D5; }
.dossier-content { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 220px; }
.dossier-aside { padding: 14px; border-right: 1px solid var(--border-default); background: #FBFCFB; }
.dossier-aside b { display: block; margin-bottom: 12px; font-size: 11px; }
.dossier-aside span { display: block; margin: 7px 0; color: var(--text-tertiary); font-size: 8px; }
.dossier-main { padding: 16px; }
.dossier-main h3 { margin: 0 0 8px; font-size: 13px; }
.line { height: 6px; background: #E8EEEE; border-radius: 999px; margin: 7px 0; }
.line.w80 { width: 80%; } .line.w60 { width: 60%; } .line.w45 { width: 45%; }
.insight-box { margin-top: 15px; padding: 10px; border-radius: 8px; background: #EFF8F4; border: 1px solid #D6EBE3; font-size: 8.5px; color: #416D5C; }
.brand-art-overlay { position: absolute; left: 22px; bottom: 15px; width: 130px; filter: drop-shadow(0 10px 16px rgba(18,52,59,.08)); }

.search-ui, .outreach-ui, .crm-ui { background: white; border: 1px solid rgba(18,52,59,.12); border-radius: 11px; box-shadow: 0 8px 24px rgba(18,52,59,.08); overflow: hidden; }
.search-ui { padding: 14px; }
.search-box { height: 34px; display: flex; align-items: center; gap: 8px; padding: 0 10px; border: 1px solid var(--border-default); border-radius: 7px; color: var(--text-secondary); font-size: 9px; }
.search-result { margin-top: 10px; padding: 10px; border: 1px solid var(--border-default); border-radius: 8px; }
.search-result strong { font-size: 10px; }
.search-result span { display: block; color: var(--text-secondary); font-size: 8px; margin-top: 2px; }
.search-result .result-meta { display: flex; gap: 6px; margin-top: 7px; }
.result-meta i { padding: 3px 5px; font-style: normal; background: var(--bg-brand-subtle); border-radius: 4px; color: var(--brand-900); font-size: 7px; }
.outreach-ui { padding: 14px; }
.outreach-label { display: flex; align-items: center; justify-content: space-between; color: var(--text-tertiary); font-size: 8px; margin-bottom: 9px; }
.message-bubble { padding: 11px; border: 1px solid var(--border-default); border-radius: 8px; background: #FAFBFA; color: #446166; font-size: 8.5px; line-height: 1.55; }
.outreach-actions { display: flex; justify-content: flex-end; gap: 6px; margin-top: 8px; }
.outreach-actions span { padding: 4px 7px; border: 1px solid var(--border-default); border-radius: 5px; background: #fff; font-size: 7.5px; }

.crm-board { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.crm-col { background: rgba(255,255,255,.72); border: 1px solid rgba(18,52,59,.11); border-radius: 10px; padding: 9px; }
.crm-col-head { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 8px; font-weight: 700; }
.lead-card { padding: 9px; border-radius: 7px; border: 1px solid var(--border-default); background: white; margin-bottom: 7px; font-size: 8px; }
.lead-card b { display: block; font-size: 8.5px; }
.lead-card span { color: var(--text-tertiary); }
.lead-card i { float: right; font-style: normal; color: var(--brand-700); font-weight: 700; }
.task-row { display: flex; gap: 9px; align-items: center; padding: 10px; border-bottom: 1px solid var(--border-default); background: white; font-size: 8.5px; }
.task-check { width: 14px; height: 14px; border: 1.5px solid #8BA09E; border-radius: 4px; flex: 0 0 auto; }
.task-row b { display: block; font-size: 9px; }
.task-row span { color: var(--text-tertiary); }

.tool-stack { text-align: center; padding: 10px 0 0; }
.tool-stack p { margin: 0; color: var(--text-secondary); font-size: 12px; }
.tool-formula { margin: 18px auto 8px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; }
.tool-formula span { padding: 8px 11px; border: 1px solid var(--border-default); background: white; border-radius: 8px; font-size: 11px; }
.tool-formula b { color: #A4B2B0; }
.tool-arrow { width: 1px; height: 28px; background: var(--border-strong); margin: 12px auto; position: relative; }
.tool-arrow::after { content: ""; position: absolute; bottom: -1px; left: -3px; width: 6px; height: 6px; border-right: 1px solid var(--text-secondary); border-bottom: 1px solid var(--text-secondary); transform: rotate(45deg); }
.workflow-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: var(--brand-900); color: white; font-size: 12px; font-weight: 650; }
.workflow-pill i { color: #64D1C5; font-style: normal; }

.editorial-quote { padding: 54px 0 8px; text-align: center; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.3rem, 3vw, 2rem); line-height: 1.3; color: #223A3E; }
.editorial-quote small { display: block; margin-top: 5px; font-family: var(--font); color: var(--text-tertiary); font-size: 11px; }

.use-cases { background: #fff; }
.use-cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.use-card { min-height: 360px; border: 1px solid var(--border-default); border-radius: 15px; overflow: hidden; position: relative; display: flex; flex-direction: column; }
.use-card-visual { flex: 1; min-height: 220px; display: grid; place-items: center; overflow: hidden; }
.use-card-visual img { width: 72%; max-width: 250px; filter: drop-shadow(0 12px 16px rgba(18,52,59,.11)); }
.use-card:nth-child(1) .use-card-visual { background: #F8C06A; }
.use-card:nth-child(2) .use-card-visual { background: #83CFC7; }
.use-card:nth-child(3) .use-card-visual { background: #F4A079; }
.use-card-copy { padding: 18px 19px 20px; background: #fff; }
.use-card-copy .tag { color: var(--text-tertiary); font-size: 9px; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
.use-card-copy h3 { margin: 5px 0 7px; font-size: 17px; letter-spacing: -.02em; }
.use-card-copy p { margin: 0; color: var(--text-secondary); font-size: 12px; line-height: 1.55; }
.use-card-copy a { display: inline-flex; margin-top: 12px; color: var(--brand-900); font-size: 11px; font-weight: 650; }

.feature-ticker { overflow: hidden; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); background: var(--bg-canvas); }
.ticker-row { min-height: 48px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 24px; color: var(--text-secondary); font-size: 10px; }
.ticker-row span::before { content: "✓"; margin-right: 6px; color: var(--brand-700); font-weight: 800; }

.pricing-teaser { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 28px 0; border-top: 1px solid var(--border-default); }
.pricing-teaser h3 { margin: 0; font-size: 22px; letter-spacing: -.025em; }
.pricing-teaser p { margin: 4px 0 0; color: var(--text-secondary); font-size: 12px; }

.cta-band { padding-block: 84px; text-align: center; background: #F7F8F6; border-top: 1px solid var(--border-default); }
.cta-band h2 { max-width: 720px; margin: 0 auto; font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1; letter-spacing: -.055em; }
.cta-band p { max-width: 590px; margin: 16px auto 0; color: var(--text-secondary); font-size: 15px; }
.cta-band .hero-actions { margin-top: 20px; }

.site-footer { padding: 56px 0 26px; background: #fff; border-top: 1px solid var(--border-default); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4,1fr); gap: 34px; }
.footer-brand p { max-width: 260px; margin: 14px 0 0; color: var(--text-secondary); font-size: 12px; }
.footer-heading { margin: 0 0 12px; font-size: 11px; font-weight: 700; }
.footer-col a { display: block; padding: 5px 0; color: var(--text-secondary); font-size: 11px; }
.footer-col a:hover { color: var(--brand-900); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding-top: 26px; margin-top: 34px; border-top: 1px solid var(--border-default); color: var(--text-tertiary); font-size: 10px; }
.footer-bottom-links { display: flex; gap: 16px; }

/* Interior pages */
.page-hero { padding: 88px 0 62px; text-align: center; }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { max-width: 850px; margin: 0 auto; font-size: clamp(2.8rem, 6vw, 5rem); line-height: .98; letter-spacing: -.06em; }
.page-hero p { max-width: 680px; margin: 18px auto 0; color: var(--text-secondary); font-size: 17px; }
.page-hero .hero-actions { margin-top: 24px; }

.product-sections { background: #F3F4F2; border-top: 1px solid var(--border-default); }
.product-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 68px; align-items: center; padding-block: 92px; border-bottom: 1px solid #E4E9E6; }
.product-section:nth-child(even) .product-copy { order: 2; }
.product-section:nth-child(even) .product-visual { order: 1; }
.product-copy h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.04; letter-spacing: -.045em; }
.product-copy p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.feature-bullets { display: grid; gap: 10px; margin: 22px 0 0; }
.feature-bullet { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; }
.bullet-check { width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; background: var(--bg-brand-subtle); color: var(--brand-700); font-weight: 800; font-size: 11px; margin-top: 1px; }
.feature-bullet strong { display: block; font-size: 13px; }
.feature-bullet span { color: var(--text-secondary); font-size: 12px; }
.product-visual { min-width: 0; }
.visual-card { border: 1px solid var(--border-default); border-radius: 16px; background: white; min-height: 360px; padding: 24px; overflow: hidden; box-shadow: var(--shadow-xs); }
.visual-card.tint { background: #EAF5F3; }
.visual-card.orange { background: #FFF0D9; }
.visual-art { width: 180px; margin: 0 auto 18px; }

.pricing-wrap { padding: 24px 0 100px; }
.price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--border-default); border-radius: 16px; background: white; min-height: 430px; position: relative; }
.price-card.featured { border-color: #7CBFB7; box-shadow: 0 0 0 1px #7CBFB7; background: #FBFEFD; }
.price-badge { position: absolute; top: 14px; right: 14px; padding: 5px 8px; border-radius: 999px; background: var(--bg-accent-subtle); color: #8A5104; font-size: 9px; font-weight: 700; }
.price-name { margin: 0; font-size: 14px; }
.price-audience { min-height: 38px; margin: 7px 0 16px; color: var(--text-secondary); font-size: 11px; }
.price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 18px; }
.price strong { font-size: 36px; letter-spacing: -.045em; }
.price span { color: var(--text-secondary); font-size: 11px; }
.price-card .btn { width: 100%; }
.price-list { display: grid; gap: 10px; margin: 22px 0 0; padding: 18px 0 0; border-top: 1px solid var(--border-default); list-style: none; }
.price-list li { display: grid; grid-template-columns: 16px 1fr; gap: 8px; color: #466267; font-size: 11px; }
.price-list li::before { content: "✓"; color: var(--brand-700); font-weight: 800; }
.price-note { margin-top: auto; padding-top: 18px; color: var(--text-tertiary); font-size: 10px; }
.compare { margin-top: 54px; border: 1px solid var(--border-default); border-radius: 14px; overflow: auto; background: white; }
.compare table { width: 100%; border-collapse: collapse; min-width: 760px; }
.compare th, .compare td { padding: 14px 16px; border-bottom: 1px solid var(--border-default); text-align: left; font-size: 11px; }
.compare th { background: #F8FAF9; color: var(--text-secondary); font-size: 10px; }
.compare td:not(:first-child), .compare th:not(:first-child) { text-align: center; }
.compare tr:last-child td { border-bottom: 0; }

.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-top: 1px solid var(--border-default); }
.faq details:last-child { border-bottom: 1px solid var(--border-default); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 44px 20px 0; font-weight: 650; font-size: 14px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 17px; font-size: 21px; font-weight: 350; color: var(--text-tertiary); }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: -4px 0 20px; color: var(--text-secondary); font-size: 13px; line-height: 1.65; }

.use-page-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; padding-bottom: 96px; }
.use-page-card { border: 1px solid var(--border-default); border-radius: 16px; overflow: hidden; background: white; }
.use-page-card .visual { min-height: 300px; display: grid; place-items: center; background: #EAF5F3; }
.use-page-card:nth-child(2) .visual { background: #FFF0D9; }
.use-page-card:nth-child(3) .visual { background: #F6EAF8; }
.use-page-card:nth-child(4) .visual { background: #E8F0FA; }
.use-page-card .visual img { width: 230px; }
.use-page-card .copy { padding: 28px; }
.use-page-card .copy h2 { margin: 0; font-size: 24px; letter-spacing: -.03em; }
.use-page-card .copy p { color: var(--text-secondary); font-size: 13px; line-height: 1.65; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; padding-bottom: 100px; }
.contact-aside { padding-top: 18px; }
.contact-aside h2 { margin: 0; font-size: 30px; letter-spacing: -.035em; }
.contact-aside p { color: var(--text-secondary); font-size: 14px; }
.contact-point { padding: 18px 0; border-top: 1px solid var(--border-default); }
.contact-point strong { display: block; font-size: 13px; }
.contact-point span { color: var(--text-secondary); font-size: 12px; }
.form-card { background: #fff; border: 1px solid var(--border-default); border-radius: 16px; padding: 26px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 650; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--border-strong); border-radius: 8px; background: white; color: var(--text-primary); padding: 10px 11px; min-height: 42px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--border-focus); box-shadow: 0 0 0 3px rgba(3,140,140,.12); }
.form-message { margin-top: 14px; padding: 12px; border-radius: 8px; background: var(--bg-brand-subtle); color: var(--brand-900); font-size: 12px; }

.auth-shell { min-height: calc(100vh - 68px); display: grid; place-items: center; padding: 54px 24px 80px; }
.auth-card { width: min(100%, 440px); }
.auth-card .brand { margin-bottom: 28px; }
.auth-card h1 { margin: 0; font-size: 30px; letter-spacing: -.04em; }
.auth-card > p { margin: 8px 0 24px; color: var(--text-secondary); }
.google-btn { width: 100%; min-height: 44px; border: 1px solid var(--border-strong); border-radius: 8px; background: white; cursor: pointer; font-weight: 650; font-size: 13px; }
.divider { display: flex; align-items: center; gap: 10px; color: var(--text-tertiary); font-size: 10px; margin: 18px 0; }
.divider::before, .divider::after { content: ""; height: 1px; background: var(--border-default); flex: 1; }
.auth-foot { margin-top: 16px; color: var(--text-secondary); font-size: 11px; text-align: center; }
.auth-foot a { color: var(--brand-700); font-weight: 650; }

.legal-hero { padding: 70px 0 30px; }
.legal-hero h1 { margin: 0; font-size: clamp(2.5rem, 5vw, 3.8rem); letter-spacing: -.05em; }
.legal-hero p { color: var(--text-secondary); }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); gap: 58px; align-items: start; padding-bottom: 100px; }
.legal-toc { position: sticky; top: 92px; padding-top: 6px; }
.legal-toc strong { display: block; margin-bottom: 9px; font-size: 11px; }
.legal-toc a { display: block; padding: 5px 0; color: var(--text-secondary); font-size: 11px; }
.legal-toc a:hover { color: var(--brand-700); }
.legal-draft { margin-bottom: 26px; padding: 12px 14px; border: 1px solid #F0D4A7; border-radius: 9px; background: #FFF8ED; color: #795018; font-size: 11px; }
.legal-copy { font-size: 15px; line-height: 1.75; }
.legal-copy h2 { margin: 38px 0 12px; font-size: 24px; letter-spacing: -.025em; }
.legal-copy h3 { margin: 26px 0 9px; font-size: 18px; }
.legal-copy p { margin: 0 0 16px; color: #36555A; }
.legal-copy ul { color: #36555A; padding-left: 20px; }
.legal-copy a { color: var(--brand-900); text-decoration: underline; text-underline-offset: 3px; }

.not-found { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 40px 24px; }
.not-found img { width: 180px; margin: 0 auto 18px; }
.not-found h1 { margin: 0; font-size: 46px; letter-spacing: -.05em; }
.not-found p { color: var(--text-secondary); }

[data-reveal] { opacity: 1; transform: none; }
.motion-ready [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 520ms var(--ease), transform 520ms var(--ease); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1023px) {
  .navbar { grid-template-columns: 1fr auto; }
  .desktop-nav, .nav-actions .btn-ghost { display: none; }
  .nav-actions { gap: 4px; }
  .mobile-toggle { display: grid; }
  .hero-stage { padding-inline: 44px; }
  .app-preview { grid-template-columns: 132px minmax(0,1fr); }
  .lead-row { grid-template-columns: minmax(135px,1.5fr) 64px .8fr 70px; }
  .lead-row > :nth-child(4), .lead-row.header > :nth-child(4) { display: none; }
  .feature-stage-grid { grid-template-columns: 42% 58%; }
  .mini-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(2,1fr); }
  .footer-brand { grid-row: span 2; }
  .price-grid { grid-template-columns: repeat(2,1fr); }
  .product-section { gap: 38px; }
}

@media (max-width: 767px) {
  .container, .container-wide { width: min(calc(100% - 32px), var(--container)); }
  .section { padding-block: 68px; }
  .section-sm { padding-block: 52px; }
  .site-header { backdrop-filter: blur(12px); }
  .navbar { min-height: 62px; }
  .brand img { width: 30px; height: 30px; }
  .brand { font-size: 15px; }
  .nav-actions > .btn-primary { min-height: 36px; padding-inline: 11px; font-size: 12px; }
  .mobile-menu { inset-block-start: 62px; }

  .hero { padding: 54px 0 46px; }
  .hero-icons { margin-bottom: 16px; }
  .hero-icon-bubble { width: 35px; height: 35px; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 4.15rem); line-height: .98; }
  .hero-sub { margin-top: 18px; font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 340px; margin-inline: auto; }
  .hero-stage { margin-top: 32px; padding: 0 0 12px; }
  .float-art { display: none; }
  .product-frame { border-radius: 13px; }
  .window-bar { height: 34px; }
  .window-chip { display: none; }
  .app-preview { grid-template-columns: 1fr; min-height: 400px; }
  .app-sidebar { display: none; }
  .app-preview-main { padding: 14px; overflow: hidden; }
  .preview-heading { align-items: center; }
  .preview-toolbar .preview-pill:not(.primary) { display: none; }
  .lead-row { grid-template-columns: minmax(130px,1.6fr) 56px 72px; padding-inline: 9px; }
  .lead-row > :nth-child(3), .lead-row.header > :nth-child(3) { display: none; }
  .search-summary { overflow-x: auto; }
  .proof-list { gap: 8px 12px; }
  .proof-list span + span::before { display: none; }
  .proof-list span { padding: 5px 8px; border: 1px solid var(--border-default); border-radius: 999px; background: #fff; font-size: 10px; }

  .story-block + .story-block { margin-top: 64px; }
  .story-heading { font-size: clamp(2rem, 10vw, 3rem); }
  .feature-stage-grid { grid-template-columns: 1fr; }
  .feature-stage-copy { border-right: 0; border-bottom: 1px solid var(--border-default); padding: 22px; }
  .step-list { margin-top: 8px; grid-template-columns: 1fr 1fr; }
  .feature-stage-ui { padding: 18px; }
  .signal-list { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr 1fr; }
  .mini-card { min-height: 118px; padding: 15px; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic-card.wide { grid-column: auto; }
  .mosaic-body { min-height: 240px; }
  .dossier-window { width: 88%; }
  .brand-art-overlay { width: 98px; left: 8px; }
  .crm-board { gap: 5px; }
  .crm-col { padding: 6px; }
  .lead-card:nth-child(n+3) { display: none; }
  .tool-formula { gap: 6px; }
  .tool-formula span { padding: 6px 8px; font-size: 9px; }

  .use-cases-grid { grid-template-columns: 1fr; }
  .use-card { min-height: auto; }
  .use-card-visual { min-height: 230px; }
  .pricing-teaser { grid-template-columns: 1fr; }
  .pricing-teaser .hero-actions { margin: 0; flex-direction: row; max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 62px 0 45px; }
  .page-hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .page-hero p { font-size: 15px; }
  .product-section, .product-section:nth-child(even) { grid-template-columns: 1fr; gap: 26px; padding-block: 66px; }
  .product-section:nth-child(even) .product-copy, .product-section:nth-child(even) .product-visual { order: initial; }
  .price-grid { grid-template-columns: 1fr; }
  .use-page-grid { grid-template-columns: 1fr; }
  .use-page-card .visual { min-height: 240px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; padding: 13px 14px; border: 1px solid var(--border-default); border-radius: 10px; background: white; }
  .legal-toc a { display: inline-block; margin-right: 12px; }
}

@media (max-width: 420px) {
  .nav-actions > .btn-primary { display: none; }
  .hero-highlight { white-space: normal; }
  .mini-grid { grid-template-columns: 1fr; }
  .step-list { grid-template-columns: 1fr; }
  .lead-row { grid-template-columns: minmax(120px,1fr) 54px 70px; }
  .mosaic-head { padding: 18px; }
  .mosaic-body { padding: 14px; }
  .dossier-window { width: 94%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
   Marketing interaction refresh — Notion-inspired rhythm,
   ProspectMap brand language. 2026-08
   ========================================================= */

:root {
  --marketing-max: 1060px;
}

body {
  font-size: 15px;
  letter-spacing: -0.006em;
}

/* Tighter, quieter navigation with an orange conversion action. */
.site-header {
  background: color-mix(in srgb, var(--bg-canvas) 96%, transparent);
  border-bottom-color: color-mix(in srgb, var(--border-default) 62%, transparent);
  box-shadow: 0 1px 0 rgba(18, 52, 59, .02);
}
.navbar { min-height: 70px; gap: 20px; }
.brand { font-size: 16px; gap: 9px; line-height: 1; font-weight: 700; letter-spacing: -.035em; }
.brand img { width: 46px; height: 46px; border-radius: 0; object-fit: contain; }
.brand-name { display: inline-block; color: var(--text-primary); white-space: nowrap; }
.nav-link, .nav-popover > summary { font-size: 12.5px; padding: 8px 9px; }
.nav-actions { gap: 6px; }
.nav-actions .btn { min-height: 36px; }


/* Brand lockup: icon + product name. */
.brand-name { font-weight: 700; letter-spacing: -.035em; line-height: 1; }
.site-header .brand-name { font-size: 16px; }
.site-footer .brand-name { font-size: 16px; }
.auth-card .brand-name { font-size: 16px; }

/* Public CTAs: ProspectMap orange is the conversion color. */
.btn-primary,
.btn-accent {
  background: var(--orange-500);
  border-color: #DB7804;
  color: #111111;
  box-shadow: 0 1px 0 rgba(17,17,17,.08), 0 5px 14px rgba(242,135,5,.16);
}
.btn-primary:hover,
.btn-accent:hover {
  background: var(--orange-600);
  border-color: #D76A03;
  color: #111111;
  box-shadow: 0 7px 20px rgba(242,116,5,.22);
  transform: translateY(-1px);
}
.btn-primary:active,
.btn-accent:active {
  transform: translateY(0) scale(.985);
  box-shadow: 0 2px 7px rgba(242,116,5,.18);
}
.btn {
  transition: background 150ms var(--ease), border-color 150ms var(--ease), box-shadow 180ms var(--ease), color 150ms var(--ease), transform 180ms var(--ease);
}
.btn svg { transition: transform 180ms var(--ease); }
.btn:hover svg { transform: translateX(2px); }

/* Typography and composition tuned closer to the supplied Notion reference. */
.section { padding-block: 92px; }
.section-sm { padding-block: 66px; }
.section-title {
  max-width: 720px;
  font-size: clamp(2rem, 3.45vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 720;
}
.section-copy { font-size: 16px; line-height: 1.65; }
.eyebrow { font-size: 11px; letter-spacing: .085em; }

.hero {
  position: relative;
  padding: 58px 0 52px;
  background:
    radial-gradient(circle at 12% 34%, rgba(8,166,150,.055) 0 2px, transparent 2.5px),
    radial-gradient(circle at 86% 18%, rgba(242,135,5,.075) 0 2px, transparent 2.5px),
    var(--bg-canvas);
  background-size: 58px 58px, 73px 73px, auto;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .75;
}
.hero::before {
  width: 9px; height: 9px; left: 8%; top: 34%;
  background: var(--orange-500);
  box-shadow: 22px -14px 0 -2px #F7C776, 15px 20px 0 -3px var(--brand-500);
}
.hero::after {
  width: 8px; height: 8px; right: 7%; top: 24%;
  background: var(--brand-500);
  box-shadow: -18px 18px 0 -2px #9AD9D2, 20px 23px 0 -3px var(--orange-500);
}
.hero-top { max-width: 850px; }
.hero-icons { margin-bottom: 15px; }
.hero-icon-bubble {
  width: 38px; height: 38px;
  box-shadow: 0 0 0 1px var(--border-default), 0 6px 14px rgba(18,52,59,.05);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.hero-icon-bubble:hover {
  transform: translateY(-4px) rotate(-4deg) scale(1.07);
  box-shadow: 0 0 0 1px var(--border-default), 0 10px 20px rgba(18,52,59,.10);
}
.hero h1 {
  max-width: 790px;
  font-size: clamp(3.2rem, 5.35vw, 4.75rem);
  line-height: .985;
  letter-spacing: -.061em;
  font-weight: 735;
  text-wrap: balance;
}
.hero-highlight::before {
  left: -5px; right: -5px; bottom: .055em; height: .47em;
  background: #FFD69B;
  transform-origin: left center;
}
.hero-sub { max-width: 665px; margin-top: 18px; font-size: 16px; line-height: 1.58; }
.hero-actions { margin-top: 20px; }
.hero-microcopy { margin-top: 12px; font-size: 11px; }
.hero-stage {
  max-width: 980px;
  margin-top: 36px;
  perspective: 1200px;
}
.product-frame {
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, var(--tilt-lift, 0px), 0);
  transition: transform 420ms var(--ease), box-shadow 260ms var(--ease);
  will-change: transform;
}
.product-frame.is-tilting {
  transition: transform 70ms linear, box-shadow 180ms var(--ease);
  box-shadow: 0 34px 78px rgba(18,52,59,.17), 0 4px 8px rgba(18,52,59,.05);
}
.float-art {
  --px: 0px;
  --py: 0px;
  --rotation: 0deg;
  transform: rotate(var(--rotation));
  translate: var(--px) var(--py);
  animation-name: drift-v2;
  animation-duration: 6.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: translate;
}
.float-art.a { --rotation: -9deg; }
.float-art.b { --rotation: 7deg; }
.float-art.c { --rotation: -5deg; }
.float-art.d { --rotation: 8deg; }
@keyframes drift-v2 {
  0%, 100% { translate: var(--px) var(--py); }
  50% { translate: var(--px) calc(var(--py) - 10px); }
}

.proof-strip { padding: 15px 0 17px; }
.proof-label { font-size: 10px; }
.proof-list { font-size: 11px; }

.story { background: #F5F5F3; }
.story > .container { width: min(calc(100% - 48px), var(--marketing-max)); }
.story-block + .story-block { margin-top: 76px; }
.story-heading {
  max-width: 700px;
  font-size: clamp(2.25rem, 3.75vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 720;
  text-wrap: balance;
}
.story-kicker { font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.feature-stage,
.mosaic-card,
.use-card,
.visual-card,
.price-card {
  transition: transform 260ms var(--ease), border-color 220ms var(--ease), box-shadow 260ms var(--ease);
}
.feature-stage:hover,
.mosaic-card:hover,
.use-card:hover,
.visual-card:hover,
.price-card:hover {
  transform: translateY(-3px);
  border-color: #CFDCD9;
  box-shadow: 0 14px 34px rgba(18,52,59,.075);
}
.feature-stage-grid { min-height: 410px; }
.feature-stage-copy { padding: 25px 27px; }
.feature-stage-copy h3 { font-size: 21px; }
.feature-stage-copy p { font-size: 12.5px; line-height: 1.55; }
.step-list { gap: 4px; }
.step-item {
  width: 100%;
  appearance: none;
  border: 1px solid transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}
.step-item:hover { background: #F0F5F3; transform: translateX(3px); }
.step-item.active {
  background: #EAF6F4;
  border-color: #D4ECE8;
}
.step-item.active .step-num { background: var(--orange-500); border-color: #DB7804; color: var(--text-primary); }
.step-item:focus-visible { outline-offset: 1px; }
.opportunity-panel { transition: opacity 180ms var(--ease), transform 180ms var(--ease); }
.opportunity-panel.is-switching { opacity: .28; transform: translateY(5px) scale(.995); }

.mosaic { gap: 12px; }
.mosaic-card { border-radius: 13px; }
.mosaic-card:hover .mosaic-body { filter: saturate(1.025); }
.mosaic-head { min-height: 92px; padding: 20px; }
.mosaic-head h3 { font-size: 16px; letter-spacing: -.018em; }
.mosaic-head p { font-size: 10.5px; line-height: 1.45; }
.mosaic-body { min-height: 260px; }

.tool-formula span {
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}
.tool-formula span:hover {
  transform: translateY(-3px) rotate(-1deg);
  border-color: #BBD4D0;
  background: #F9FCFB;
}
.workflow-pill {
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.workflow-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(2,81,89,.17); }
.editorial-quote { padding-top: 48px; }

.use-cases > .container { width: min(calc(100% - 48px), var(--marketing-max)); }
.use-cases-grid { gap: 12px; }
.use-card { border-radius: 13px; }
.use-card-visual img { transition: transform 340ms var(--ease), filter 340ms var(--ease); }
.use-card:hover .use-card-visual img { transform: translateY(-6px) rotate(-2deg) scale(1.045); filter: drop-shadow(0 18px 19px rgba(18,52,59,.16)); }
.use-card:nth-child(2):hover .use-card-visual img { transform: translateY(-6px) rotate(2deg) scale(1.045); }
.use-card-copy h3 { font-size: 16.5px; line-height: 1.25; }
.use-card-copy a { transition: transform 180ms var(--ease), color 180ms var(--ease); }
.use-card-copy a:hover { transform: translateX(3px); color: var(--brand-700); }

/* Moving capability ribbon: restrained motion, more personality. */
.feature-ticker { background: #FBFBF8; }
.ticker-row {
  width: max-content;
  max-width: none;
  min-height: 46px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 28px;
  padding-inline: 18px;
  animation: ticker-drift 42s linear infinite;
  will-change: transform;
}
.feature-ticker:hover .ticker-row { animation-play-state: paused; }
@keyframes ticker-drift {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 14px)); }
}

.pricing-teaser { padding: 26px 0; }
.pricing-teaser h3 { font-size: 20px; }

/* FAQ feels clickable rather than static documentation. */
.faq details {
  transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}
.faq details:hover { transform: translateX(2px); border-color: #CDDBD8; }
.faq summary { cursor: pointer; }
.faq summary::after { transition: transform 200ms var(--ease), background 180ms var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); background: var(--orange-500); }

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: 76px;
  background: #F6F6F3;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  width: 110px; height: 110px;
  border: 2px dashed rgba(2,81,89,.14);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band::before { left: 7%; top: 23%; animation: slow-spin 24s linear infinite; }
.cta-band::after { right: 8%; bottom: -42px; border-color: rgba(242,135,5,.24); animation: slow-spin 30s linear reverse infinite; }
@keyframes slow-spin { to { transform: rotate(360deg); } }
.cta-band h2 { font-size: clamp(2.25rem, 4vw, 3.5rem); }

/* Interior page typography follows the same more editorial scale. */
.page-hero { padding: 74px 0 54px; }
.page-hero h1 { font-size: clamp(2.75rem, 4.8vw, 4.25rem); line-height: .99; }
.page-hero p { font-size: 16px; line-height: 1.6; }
.product-copy h2 { font-size: clamp(2rem, 3.3vw, 3rem); }
.product-section { padding-block: 82px; }

/* Page-load choreography. JS adds .is-loaded after first paint. */
.motion-ready:not(.is-loaded) .site-header { opacity: 0; transform: translateY(-12px); }
.motion-ready:not(.is-loaded) .hero-icons,
.motion-ready:not(.is-loaded) .hero h1,
.motion-ready:not(.is-loaded) .hero-sub,
.motion-ready:not(.is-loaded) .hero-actions,
.motion-ready:not(.is-loaded) .hero-microcopy,
.motion-ready:not(.is-loaded) .hero-stage,
.motion-ready:not(.is-loaded) .page-hero > .container > * {
  opacity: 0;
  transform: translateY(22px);
}
.motion-ready:not(.is-loaded) .hero-stage { transform: translateY(28px) scale(.985); }
.motion-ready:not(.is-loaded) .hero-highlight::before { transform: rotate(-1.2deg) scaleX(0); }
.motion-ready .site-header { transition: opacity 460ms var(--ease), transform 460ms var(--ease); }
.motion-ready.is-loaded .hero-icons { transition: opacity 480ms 80ms var(--ease), transform 520ms 80ms var(--ease); }
.motion-ready.is-loaded .hero h1 { transition: opacity 560ms 150ms var(--ease), transform 620ms 150ms var(--ease); }
.motion-ready.is-loaded .hero-highlight::before { transition: transform 620ms 420ms var(--ease); transform: rotate(-1.2deg) scaleX(1); }
.motion-ready.is-loaded .hero-sub { transition: opacity 520ms 260ms var(--ease), transform 560ms 260ms var(--ease); }
.motion-ready.is-loaded .hero-actions { transition: opacity 500ms 340ms var(--ease), transform 540ms 340ms var(--ease); }
.motion-ready.is-loaded .hero-microcopy { transition: opacity 500ms 410ms var(--ease), transform 540ms 410ms var(--ease); }
.motion-ready.is-loaded .hero-stage { transition: opacity 700ms 300ms var(--ease), transform 760ms 300ms var(--ease); }
.motion-ready.is-loaded .hero-icons,
.motion-ready.is-loaded .hero h1,
.motion-ready.is-loaded .hero-sub,
.motion-ready.is-loaded .hero-actions,
.motion-ready.is-loaded .hero-microcopy,
.motion-ready.is-loaded .hero-stage,
.motion-ready.is-loaded .page-hero > .container > * { opacity: 1; transform: none; }
.motion-ready.is-loaded .page-hero > .container > * { transition: opacity 560ms var(--ease), transform 620ms var(--ease); }

/* Scroll reveal system with variants and stagger. */
.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(.993);
  filter: blur(2px);
  transition:
    opacity 600ms var(--ease) var(--reveal-delay, 0ms),
    transform 680ms var(--ease) var(--reveal-delay, 0ms),
    filter 520ms var(--ease) var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal="left"] { transform: translateX(-28px) scale(.993); }
.motion-ready [data-reveal="right"] { transform: translateX(28px) scale(.993); }
.motion-ready [data-reveal="scale"] { transform: scale(.965); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; filter: none; }

/* Responsive refinement. */
@media (max-width: 1023px) {
  .hero h1 { font-size: clamp(3rem, 7.4vw, 4.35rem); }
  .story > .container,
  .use-cases > .container { width: min(calc(100% - 40px), var(--marketing-max)); }
  .story-heading { font-size: clamp(2.2rem, 5vw, 3rem); }
}

@media (max-width: 767px) {
  .navbar { min-height: 60px; }
  .mobile-menu { inset: 60px 0 0; }
  .hero { padding: 45px 0 42px; }
  .hero::before, .hero::after { display: none; }
  .hero h1 { font-size: clamp(1.95rem, 8.5vw, 2.75rem); line-height: 1; }
  .hero-highlight { white-space: nowrap; }
  .hero-sub { font-size: 15px; line-height: 1.58; }
  .hero-stage { margin-top: 30px; }
  .section { padding-block: 68px; }
  .story > .container,
  .use-cases > .container { width: min(calc(100% - 32px), var(--marketing-max)); }
  .story-block + .story-block { margin-top: 58px; }
  .story-heading { font-size: clamp(2rem, 9.5vw, 2.75rem); }
  .feature-stage:hover,
  .mosaic-card:hover,
  .use-card:hover,
  .visual-card:hover,
  .price-card:hover { transform: none; box-shadow: none; }
  .step-item:hover { transform: none; }
  .ticker-row { animation-duration: 34s; }
  .cta-band::before, .cta-band::after { opacity: .45; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: clamp(1.82rem, 8.3vw, 2.35rem); }
  .hero-icon-bubble { width: 34px; height: 34px; }
  .section-title { font-size: clamp(2rem, 10vw, 2.55rem); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-row,
  .float-art,
  .cta-band::before,
  .cta-band::after { animation: none !important; }
  .product-frame { transform: none !important; }
  .motion-ready:not(.is-loaded) .site-header,
  .motion-ready:not(.is-loaded) .hero-icons,
  .motion-ready:not(.is-loaded) .hero h1,
  .motion-ready:not(.is-loaded) .hero-sub,
  .motion-ready:not(.is-loaded) .hero-actions,
  .motion-ready:not(.is-loaded) .hero-microcopy,
  .motion-ready:not(.is-loaded) .hero-stage,
  .motion-ready:not(.is-loaded) .page-hero > .container > *,
  .motion-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Prevent transformed reveal/ticker elements from ever creating page-level horizontal scroll. */
html, body { overflow-x: clip; }


/* ProspectMap V4: Poppins + standalone mark + public smooth scrolling */
.brand > span { display: none; }
.brand { line-height: 0; }
.brand img { width: 46px; height: 46px; border-radius: 0; object-fit: contain; }
.site-footer .brand img { width: 50px; height: 50px; }
@media (max-width: 767px) {
  .navbar { min-height: 68px; }
  .brand img { width: 43px; height: 43px; }
  .site-footer .brand img { width: 48px; height: 48px; }
  .mobile-menu { inset-block-start: 68px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: clamp(1.78rem, 8.15vw, 2.3rem); }
}

.btn-primary:focus-visible,
.btn-accent:focus-visible {
  outline: 3px solid rgba(242, 135, 5, .30);
  outline-offset: 3px;
}
