@font-face {
  font-family: Satoshi;
  src: url("../fonts/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url("../fonts/Satoshi-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url("../fonts/Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #101317;
  --slate: #24303b;
  --body: #4a535f;
  --muted: #76818e;
  --line: #dce2e8;
  --paper: #fbfaf6;
  --white: #ffffff;
  --sage: #39ac7a;
  --mint: #dff3e9;
  --blue: #c7dfec;
  --amber: #d89b48;
  --coral: #d9644f;
  --navy: #071f3a;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: Satoshi, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 21px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 20;
  background: var(--white);
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(16, 19, 23, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand-mark,
.footer-brand {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  font-weight: 700;
}

.brand-copy {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-bottom: 2px solid transparent;
  color: var(--slate);
  font-size: 15px;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-bottom-color: var(--sage);
  color: var(--ink);
}

.nav-cta,
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 12px 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.74);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 12px;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--ink);
}

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

.section {
  padding: 112px 0;
}

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

.section-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

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

.section-mint {
  background: var(--mint);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section-head {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--body);
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 42% 36%, rgba(0, 0, 0, 0.58) 0, rgba(0, 0, 0, 0.18) 36%, rgba(0, 0, 0, 0) 62%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.76) 38%, rgba(0, 0, 0, 0.46) 68%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.62) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 42px;
  color: var(--white);
}

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

.hero-eyebrow {
  color: var(--mint);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.hero h1 {
  max-width: 1040px;
  margin-top: 18px;
  color: var(--white);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.72), 0 1px 2px rgba(0, 0, 0, 0.72);
  text-wrap: balance;
}

.hero p {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.74), 0 1px 2px rgba(0, 0, 0, 0.68);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72), 0 1px 2px rgba(0, 0, 0, 0.68);
}

.hero-note a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-rail {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(9, 18, 27, 0.74);
  backdrop-filter: blur(14px);
}

.hero-stat {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.pillar,
.article-card,
.office-card,
.partner-card,
.team-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card,
.pillar,
.office-card {
  padding: 28px;
}

.card-number,
.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 700;
}

.card:nth-child(2) .card-icon,
.pillar:nth-child(2) .card-number {
  background: var(--blue);
}

.card:nth-child(3) .card-icon,
.pillar:nth-child(3) .card-number {
  background: #f4dfc0;
}

.card p,
.pillar p,
.office-card p {
  margin-top: 13px;
  color: var(--body);
}

.offer-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  margin: 9px 0;
  padding-left: 18px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.45;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.partnership-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 24px;
  border: 1px solid rgba(16, 19, 23, 0.16);
  border-radius: 6px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.flow-copy p + p {
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-stack {
  position: relative;
}

.feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.dashboard-shot {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(16, 19, 23, 0.16);
}

.floating-note {
  position: absolute;
  right: -18px;
  bottom: 28px;
  max-width: 250px;
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 50px rgba(16, 19, 23, 0.26);
}

.floating-note strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.floating-note span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.insight-alert {
  position: absolute;
  left: -18px;
  bottom: 28px;
  max-width: 315px;
  padding: 18px;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 50px rgba(16, 19, 23, 0.2);
}

.insight-alert strong {
  display: block;
  color: var(--coral);
  font-size: 14px;
  text-transform: uppercase;
}

.insight-alert p {
  margin-top: 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.insight-alert span {
  display: block;
  margin-top: 10px;
  color: var(--body);
  font-size: 14px;
}

.micro-block {
  margin-top: 28px;
  border-top: 1px solid rgba(16, 19, 23, 0.14);
  padding-top: 24px;
}

.micro-block h3 {
  font-size: 24px;
}

.micro-block p {
  margin-top: 12px;
}

.ai-report {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 24px 80px rgba(16, 19, 23, 0.14);
}

.ai-report-inner {
  border: 2px solid #4c8df7;
  border-right-color: #e2bd57;
  border-bottom-color: #e2bd57;
  border-radius: 8px;
  padding: 22px 24px;
}

.ai-report-block + .ai-report-block {
  margin-top: 24px;
}

.ai-report-title {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #777;
  font-size: 17px;
  font-weight: 700;
}

.ai-report-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.ai-report-rule {
  height: 1px;
  margin: 6px 0 9px;
  background: #9a9a9a;
}

.ai-report ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-report li {
  position: relative;
  margin: 8px 0;
  padding-left: 28px;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}

.ai-report li::before {
  content: "↗";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ink);
  font-weight: 700;
}

.ai-report p {
  color: #333;
  font-size: 15px;
  line-height: 1.58;
}

.solution-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}

