:root {
  --ink: #111820;
  --muted-ink: #5f6671;
  --line: #d8d8d8;
  --line-strong: #8f9399;
  --paper: #f7f7f7;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --white: #ffffff;
  --mint: #86b817;
  --deep: #001e3c;
  --blue: #0968f6;
  --coral: #e53238;
  --yellow: #f5af02;
  --accent-purple: #6a5cff;
  --shadow: 0 2px 8px rgba(17, 24, 32, 0.08);
  --radius: 8px;
  --radius-small: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-small);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 10px clamp(20px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.logo-image-brand {
  display: block;
  width: 168px;
  height: 64px;
  overflow: hidden;
}

.logo-image-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-small);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted-ink);
  font-size: 0.95rem;
  font-weight: 650;
}

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

.nav-cta {
  color: var(--white) !important;
  background: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

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

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  filter: saturate(0.9) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.84) 46%, rgba(255, 255, 255, 0.58)),
    linear-gradient(135deg, rgba(9, 104, 246, 0.12), transparent 44%),
    linear-gradient(315deg, rgba(245, 175, 2, 0.12), transparent 38%);
}

.hero-content {
  position: relative;
  width: min(860px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 118px);
  padding: 98px 0 116px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 4px 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 670px;
  color: var(--muted-ink);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
}

.hero-actions,
.cta-content,
.compact .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink);
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 84px);
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.64) 100%),
    linear-gradient(135deg, rgba(9, 104, 246, 0.14), transparent 42%),
    linear-gradient(315deg, rgba(134, 184, 23, 0.14), transparent 38%);
}

.home-hero-bg {
  position: absolute;
  inset: -7% -3% -7% auto;
  z-index: -2;
  width: min(58vw, 920px);
  height: 116%;
  object-fit: cover;
  object-position: center;
  opacity: 0.34;
  filter: saturate(0.85) contrast(1.05);
  will-change: transform;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.42fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
  width: min(1280px, calc(100% - 40px));
  min-height: calc(100svh - 84px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(36px, 6vw, 72px);
}

.home-hero-copy {
  max-width: 940px;
}

.home-hero-copy h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 7.4vw, 6.6rem);
  line-height: 0.95;
}

.home-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted-ink);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.hero-ledger {
  display: grid;
  gap: 18px;
  align-self: end;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-ledger span,
.service-panel span,
.process-row span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.06em;
}

.hero-ledger strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-ledger ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-ledger li {
  padding: 12px 0;
  color: var(--muted-ink);
  border-top: 1px solid var(--line);
  font-weight: 650;
}

.marquee-strip {
  overflow: hidden;
  padding: 18px 0;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding-inline: max(20px, calc((100vw - 1160px) / 2));
  animation: marquee 34s linear infinite;
}

.marquee-track span {
  padding: 8px 13px;
  color: var(--muted-ink);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 720;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-35%);
  }
}

.editorial-section,
.service-showcase,
.resource-preview,
.pricing-strip {
  padding: clamp(58px, 8vw, 112px) 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
}

.pricing-editorial {
  display: grid;
  gap: 34px;
}

.editorial-copy {
  display: grid;
  gap: 18px;
  padding-top: 8px;
  color: var(--muted-ink);
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
}

.service-showcase {
  background: var(--ink);
  color: var(--white);
}

.service-showcase .section-heading p,
.service-showcase .section-heading h2 {
  color: inherit;
}

.service-showcase .eyebrow {
  color: #9fc7ff;
}

.service-panels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.service-panel {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3.4vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.service-panel:hover {
  background: rgba(255, 255, 255, 0.06);
}

.service-panel span {
  color: var(--mint);
}

.service-panel h3 {
  margin-top: auto;
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1;
}

.service-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.process-band {
  padding: clamp(66px, 9vw, 124px) 0;
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.process-sticky {
  position: sticky;
  top: 118px;
}

.process-sticky p:not(.eyebrow) {
  color: var(--muted-ink);
  font-size: 1.08rem;
}

.process-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.process-row {
  display: grid;
  grid-template-columns: 72px minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
  padding: clamp(28px, 4vw, 46px) 0;
  border-bottom: 1px solid var(--line);
}

.process-row h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.process-row p {
  margin: 0;
  color: var(--muted-ink);
}

.proof-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 140px) 0;
  color: var(--white);
  background: var(--deep);
  isolation: isolate;
}

