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

:root {
  --ink: #121417;
  --ink-soft: #383d43;
  --muted: #68717d;
  --paper: #ffffff;
  --paper-warm: #f8f7f3;
  --surface: #ffffff;
  --line: #d9dde2;
  --line-strong: #aeb6c0;
  --blue: #8db9ec;
  --blue-dark: #245d95;
  --blue-soft: #eaf4ff;
  --green: #35785e;
  --green-dark: #285d49;
  --green-soft: #eaf4ef;
  --coral: #a96051;
  --shadow-sm: 0 5px 16px rgba(18, 20, 23, 0.08);
  --shadow-md: 0 18px 50px rgba(18, 20, 23, 0.12);
  --content: 1180px;
  --radius: 6px;
  --display-heading: clamp(2.1rem, 2.35vw, 2.55rem);
  --display-line-height: 1.1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(var(--content), calc(100% - 40px));
  min-width: 0;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(18, 20, 23, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark-image {
  width: 58px;
  height: 44px;
  flex: 0 0 58px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--blue-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0 19px;
  background: var(--blue);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(18, 20, 23, 0.28);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #a5caf1;
  box-shadow: 0 5px 0 rgba(18, 20, 23, 0.22);
}

.button:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 rgba(18, 20, 23, 0.28);
}

.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

.button-dark:hover {
  background: #2f3338;
  box-shadow: none;
}

.button-ghost {
  border-color: var(--line-strong);
  background: var(--surface);
  box-shadow: none;
}

.button-small {
  min-height: 38px;
  padding-inline: 15px;
  font-size: 0.84rem;
}

.button-arrow {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.page-intro h1,
.split-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4.8vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.55rem);
}

.section-heading p,
.page-intro p,
.split-copy > p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.home-hero {
  position: relative;
  min-height: 580px;
  padding: 80px 0 128px;
  background: var(--ink);
  color: #fff;
}