.solution-card {
  display: grid;
  gap: 18px;
}

.solution-band {
  padding: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.solution-band + .solution-band {
  margin-top: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-list span,
.tag-list a {
  border: 1px solid rgba(16, 19, 23, 0.14);
  border-radius: 6px;
  padding: 8px 11px;
  background: var(--white);
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
}

.section-dark .tag-list span,
.section-dark .tag-list a {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  min-height: 142px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.proof-item span {
  display: block;
  margin-top: 9px;
  color: var(--body);
}

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

.partner-intro {
  margin-bottom: 70px;
}

.partner-subhead {
  margin-bottom: 34px;
}

.partner-card {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 22px 18px;
  color: var(--ink);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card img {
  max-height: 58px;
  max-width: 150px;
  object-fit: contain;
}

.partner-card h3 {
  font-size: 15px;
  line-height: 1.25;
}

a.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(16, 19, 23, 0.11);
}

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

.integration-card {
  min-height: 140px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid rgba(16, 19, 23, 0.12);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
  color: var(--ink);
  box-shadow: 0 16px 50px rgba(16, 19, 23, 0.05);
}

.integration-card img {
  width: 100%;
  max-width: 150px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.integration-card h3 {
  font-size: 17px;
  line-height: 1.2;
}

.integration-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.article-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(16, 19, 23, 0.11);
}

.article-card small {
  color: var(--sage);
  font-weight: 700;
}

.article-card h3 {
  margin-top: 16px;
  font-size: 25px;
  line-height: 1.15;
}

.article-card p {
  margin-top: 18px;
  color: var(--body);
  font-size: 16px;
}

.article-card .read-link {
  margin-top: 26px;
  color: var(--ink);
  font-weight: 700;
}

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

.archive-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 500;
}

.archive-link span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.page-hero {
  position: relative;
  min-height: 450px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 38% 50%, rgba(0, 0, 0, 0.52) 0, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0) 68%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.38) 78%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.52) 100%),
    var(--page-image);
  background-size: var(--page-size, cover);
  background-position: var(--page-position, center);
}

.page-hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0 64px;
  color: var(--white);
}

.page-hero h1 {
  max-width: 880px;
  color: var(--white);
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.76), 0 1px 2px rgba(0, 0, 0, 0.7);
}

.page-hero p {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.74), 0 1px 2px rgba(0, 0, 0, 0.68);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--sage);
  font-size: 24px;
}

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

.leadership-grid {
  margin-top: 34px;
}

.team-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.team-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-card div {
  padding: 24px;
}

.team-card p {
  margin-top: 8px;
}

.leadership-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.leadership-list div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.leadership-list h3 {
  font-size: 25px;
}

.leadership-list p {
  margin-top: 8px;
  color: var(--body);
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--sage);
  font-weight: 700;
}

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

.office-card h3 {
  margin-bottom: 20px;
}

.office-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.office-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.office-card dd {
  margin: 3px 0 0;
  color: var(--ink);
}

.form-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.map-embed {
  overflow: hidden;
  width: 100%;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.map-embed iframe {
  width: 100%;
  height: 460px;
  display: block;
  border: 0;
}

.cta-band {
  background: var(--ink);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta-inner h2 {
  color: var(--white);
}

.cta-inner p {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  background: #070a0f;
  color: rgba(255, 255, 255, 0.72);
  padding: 76px 0 28px;
}

.footer-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 22px;
  background: var(--sage);
  color: var(--ink);
}

.footer-lead p {
  max-width: 370px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 48px));
  margin: 58px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 46px;
  font-size: 34px;
}

.article-body p {
  margin-top: 20px;
  color: var(--body);
}

.article-body ul {
  margin-top: 20px;
  padding-left: 22px;
}