.proof-media {
  position: absolute;
  inset: 8% 0 auto auto;
  z-index: -1;
  width: min(52vw, 760px);
  height: 72%;
  opacity: 0.22;
  background:
    linear-gradient(135deg, rgba(9, 104, 246, 0.42), rgba(134, 184, 23, 0.2)),
    url("assets/hero-workflow.png") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: end;
}

.proof-copy {
  max-width: 760px;
}

.proof-copy .eyebrow {
  color: #9fc7ff;
}

.proof-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.proof-notes {
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.proof-notes blockquote {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.proof-notes span {
  color: rgba(255, 255, 255, 0.72);
}

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

.resource-header h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.pricing-strip {
  background: var(--paper);
}

.section {
  padding: clamp(54px, 6vw, 88px) 0;
}

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

.narrow {
  width: min(860px, calc(100% - 40px));
}

.muted {
  background: var(--paper);
}

.strip {
  padding: 18px 0;
  background: var(--white);
  color: var(--muted-ink);
  border-block: 1px solid var(--line);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.logo-strip span {
  padding: 7px 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.split,
.faq-layout,
.business-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.section-intro p,
.section-heading p,
.page-hero p,
.copy-block p,
.audit-box p,
.audience-panel p,
.cta-band p {
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.feature-grid,
.service-grid,
.pricing-grid,
.cards-3,
.use-case-list {
  display: grid;
  gap: 18px;
}

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

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

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

.topic-card {
  display: grid;
  gap: 12px;
  min-height: 156px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 700;
}

.topic-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--coral), var(--yellow), var(--mint));
}

.topic-card span,
.kicker {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.feature-card,
.service-card,
.pricing-card,
.quote,
.detail-card,
.use-case,
.contact-form,
.audit-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.feature-card,
.service-card,
.pricing-card,
.quote,
.detail-card,
.use-case {
  padding: 26px;
}

.feature-card,
.service-card,
.pricing-card,
.quote,
.detail-card,
.use-case,
.resource-card,
.article-body section,
.audit-box,
.contact-form,
details {
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.feature-card:hover,
.service-card:hover,
.pricing-card:hover,
.quote:hover,
.detail-card:hover,
.use-case:hover,
.resource-card:hover,
.article-body section:hover,
.topic-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-card p,
.service-card p,
.pricing-card li,
.quote span,
.detail-card p,
.use-case p {
  color: var(--muted-ink);
}

.icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--blue);
  background: #eaf2ff;
  border: 1px solid #cfe1ff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.audience-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: clamp(32px, 5vw, 62px);
  background: var(--deep);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: none;
}

.audience-panel p {
  color: rgba(255, 255, 255, 0.78);
}

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

.audience-list a {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-small);
  font-weight: 700;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.trust-panel p {
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--ink);
  box-shadow: inset 0 4px 0 var(--blue);
}

.plan {
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price {
  margin: 6px 0 20px;
  font-size: 1.5rem;
  font-weight: 760;
}

.pricing-card ul,
.check-list {
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.pricing-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.pricing-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--mint);
}

.pricing-card .button {
  margin-top: auto;
}

.testimonials {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.quote p {
  color: var(--ink);
  font-size: 1.1rem;
}

.faq-section {
  padding-top: 0;
}

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

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 12px 0 0;
  color: var(--muted-ink);
}

.cta-band {
  padding: clamp(58px, 8vw, 92px) 0;
  background: var(--deep);
  color: var(--white);
}

.cta-content {
  justify-content: space-between;
}

.cta-content h2 {
  width: min(640px, 100%);
  margin-bottom: 10px;
}

.cta-content p {
  width: min(560px, 100%);
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  padding: 54px 0;
  background: var(--white);
  color: var(--muted-ink);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 42px;
}

.site-footer .brand {
  color: var(--ink);
  margin-bottom: 16px;
}

.site-footer h3 {
  color: var(--ink);
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--ink);
}

.compact {
  padding: 28px 0;
}

.legal-section {
  padding-top: 44px;
}

.legal-copy {
  max-width: 880px;
}

.legal-copy h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.1;
}

.legal-copy p {
  color: var(--muted-ink);
  font-size: 1.02rem;
}