.home-hero-inner {
  width: min(1600px, calc(100% - 80px));
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.home-hero .eyebrow,
.trap-heading .eyebrow {
  color: #cbd2d8;
  font-size: 0.86rem;
}

.trap-heading .eyebrow {
  color: var(--muted);
}

.home-hero h1 {
  margin-bottom: 30px;
  font-size: var(--display-heading);
  line-height: var(--display-line-height);
  letter-spacing: 0;
}

.home-hero h1 span {
  display: block;
  white-space: nowrap;
}

.home-hero p {
  max-width: 1120px;
  margin: 0 auto 28px;
  color: #d6d9dc;
  font-size: clamp(1rem, 1.65vw, 1.35rem);
}

.home-hero p span {
  display: block;
}

.hero-benefits-wrap {
  position: relative;
  z-index: 3;
  margin-top: -62px;
}

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

.benefit-card {
  min-height: 150px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.benefit-card h2 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.stakeholder-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.stakeholder-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trap-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 66px;
  align-items: start;
}

.trap-heading {
  margin-bottom: 36px;
}

.trap-heading h2 {
  max-width: 1120px;
  margin-bottom: 0;
  font-size: var(--display-heading);
  line-height: var(--display-line-height);
}

.trap-lead p {
  margin-bottom: 28px;
  border-left: 2px solid #57b96d;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  line-height: 1.42;
}

.trap-points {
  display: grid;
  gap: 12px;
}

.trap-point {
  padding: 24px 26px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.trap-point h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.trap-point p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.46;
}

.product-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.product-screenshot-frame {
  line-height: 0;
}

.product-screenshot {
  width: 100%;
  height: auto;
}

.opportunity-screenshot-frame {
  line-height: 0;
}

.opportunity-screenshot {
  width: 100%;
  height: auto;
}

.browser-bar {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #f0f2f4;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b9c0c8;
}

.dashboard {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  min-height: 370px;
}

.dashboard-nav {
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  background: #f7f8f8;
}

.dashboard-brand {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

.dashboard-link {
  display: block;
  margin-bottom: 5px;
  border-radius: 4px;
  padding: 7px 9px;
  color: var(--muted);
  font-size: 0.72rem;
}

.dashboard-link.active {
  background: #17b653;
  color: #fff;
}

.dashboard-main {
  min-width: 0;
  padding: 22px;
}

.dashboard-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-head h3 {
  margin-bottom: 2px;
  font-size: 1.05rem;
}

.dashboard-head p {
  color: var(--muted);
  font-size: 0.72rem;
}

.mock-button {
  border-radius: 4px;
  padding: 7px 10px;
  background: var(--ink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
}

.mock-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.mock-filter {
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
}

.mock-table {
  display: grid;
  gap: 6px;
}

.mock-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.75fr 0.7fr 0.55fr;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  padding: 0 9px;
  border: 1px solid #e6e8eb;
  border-radius: 3px;
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.mock-status {
  justify-self: start;
  border-radius: 999px;
  padding: 3px 7px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.screenshot-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: left;
}

.audience-grid,
.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.value-heading {
  margin-bottom: 42px;
}

.value-heading .eyebrow {
  margin-bottom: 10px;
  font-size: 0.86rem;
  text-align: right;
}

.value-heading h2 {
  max-width: 920px;
  margin: 0 0 24px auto;
  font-size: var(--display-heading);
  line-height: var(--display-line-height);
  text-align: right;
}

.value-heading p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.solution-heading {
  margin-bottom: 34px;
}

.solution-heading .eyebrow {
  margin-bottom: 10px;
  font-size: 0.86rem;
  text-align: right;
}

.solution-heading h2 {
  max-width: none;
  margin: 0 0 24px auto;
  font-size: var(--display-heading);
  line-height: var(--display-line-height);
  text-align: right;
}

.solution-heading h2 span {
  display: block;
  white-space: nowrap;
}

.solution-heading p {
  max-width: none;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  white-space: nowrap;
}

.audience-card {
  min-height: 330px;
  padding: 28px 30px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--surface);
}

.stakeholder-card {
  min-height: 220px;
  padding: 28px 30px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--surface);
}

.audience-card .eyebrow {
  color: var(--muted);
  font-size: 0.86rem;
}

.audience-card h3 {
  margin-bottom: 16px;
  font-size: 1.32rem;
  line-height: 1.15;
}

.audience-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.stakeholder-card h3 {
  margin-bottom: 14px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.stakeholder-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.35;
}

.supporting-note {
  margin-top: 26px;
  border-left: 2px solid #57b96d;
  padding: 5px 0 5px 22px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.work-heading {
  max-width: 1120px;
  margin-bottom: 42px;
}

.work-heading .eyebrow {
  font-size: 0.86rem;
}

.work-heading h2 {
  margin-bottom: 18px;
  font-size: var(--display-heading);
  line-height: var(--display-line-height);
}

.work-heading h2 span {
  display: block;
}

.work-heading p {
  max-width: 1120px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.steps {
  display: grid;
  gap: 0;
  counter-reset: steps;
}

.step {
  position: relative;
  min-height: 122px;
  padding: 4px 0 26px 66px;
  border-bottom: 1px solid var(--line-strong);
  counter-increment: steps;
}

.step:last-child {
  border-bottom: 0;
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: -3px;
  left: 0;
  color: #13b75a;
  font-size: 2rem;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.step p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.35;
}

.opportunity-mock {
  min-height: 720px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  border: 1px solid var(--ink-soft);
  background: #fff;
  box-shadow: none;
}

.opportunity-rail {
  padding: 16px 10px;
  border-right: 1px solid var(--line);
  background: #f6f7f8;
}

.rail-dot {
  width: 24px;
  height: 24px;
  margin: 0 auto 13px;
  border-radius: 5px;
  background: #d8dde2;
}

.rail-dot.active {
  background: #17b653;
}

.opportunity-body {
  min-width: 0;
  padding: 34px;
}

.opportunity-body h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.opportunity-body > p {
  color: var(--muted);
  font-size: 0.95rem;
}

.generate-panel {
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 22px;
  background: #fbfbfc;
}

.generate-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.generate-panel span {
  color: var(--muted);
  font-size: 0.9rem;
}

.opportunity-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 15px 0 20px;
}

.opportunity-metric {
  text-align: center;
}

.opportunity-metric strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.75rem;
}

.opportunity-metric span {
  color: var(--muted);
  font-size: 0.68rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--muted);
  font-size: 0.64rem;
}