.article-body li {
  margin: 10px 0;
}

.article-meta {
  margin-top: 18px;
  color: var(--mint);
  font-weight: 700;
}

.profit-hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: grid;
  align-items: center;
  background: #081410;
  color: var(--white);
}

.profit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 33% 48%, rgba(57, 172, 122, 0.2) 0, rgba(57, 172, 122, 0.08) 28%, rgba(57, 172, 122, 0) 58%),
    linear-gradient(90deg, rgba(4, 22, 15, 0.97) 0%, rgba(4, 34, 23, 0.9) 48%, rgba(4, 30, 22, 0.58) 100%),
    linear-gradient(180deg, rgba(5, 14, 11, 0.18) 0%, rgba(5, 14, 11, 0.74) 100%),
    var(--profit-hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.profit-hero-grid {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - 96px));
  display: grid;
  grid-template-columns: minmax(420px, 0.58fr) minmax(760px, 1.22fr);
  gap: 64px;
  align-items: center;
  padding: 76px 0 66px;
}

.profit-hero-copy {
  max-width: 480px;
  min-width: 0;
}

.pulse-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.pulse-lockup small {
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.pulse-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: inline-block;
  border: 2px solid var(--sage);
  border-radius: 50%;
}

.pulse-mark::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 22px;
  height: 2px;
  background: var(--sage);
}

.pulse-mark::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 22px;
  height: 18px;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: skewX(-24deg) rotate(-28deg);
}

.profit-hero h1 {
  max-width: 480px;
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(52px, 5.4vw, 76px);
  line-height: 0.98;
}

.profit-hero p {
  max-width: 480px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.5;
}

.profit-hero .profit-hero-support {
  max-width: 470px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.profit-hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 500;
}

.profit-hero .reveal {
  opacity: 1;
  transform: none;
}

.pulse-product-stage {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-width: 0;
}

.pulse-score-card {
  position: relative;
  left: auto;
  top: auto;
  z-index: 2;
  width: 190px;
  display: grid;
  gap: 12px;
  justify-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: center;
  box-shadow: none;
}

.pulse-card-label,
.pulse-band-mini span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pulse-gauge {
  width: 188px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-top: 12px;
  border-radius: 50%;
  background: conic-gradient(var(--sage) calc(var(--score) * 1%), #d4dde4 0);
}

.pulse-gauge::before {
  content: "";
  position: absolute;
}

.pulse-gauge div {
  width: 136px;
  height: 136px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: #081410;
  color: var(--white);
}

.pulse-gauge strong {
  color: var(--white);
  font-size: 62px;
  line-height: 0.9;
}

.pulse-gauge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 700;
}

.pulse-gauge em {
  margin-top: 4px;
  color: var(--mint);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.pulse-band-mini {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 12px 6px 7px;
  background: rgba(5, 28, 20, 0.82);
  text-align: center;
}

.pulse-band-mini span {
  display: none;
}

.pulse-band-mini strong {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-top: 0;
  border: 2px solid var(--sage);
  border-radius: 50%;
  color: var(--white);
  font-size: 15px;
  line-height: 1;
}

.pulse-band-mini small {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.25;
}

.pulse-dashboard-window {
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.pulse-window-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #dce2e8;
  background: #f7faf8;
  padding: 0 14px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
}

.pulse-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #bcc7d0;
}

.pulse-window-bar span:first-child {
  background: var(--coral);
}

.pulse-window-bar span:nth-child(2) {
  background: var(--amber);
}

.pulse-window-bar span:nth-child(3) {
  background: var(--sage);
}

.pulse-window-bar strong {
  margin-left: 8px;
}

.pulse-dashboard-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 372px;
}

.pulse-dashboard-nav {
  display: grid;
  align-content: start;
  gap: 8px;
  background: #081b27;
  padding: 18px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.pulse-dashboard-nav strong {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 18px;
}

.pulse-dashboard-nav span {
  border-radius: 6px;
  padding: 8px 9px;
}

.pulse-dashboard-nav .is-active {
  background: rgba(57, 172, 122, 0.18);
  color: var(--white);
}

.pulse-dashboard-main {
  padding: 22px;
  min-width: 0;
  color: var(--ink);
}

.pulse-dashboard-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 700;
}