.page-hero {
  padding: clamp(58px, 8vw, 108px) 0 clamp(42px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(9, 104, 246, 0.08), transparent 46%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.service-stack {
  display: grid;
  gap: 18px;
}

.resource-grid {
  display: grid;
  gap: 22px;
}

.resource-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.4fr);
  gap: 14px 44px;
  align-items: start;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.resource-card .kicker,
.resource-card h2 {
  grid-column: 1;
}

.resource-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.resource-card p,
.resource-card ul,
.resource-card .text-link {
  grid-column: 2;
}

.resource-card p {
  color: var(--muted-ink);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.article-toc a {
  color: var(--muted-ink);
  font-weight: 700;
}

.article-toc a:hover {
  color: var(--ink);
}

.article-body {
  display: grid;
  gap: 38px;
}

.article-body section {
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.article-body p {
  color: var(--muted-ink);
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px 44px;
  align-items: start;
}

.detail-heading {
  display: grid;
  gap: 10px;
}

.detail-heading .eyebrow {
  margin-bottom: 0;
}

.detail-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.detail-content {
  display: grid;
  gap: 20px;
}

.detail-content p {
  margin-bottom: 0;
}

.detail-content .check-list {
  margin-bottom: 0;
}

.process {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 56px;
}

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

.steps li {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  color: var(--blue);
  font-weight: 700;
}

.steps strong {
  display: block;
  margin: 6px 0;
  font-size: 1.1rem;
}

.steps p {
  margin: 0;
  color: var(--muted-ink);
}

.business-grid {
  align-items: stretch;
}

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

.audit-box {
  padding: clamp(32px, 6vw, 62px);
}

.contact-layout {
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-note {
  margin-top: 16px;
  font-weight: 720;
}

.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted-ink);
  font-size: 0.9rem;
  font-weight: 500;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.checkbox-field a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  padding: 16px;
  color: #721414;
  background: #fff4f4;
  border: 1px solid rgba(229, 50, 56, 0.35);
  border-radius: var(--radius-small);
}

.form-alert ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid rgba(9, 104, 246, 0.28);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

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

  .site-nav {
    position: fixed;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .feature-grid,
  .service-grid,
  .service-panels,
  .pricing-grid,
  .cards-3,
  .testimonials,
  .footer-grid,
  .split,
  .editorial-grid,
  .pricing-editorial,
  .process-layout,
  .proof-grid,
  .faq-layout,
  .business-grid,
  .contact-layout,
  .process,
  .audience-panel {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .topic-grid,
  .use-case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-card,
  .resource-card,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .detail-card .eyebrow,
  .detail-card h2,
  .detail-card p,
  .detail-card ul,
  .resource-card .kicker,
  .resource-card h2,
  .resource-card p,
  .resource-card ul,
  .resource-card .text-link {
    grid-column: auto;
  }

  .article-toc {
    position: static;
  }

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

  .home-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 82px 0 48px;
  }

  .home-hero-bg {
    width: 100%;
    opacity: 0.22;
  }

  .home-hero-copy h1 {
    font-size: clamp(3.3rem, 11vw, 5.4rem);
  }

  .hero-ledger {
    max-width: 560px;
  }

  .process-sticky {
    position: static;
  }

  .process-row {
    grid-template-columns: 52px 1fr;
  }

  .process-row p {
    grid-column: 2;
  }

  .resource-header {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-image-brand {
    width: 124px;
    height: 56px;
  }


  .hero,
  .home-hero {
    min-height: 650px;
  }

  .hero-content {
    margin-left: 20px;
    padding: 76px 0 96px;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4rem);
  }

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

  .home-hero-grid {
    width: min(100% - 32px, 1280px);
    padding: 60px 0 40px;
  }

  .home-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .home-hero-copy p:not(.eyebrow) {
    font-size: 1.04rem;
  }

  .home-hero-bg {
    inset: 0;
    height: 100%;
  }

  .hero-ledger,
  .service-panel,
  .proof-notes {
    padding: 22px;
  }

  .service-panel {
    min-height: 260px;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-row p {
    grid-column: auto;
  }

  .proof-media {
    width: 100%;
    height: 42%;
  }

  .service-grid,
  .topic-grid,
  .use-case-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .service-card,
  .pricing-card,
  .quote,
  .detail-card,
  .resource-card,
  .use-case,
  .contact-form {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal,
  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .parallax-layer {
    transform: none !important;
  }
}