.tag.coral {
  border-color: #e7b9ae;
  background: #fff2ef;
  color: var(--coral);
}

.opportunity-card {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 13px;
}

.opportunity-card h4 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.opportunity-card p {
  color: var(--muted);
  font-size: 0.85rem;
}

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

.stakeholder-card {
  min-height: 220px;
}

.final-cta {
  padding: 70px 0 88px;
  border-top: 0;
  text-align: center;
}

.final-cta h2 {
  max-width: 1120px;
  margin: 0 auto 18px;
  color: var(--ink);
  font-size: var(--display-heading);
  line-height: var(--display-line-height);
}

.final-cta .eyebrow {
  font-size: 0.86rem;
}

.final-cta p {
  max-width: 820px;
  margin: 0 auto 34px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.35;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line-strong);
  background: var(--paper-warm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 60px;
  padding: 48px 0;
}

.footer-grid h2,
.footer-grid h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a,
.footer-grid small {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer-grid small {
  display: block;
  margin-top: 28px;
  color: #8b939c;
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

.page-main {
  min-height: calc(100vh - 76px);
}

.contact-main,
.demo-main {
  min-height: 0;
}

.page-intro {
  max-width: 760px;
  padding: 76px 0 48px;
}

.split-page {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
  padding: 76px 0 92px;
}

.contact-page {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  padding: 66px 0 56px;
}

.demo-page {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  padding: 66px 0 72px;
}

.split-copy {
  position: sticky;
  top: 130px;
}

.contact-page .split-copy {
  position: static;
}

.split-copy .eyebrow {
  margin-bottom: 18px;
}

.demo-page .eyebrow,
.contact-page .eyebrow {
  font-size: 0.86rem;
}

.demo-page h1,
.contact-page h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: var(--display-heading);
  line-height: var(--display-line-height);
}

.demo-page .split-copy > p,
.contact-page .split-copy > p {
  max-width: 580px;
  font-size: 1.08rem;
}

.contact-page .split-copy a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calendar-placeholder,
.contact-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact-page .contact-card {
  border-radius: 0;
  box-shadow: none;
}

.calendar-placeholder {
  min-height: 610px;
}

.demo-page .calendar-placeholder {
  min-height: auto;
  border-radius: 0;
  box-shadow: none;
}

.calendar-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.calendar-host {
  color: var(--muted);
  font-size: 0.9rem;
}

.calendar-top h2 {
  margin-bottom: 8px;
  font-size: 1.6rem;
  line-height: 1.15;
}

.calendar-top p,
.calendar-zone {
  color: var(--muted);
  font-size: 0.9rem;
}

.calendar-body {
  padding: 30px;
}

.calendar-duration {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.calendar-title {
  margin: 28px 0 18px;
  text-align: center;
  font-size: 1.15rem;
}

.calendar-month {
  margin-bottom: 12px;
  font-weight: 900;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.calendar-day,
.calendar-date {
  min-height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.calendar-day {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.calendar-date.available {
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 900;
}

.calendar-zone {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.contact-card {
  padding: 28px;
}

.contact-page .contact-card {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 3px var(--blue-soft);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-card .button {
  margin-top: 18px;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.calendly-widget {
  min-height: 600px;
}

.calendar-fallback {
  min-height: 500px;
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--ink-soft);
  text-align: center;
}

.calendar-fallback p {
  max-width: 380px;
  margin: 0;
}

.legal-page {
  max-width: 920px;
  padding: 66px 0 82px;
}

.legal-page .eyebrow {
  font-size: 0.86rem;
}

.legal-page h1 {
  margin-bottom: 10px;
  font-size: var(--display-heading);
  line-height: var(--display-line-height);
  letter-spacing: 0;
}

.legal-page .legal-intro {
  max-width: 820px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.55;
}

.legal-page h2 {
  margin-top: 0;
  margin-bottom: 10px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.legal-page h2 + p {
  margin-bottom: 24px;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.legal-page a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-intro {
  max-width: var(--content);
  padding: 66px 0 34px;
}

.pricing-intro .eyebrow {
  font-size: 0.86rem;
}

.pricing-intro h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: var(--display-heading);
  line-height: var(--display-line-height);
}

.pricing-intro h1 span {
  display: block;
}

.pricing-intro p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.billing-toggle {
  width: max-content;
  display: flex;
  gap: 6px;
  margin: 18px auto 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 6px;
  background: #fff;
}

.billing-option {
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  padding: 0 17px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 900;
  cursor: pointer;
}

.billing-option[aria-pressed="true"] {
  background: var(--green);
  color: #fff;
}

.billing-option small {
  margin-left: 6px;
  border-radius: 999px;
  padding: 3px 6px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.64rem;
}

.pricing-cards {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 auto 72px;
}

.pricing-card {
  min-height: 360px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 30px;
  background: #fff;
}

.pricing-card .eyebrow {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.86rem;
}

.pricing-card h2 {
  margin-bottom: 6px;
  font-size: 1.32rem;
  line-height: 1.15;
}

.price {
  margin: 12px 0 6px;
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--ink-soft);
  font-size: 1.22rem;
  font-weight: 600;
}

.price-note {
  min-height: 42px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.pricing-divider {
  height: 1px;
  margin: 20px 0;
  background: var(--line);
}

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

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px var(--green-soft);
}

.credit-fact {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.credit-note {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.credit-fact::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.calculator-heading {
  margin-bottom: 34px;
  text-align: center;
}

.calculator-heading h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: var(--display-heading);
  line-height: var(--display-line-height);
}

.calculator-heading p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-radius: 0;
  padding: 34px;
  background: var(--green);
  color: #fff;
}

.calculator h3 {
  margin-bottom: 20px;
  font-size: 1rem;
}

.calculator-group + .calculator-group {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 25px;
}

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

.calculator-group-head strong {
  font-size: 0.95rem;
}

.calculator-badge {
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.63rem;
  font-weight: 900;
}

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

.calculator-field {
  display: grid;
  gap: 6px;
}

.calculator-field label {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stepper,
.money-input,
.percent-input {
  min-height: 42px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.stepper button {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

.stepper input,
.money-input input,
.percent-input input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 900;
  text-align: center;
  outline: none;
}

.money-input,
.percent-input {
  grid-template-columns: 28px minmax(0, 1fr);
}

.money-input span,
.percent-input span {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.percent-input {
  grid-template-columns: minmax(0, 1fr) 28px;
}

.calculator-explainer {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.76rem;
}

.calculation-results {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 6px 0;
}

.result-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.result-row strong {
  text-align: right;
}

.result-row.positive strong {
  color: #d6ffdf;
}

.profit-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  border-radius: 4px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.14);
}

.profit-result span {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profit-result strong {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  text-align: right;
}

.profit-note {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
}

.calculator-footnote {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.pricing-cta {
  padding: 34px 0 82px;
  text-align: center;
}

.pricing-cta p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    inset: 76px 0 auto;
    z-index: 49;
    display: grid;
    gap: 0;
    border-bottom: 1px solid var(--line-strong);
    padding: 14px 20px 20px;
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .mobile-nav.open {
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 13px 5px;
    border-bottom: 1px solid var(--line);
    font-weight: 900;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .trap-grid,
  .workflow-grid,
  .split-page,
  .calculator {
    grid-template-columns: 1fr;
  }

  .work-heading h2 span {
    display: inline;
  }

  .work-heading h2 span + span::before {
    content: " ";
  }

  .home-hero-inner {
    width: min(var(--content), calc(100% - 40px));
  }

  .home-hero h1 span {
    white-space: normal;
  }

  .home-hero p span {
    display: inline;
  }

  .home-hero p span + span::before {
    content: " ";
  }

  .split-copy {
    position: static;
  }

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

  .value-heading .eyebrow,
  .value-heading h2 {
    text-align: left;
  }

  .value-heading h2 {
    margin-left: 0;
  }

  .solution-heading .eyebrow,
  .solution-heading h2 {
    text-align: left;
  }

  .solution-heading h2 {
    margin-left: 0;
  }

  .solution-heading h2 span {
    display: inline;
    white-space: normal;
  }

  .solution-heading h2 span + span::before {
    content: " ";
  }

  .solution-heading p {
    white-space: normal;
  }

  .stakeholder-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-cards {
    margin-bottom: 78px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--content), calc(100% - 28px));
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand {
    font-size: 1.15rem;
  }

  .brand-mark-image {
    width: 50px;
    height: 38px;
    flex-basis: 50px;
  }

  .nav-actions .button {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 0.8rem;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .mobile-nav {
    inset-block-start: 68px;
  }

  .section {
    padding: 58px 0;
  }

  .section-tight {
    padding: 46px 0;
  }

  .home-hero {
    min-height: 530px;
    padding: 68px 0 118px;
  }

  .home-hero h1 {
    font-size: var(--display-heading);
  }

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

  .hero-benefits-wrap {
    margin-top: -72px;
  }

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

  .trap-grid {
    gap: 34px;
  }

  .dashboard {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 330px;
  }

  .dashboard-nav {
    padding-inline: 7px;
  }

  .dashboard-link {
    padding-inline: 5px;
    font-size: 0.58rem;
  }

  .dashboard-main {
    padding: 13px;
  }

  .mock-filters {
    grid-template-columns: 1fr 1fr;
  }

  .mock-row {
    grid-template-columns: 1fr 0.8fr 0.6fr;
  }

  .mock-row span:nth-child(4),
  .mock-row span:nth-child(5) {
    display: none;
  }

  .product-screenshot-frame,
  .opportunity-screenshot-frame {
    overflow-x: auto;
  }

  .product-screenshot {
    width: 980px;
    max-width: none;
  }

  .opportunity-screenshot {
    width: 760px;
    max-width: none;
  }

  .opportunity-mock {
    min-height: 440px;
  }

  .stakeholder-grid,
  .pricing-cards,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 34px;
  }

  .field.full {
    grid-column: auto;
  }

  .pricing-intro {
    padding-top: 58px;
  }

  .pricing-intro h1 {
    font-size: clamp(2rem, 8vw, 2.35rem);
  }

  .pricing-intro h1 span {
    display: inline;
  }

  .pricing-intro h1 span + span::before {
    content: " ";
  }

  .billing-toggle {
    width: 100%;
    overflow: hidden;
  }

  .billing-option {
    flex: 1;
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .billing-option small {
    margin-left: 3px;
    padding: 2px 5px;
    font-size: 0.56rem;
  }

  .pricing-cards {
    gap: 16px;
    margin-bottom: 66px;
  }

  .pricing-card {
    min-height: auto;
    min-width: 0;
  }

  .pricing-card p,
  .pricing-card li,
  .credit-fact strong {
    overflow-wrap: break-word;
  }

  .calculator-heading h2 {
    font-size: clamp(1.9rem, 7.2vw, 2.35rem);
  }

  .calculator {
    gap: 30px;
    padding: 22px;
  }

  .calculator-fields {
    grid-template-columns: 1fr;
  }

  .profit-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .profit-result strong {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .nav-shell {
    gap: 7px;
  }

  .brand {
    gap: 6px;
    font-size: 1rem;
  }

  .brand-mark-image {
    width: 44px;
    height: 34px;
    flex-basis: 44px;
  }

  .nav-actions {
    gap: 7px;
  }

  .nav-actions .button {
    min-height: 38px;
    padding-inline: 8px;
    font-size: 0.68rem;
  }

  .menu-button {
    width: 38px;
    height: 38px;
  }

  .home-hero .eyebrow,
  .trap-heading .eyebrow {
    max-width: 280px;
    margin-inline: auto;
    font-size: 0.72rem;
  }

  .trap-heading .eyebrow {
    margin-inline: 0;
  }

  .home-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
  }

  .home-hero p {
    font-size: 0.95rem;
  }

  .opportunity-mock {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .opportunity-body {
    padding: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