.pulse-dashboard-title small {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 9px;
  color: var(--muted);
  font-size: 11px;
}

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

.pulse-metric {
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.pulse-metric span,
.pulse-chart-board span,
.pulse-bars span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.pulse-metric strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}

.pulse-metric small {
  display: block;
  margin-top: 8px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
}

.pulse-chart-board {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 14px;
  margin-top: 12px;
}

.pulse-chart-board > div,
.pulse-opportunity {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.pulse-chart-board svg {
  width: 100%;
  min-height: 94px;
  margin-top: 10px;
}

.pulse-bars {
  display: grid;
  align-content: start;
  gap: 12px;
}

.pulse-bars p {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 10px;
  align-items: center;
  margin: 0;
}

.pulse-bars b {
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
}

.pulse-bars i {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sage) var(--bar), #dfe5ea var(--bar));
}

.pulse-opportunity {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  align-items: center;
  margin-top: 14px;
  background: #f7fbf8;
}

.pulse-opportunity strong {
  color: var(--ink);
  font-size: 14px;
}

.pulse-opportunity span {
  color: var(--body);
  font-size: 13px;
}

.pulse-opportunity small {
  grid-row: 1 / 3;
  grid-column: 2;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.profit-report-window {
  width: 100%;
  border-radius: 10px;
  background: rgba(238, 246, 241, 0.95);
  padding: 22px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.profit-report-page {
  min-height: 560px;
  border: 1px solid #dce2e8;
  border-radius: 8px;
  background: var(--white);
  padding: 42px;
  color: var(--ink);
}

.profit-report-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}

.profit-report-head span,
.profit-report-score span,
.profit-report-band span,
.profit-report-kpis span,
.profit-report-panel > span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.profit-report-head strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.1;
}

.profit-report-head small {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 17px;
  color: var(--slate);
  font-size: 18px;
  font-weight: 700;
}

.profit-report-summary {
  display: grid;
  grid-template-columns: 1.06fr 0.92fr 1.78fr;
  gap: 22px;
  margin-top: 28px;
}

.profit-report-score,
.profit-report-band,
.profit-report-kpis,
.profit-report-panel,
.profit-report-callout {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fcfefc;
}

.profit-report-score,
.profit-report-band {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 198px;
  text-align: center;
}

.profit-report-score strong {
  margin-top: 14px;
  color: var(--ink);
  font-size: 88px;
  line-height: 0.9;
}

.profit-report-score small,
.profit-report-band small {
  margin-top: 14px;
  color: var(--sage);
  font-size: 17px;
  font-weight: 700;
}

.profit-report-band strong {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-top: 18px;
  border: 3px solid var(--sage);
  border-radius: 50%;
  color: var(--ink);
  font-size: 54px;
  line-height: 1;
}

.profit-report-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.profit-report-kpis p {
  min-height: 198px;
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
  margin: 0;
  border-right: 1px solid var(--line);
  padding: 24px;
}

.profit-report-kpis p:last-child {
  border-right: 0;
}

.profit-report-kpis strong {
  color: var(--ink);
  font-size: 40px;
  line-height: 1;
}

.profit-report-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  margin-top: 22px;
}

.profit-report-panel {
  min-height: 206px;
  padding: 26px;
}

.profit-report-panel p {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 20px;
  align-items: center;
  margin: 20px 0 0;
}

.profit-report-panel b {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.1;
}

.profit-report-panel i {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sage) var(--bar), #dfe5ea var(--bar));
}

.profit-report-panel table {
  width: 100%;
  margin-top: 22px;
  border-collapse: collapse;
}

.profit-report-panel td {
  border-top: 1px solid var(--line);
  padding: 12px 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.2;
}

.profit-report-panel td:last-child {
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.profit-report-callout {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  border-color: rgba(57, 172, 122, 0.32);
  background: #f4fbf6;
  padding: 20px;
}

.profit-report-callout strong {
  color: var(--ink);
  font-size: 18px;
}

.profit-report-callout span {
  color: var(--body);
  font-size: 15px;
  line-height: 1.4;
}

.profit-report-large {
  padding: 22px;
}

.profit-report-large .profit-report-page {
  min-height: 620px;
  padding: 42px;
}

.profit-hero .profit-report-window {
  padding: 14px;
}

.profit-hero .profit-report-page {
  min-height: 488px;
  padding: 28px;
}

.profit-hero .profit-report-head {
  padding-bottom: 20px;
}

.profit-hero .profit-report-head span,
.profit-hero .profit-report-score span,
.profit-hero .profit-report-band span,
.profit-hero .profit-report-kpis span,
.profit-hero .profit-report-panel > span {
  font-size: 11px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.profit-hero .profit-report-head strong {
  font-size: 27px;
}

.profit-hero .profit-report-head small {
  padding: 10px 12px;
  font-size: 14px;
}

.profit-hero .profit-report-summary {
  grid-template-columns: 0.84fr 0.76fr 1.58fr;
  gap: 12px;
  margin-top: 18px;
}

.profit-hero .profit-report-score,
.profit-hero .profit-report-band,
.profit-hero .profit-report-kpis p {
  min-height: 136px;
}

.profit-hero .profit-report-score strong {
  font-size: 64px;
}

.profit-hero .profit-report-band strong {
  width: 62px;
  height: 62px;
  font-size: 40px;
}

.profit-hero .profit-report-score small,
.profit-hero .profit-report-band small {
  font-size: 13px;
}

.profit-hero .profit-report-kpis p {
  gap: 8px;
  padding: 12px 10px;
}

.profit-hero .profit-report-kpis span {
  font-size: 10px;
  overflow-wrap: normal;
}

.profit-hero .profit-report-kpis strong {
  font-size: 27px;
}

.profit-hero .profit-report-grid {
  gap: 12px;
  margin-top: 12px;
}

.profit-hero .profit-report-panel {
  min-height: 150px;
  padding: 16px;
}

.profit-hero .profit-report-panel p {
  grid-template-columns: 104px 1fr;
  gap: 10px;
  margin-top: 12px;
}

.profit-hero .profit-report-panel b,
.profit-hero .profit-report-panel td {
  font-size: 12px;
}

.profit-hero .profit-report-panel td {
  padding: 7px 0;
}

.profit-hero .profit-report-panel table {
  margin-top: 10px;
}

.profit-hero .profit-report-callout {
  margin-top: 12px;
  padding: 14px;
}

.profit-hero .profit-report-callout strong {
  font-size: 15px;
}

.profit-hero .profit-report-callout span {
  font-size: 12px;
}

.profit-audience-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.profit-audience-strip .container {
  min-height: 112px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 38px;
  color: var(--slate);
}

.profit-audience-strip span {
  flex-basis: 100%;
  margin-bottom: -8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.profit-audience-strip strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
  opacity: 0.84;
  text-align: center;
}

.profit-intro-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 42px;
  align-items: start;
}

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

.profit-feature-card,
.profit-model-card,
.profit-outcome-card {
  border-radius: 8px;
}

.profit-feature-card {
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 26px;
  box-shadow: 0 16px 48px rgba(16, 19, 23, 0.06);
}

.profit-feature-card p {
  margin-top: 13px;
  color: var(--body);
  font-size: 16px;
}

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

.profit-model-section {
  background: var(--paper);
  color: rgba(255, 255, 255, 0.74);
  padding: 44px 0;
}

.profit-model-section .container {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 50%, rgba(57, 172, 122, 0.16), rgba(57, 172, 122, 0) 42%),
    linear-gradient(135deg, #043821 0%, #06271e 52%, #031911 100%);
  padding: 48px;
}

.profit-model-section .section-head {
  margin-bottom: 28px;
}

.profit-model-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
}

.profit-model-card span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.profit-model-card h3 {
  margin-top: 22px;
  color: var(--white);
  font-size: 60px;
}

.profit-model-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.pulse-mini-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 26px;
}

.pulse-mini-line i {
  height: 7px;
  border-radius: 999px;
  background: var(--sage);
}

.pulse-mini-line i:nth-child(4),
.pulse-mini-line i:nth-child(5) {
  background: rgba(255, 255, 255, 0.22);
}

.profit-band-scale {
  display: flex;
  gap: 8px;
  margin-top: 26px;
}

.profit-band-scale b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.profit-band-scale .is-active {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--ink);
}

.profit-impact-tag {
  width: fit-content;
  margin-top: 26px;
  border: 1px solid rgba(57, 172, 122, 0.5);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 700;
}

.profit-dashboard-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.profit-dashboard-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(16, 19, 23, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 700;
}

.profit-dashboard-section {
  background:
    radial-gradient(circle at 28% 48%, rgba(57, 172, 122, 0.14), rgba(57, 172, 122, 0) 42%),
    linear-gradient(135deg, #032b1d 0%, #05261e 52%, #03131a 100%);
}

.profit-dashboard-showcase {
  display: grid;
  grid-template-columns: 0.66fr minmax(360px, 1fr) 0.54fr;
  gap: 34px;
  align-items: center;
}

.profit-dashboard-showcase .section-head {
  margin-bottom: 0;
}

.profit-dashboard-showcase .dashboard-shot {
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.profit-dashboard-section .profit-dashboard-list {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.profit-dashboard-section .profit-dashboard-list span {
  position: relative;
  min-height: 68px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding-left: 54px;
  color: rgba(255, 255, 255, 0.9);
}

.profit-dashboard-section .profit-dashboard-list span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 2px solid var(--sage);
  border-radius: 50%;
  transform: translateY(-50%);
}

.profit-snapshot {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(16, 19, 23, 0.12);
}

.profit-snapshot-head {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 0 26px;
  color: var(--ink);
}

.profit-snapshot-head span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.profit-snapshot-body {
  display: grid;
  grid-template-columns: 150px 128px 1fr;
  gap: 22px;
  align-items: center;
  padding: 26px;
}

.profit-snapshot .pulse-gauge div {
  background: var(--white);
}

.profit-snapshot .pulse-gauge strong,
.profit-snapshot .pulse-gauge span {
  color: var(--ink);
}

.profit-snapshot .pulse-gauge em {
  color: var(--sage);
}

.profit-snapshot-band {
  min-height: 148px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.profit-snapshot-band span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.profit-snapshot-band strong {
  color: var(--ink);
  font-size: 58px;
  line-height: 1;
}

.profit-snapshot-band small {
  color: var(--sage);
  font-weight: 700;
}

.profit-snapshot-notes {
  display: grid;
  gap: 14px;
}

.profit-snapshot-notes p {
  border-left: 3px solid var(--sage);
  padding-left: 14px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.45;
}

.profit-snapshot-notes b {
  display: block;
  color: var(--ink);
}

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

.profit-outcome-card {
  border: 1px solid rgba(16, 19, 23, 0.1);
  background: rgba(255, 255, 255, 0.74);
  padding: 28px;
}

.profit-outcome-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.profit-outcome-card strong {
  display: block;
  margin-top: 10px;
  color: var(--sage);
  font-size: 48px;
  line-height: 1;
}

.profit-outcome-card p {
  margin-top: 12px;
  color: var(--slate);
  font-size: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1320px) {
  .profit-hero-grid {
    width: min(var(--max), calc(100% - 48px));
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .profit-hero-copy,
  .profit-hero h1,
  .profit-hero p,
  .profit-hero .profit-hero-support {
    max-width: 680px;
  }

  .pulse-product-stage {
    grid-template-columns: 190px minmax(0, 1fr);
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 82px 18px auto 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    justify-self: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 10px;
    box-shadow: 0 20px 80px rgba(16, 19, 23, 0.16);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 50px;
    border-bottom: 0;
    border-radius: 6px;
  }

  .site-nav a.is-active,
  .site-nav a:hover {
    background: var(--mint);
  }

  .nav-cta {
    display: none;
  }

  .split,
  .split.reverse,
  .profit-hero-grid,
  .profit-intro-grid,
  .profit-dashboard-showcase,
  .solution-row,
  .cta-inner {
    grid-template-columns: 1fr;
  }

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

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

  .hero-stat:nth-child(2) {
    border-right: 0;
  }

  .hero-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .article-grid,
  .grid-3,
  .profit-feature-grid,
  .profit-model-grid,
  .profit-outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pulse-product-stage {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pulse-score-card,
  .pulse-dashboard-window,
  .profit-report-window {
    position: relative;
    inset: auto;
  }

  .pulse-score-card {
    width: min(190px, 100%);
  }

  .pulse-dashboard-window,
  .profit-report-window {
    width: 100%;
  }

  .profit-dashboard-showcase {
    gap: 28px;
  }

  .profit-model-section .container {
    padding: 36px;
  }

  .profit-snapshot-body {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .profit-hero h1 {
    font-size: 48px;
  }

  .nav-shell,
  .container,
  .hero-content,
  .hero-rail,
  .page-hero-content,
  .footer-grid,
  .footer-bottom {
    width: min(calc(100% - 32px), var(--max));
  }

  .brand-copy {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero p,
  .page-hero p {
    font-size: 18px;
  }

  .hero-rail,
  .grid-2,
  .grid-3,
  .grid-4,
  .profit-feature-grid,
  .profit-model-grid,
  .profit-outcome-grid,
  .article-grid,
  .proof-strip,
  .logo-grid,
  .integration-grid,
  .team-grid,
  .leadership-list,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .profit-hero-grid {
    width: min(calc(100vw - 32px), var(--max));
    max-width: calc(100vw - 32px);
    padding: 74px 0 62px;
  }

  .profit-hero-copy,
  .profit-hero .hero-actions {
    width: min(100%, 330px);
    max-width: 330px;
  }

  .pulse-product-stage {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .profit-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .profit-hero .btn {
    width: 100%;
  }

  .profit-hero p,
  .profit-hero-note {
    max-width: 330px;
  }

  .pulse-lockup {
    font-size: 16px;
  }

  .pulse-score-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

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

  .pulse-dashboard-nav {
    display: none;
  }

  .pulse-dashboard-window,
  .profit-report-window {
    max-width: calc(100vw - 32px);
  }

  .profit-report-page,
  .profit-report-large .profit-report-page {
    min-height: auto;
    padding: 18px;
  }

  .profit-report-summary,
  .profit-report-grid,
  .profit-report-kpis {
    grid-template-columns: 1fr;
  }

  .profit-hero .profit-report-summary,
  .profit-hero .profit-report-grid,
  .profit-hero .profit-report-kpis {
    grid-template-columns: 1fr;
  }

  .profit-report-kpis p {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .profit-report-kpis p:last-child {
    border-bottom: 0;
  }

  .profit-report-head {
    flex-direction: column;
  }

  .pulse-dashboard-main {
    padding: 16px;
  }

  .pulse-dashboard-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .pulse-dashboard-title small {
    max-width: 100%;
  }

  .pulse-window-bar strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pulse-metric-grid {
    grid-template-columns: 1fr;
  }

  .pulse-chart-board,
  .pulse-opportunity {
    grid-template-columns: 1fr;
  }

  .pulse-opportunity small {
    grid-row: auto;
    grid-column: auto;
    width: fit-content;
  }

  .profit-audience-strip .container {
    justify-content: flex-start;
  }

  .profit-audience-strip span {
    text-align: left;
  }

  .profit-dashboard-list,
  .profit-dashboard-showcase,
  .profit-snapshot-body {
    grid-template-columns: 1fr;
  }

  .profit-model-section {
    padding: 0;
  }

  .profit-model-section .container {
    width: 100%;
    border-radius: 0;
    padding: 78px 16px;
  }

  .profit-dashboard-section .profit-dashboard-list span {
    min-height: 58px;
  }

  .profit-snapshot-head {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }

  .profit-snapshot-body {
    padding: 20px;
  }

  .profit-snapshot .pulse-gauge {
    margin-left: auto;
    margin-right: auto;
  }

  .team-photo-card img {
    aspect-ratio: 4 / 3;
  }

  .hero-stat,
  .hero-stat:nth-child(2),
  .proof-item {
    border-right: 0;
  }

  .hero-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  .insight-alert {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  .timeline-item,
  .archive-link {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .profit-hero-copy,
  .profit-hero h1,
  .profit-hero p,
  .profit-hero-note,
  .profit-hero .hero-actions {
    max-width: calc(100vw - 56px);
  }
}
