:root {
  --bg: #f4f7f9;
  --bg-strong: #e6ebee;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-muted: rgba(235, 241, 245, 0.9);
  --text: #16212b;
  --text-soft: #4c6273;
  --text-inverse: #f8fbfd;
  --border: rgba(22, 33, 43, 0.1);
  --border-strong: rgba(22, 33, 43, 0.16);
  --accent: #2574c3;
  --accent-strong: #114f8a;
  --accent-soft: #7fc5f1;
  --accent-fog: rgba(37, 116, 195, 0.12);
  --success: #1f6c5f;
  --shadow: 0 24px 60px rgba(11, 26, 41, 0.12);
  --shadow-soft: 0 16px 32px rgba(11, 26, 41, 0.08);
  --radius-sm: 0.9rem;
  --radius-md: 1.4rem;
  --radius-lg: 2rem;
  --container: min(1120px, calc(100vw - 2.4rem));
  --container-wide: min(1220px, calc(100vw - 2.4rem));
  --section-space: clamp(4rem, 7vw, 7rem);
  --header-height: 5.4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background:
    radial-gradient(circle at top right, rgba(37, 116, 195, 0.18), transparent 30%),
    radial-gradient(circle at 18% 25%, rgba(127, 197, 241, 0.3), transparent 26%),
    linear-gradient(180deg, #eef3f6 0%, #f7fafb 22%, #eef3f6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(18, 33, 49, 0.02), transparent 30%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.14) 1px,
      transparent 1px,
      transparent 110px
    );
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: auto auto -220px -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 116, 195, 0.16), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

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

[hidden] {
  display: none !important;
}

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(22, 33, 43, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: rgba(37, 116, 195, 0.8);
  box-shadow: 0 0 0 4px rgba(37, 116, 195, 0.12);
}

::selection {
  background: rgba(37, 116, 195, 0.18);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.9rem 1.2rem;
  background: var(--accent-strong);
  color: var(--text-inverse);
  border-radius: 0 0 1rem 1rem;
}

.skip-link:focus {
  left: 1rem;
}

.shell {
  width: var(--container);
  margin: 0 auto;
}

.shell-wide {
  width: var(--container-wide);
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-alt {
  padding: var(--section-space) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(227, 235, 240, 0.6));
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(22, 33, 43, 0.05);
}

.section-intro {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(17, 79, 138, 0.08);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 0 6px rgba(37, 116, 195, 0.12);
}

.headline,
h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  font-size: clamp(2.75rem, 5vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 3.1vw, 3rem);
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.65rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.copy-italic {
  font-style: italic;
}

.lede,
.subhead {
  font-size: clamp(1.1rem, 1.45vw, 1.32rem);
}

.small {
  font-size: 0.95rem;
}

.muted {
  color: var(--text-soft);
}

.section-title-row {
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 250, 0.88));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 116, 195, 0.12), transparent 65%);
}

.card-grid {
  display: grid;
  gap: 1.4rem;
}

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

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

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

.card,
.feature-card,
.step-card,
.blog-card,
.resource-card,
.contact-card,
.value-card {
  position: relative;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 245, 248, 0.92));
  box-shadow: var(--shadow-soft);
}

.card h3,
.feature-card h3,
.step-card h3,
.blog-card h3,
.resource-card h3,
.contact-card h3,
.value-card h3 {
  margin-bottom: 0.6rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 1rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, rgba(37, 116, 195, 0.16), rgba(127, 197, 241, 0.26));
  color: var(--accent-strong);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.button-row,
.hero-actions,
.cta-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--text-inverse);
  box-shadow: 0 16px 30px rgba(17, 79, 138, 0.28);
}

.button-secondary {
  border: 1px solid rgba(37, 116, 195, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(37, 116, 195, 0.35);
  background: rgba(255, 255, 255, 0.95);
}

.button-ghost {
  padding-inline: 0;
  color: var(--accent-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(241, 246, 248, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(241, 246, 248, 0.92);
  box-shadow: 0 10px 28px rgba(11, 26, 41, 0.08);
}

.header-shell {
  width: var(--container-wide);
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  padding: 0.25rem;
  flex-shrink: 0;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(22, 33, 43, 0.08);
  box-shadow: var(--shadow-soft);
}

.brand-mark-header {
  width: 5.85rem;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.brand-mark-header img {
  width: 100%;
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-title-stack {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.02;
  white-space: normal;
}

.line-nowrap {
  white-space: nowrap;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.text-link-compact {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.brand-subtitle {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
}

.site-nav a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  color: rgba(22, 33, 43, 0.82);
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(37, 116, 195, 0.08);
  color: var(--accent-strong);
}

.header-cta {
  margin-left: 0;
}

.nav-toggle {
  display: none;
  margin-left: 0;
  width: 3rem;
  height: 3rem;
  padding: 0.8rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(22, 33, 43, 0.08);
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.23rem 0;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0 var(--section-space);
}

.hero-shell {
  position: relative;
  width: var(--container-wide);
  margin: 0 auto;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: -1;
}

.hero-shell::before {
  top: -4rem;
  right: 12%;
  width: 19rem;
  height: 19rem;
  background: radial-gradient(circle, rgba(37, 116, 195, 0.18), transparent 65%);
}

.hero-shell::after {
  bottom: -2rem;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(127, 197, 241, 0.2), transparent 70%);
}

.hero-grid,
.split-grid,
.article-shell,
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.95fr);
}

.hero-copy p:last-child {
  margin-bottom: 0;
}

.tag-row,
.detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 116, 195, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-panel {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(228, 237, 242, 0.88));
  box-shadow: var(--shadow);
}

.hero-logo-wrap {
  padding: 1rem;
  border-radius: 1.6rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 238, 242, 0.92));
  border: 1px solid rgba(22, 33, 43, 0.08);
}

.hero-logo-wrap img {
  border-radius: 1.2rem;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(11, 26, 41, 0.12);
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.metric-card {
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(248, 251, 253, 0.9);
  border: 1px solid rgba(22, 33, 43, 0.08);
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.15rem 0 0;
}

.impact-summary {
  max-width: 34rem;
  margin: 1.35rem 0 2rem;
}

.impact-summary-text {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-weight: 800;
}

.impact-metric {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 5.25rem;
  padding: 1rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(127, 197, 241, 0.2);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 14px 28px rgba(17, 79, 138, 0.22);
  text-align: center;
}

.impact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 251, 253, 0.82);
}

.impact-value {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-inverse);
}

.impact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.impact-card .impact-metrics {
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1rem;
}

.impact-card .impact-metric {
  min-height: 3.9rem;
  padding: 0.7rem 0.85rem;
  border-radius: 1.25rem;
}

.impact-card .impact-label {
  font-size: 0.64rem;
}

.impact-card .impact-value {
  font-size: 0.94rem;
}

.metric-value {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.page-hero {
  padding: clamp(3.8rem, 8vw, 6rem) 0 3rem;
}

.page-hero .hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
}

.page-hero-card {
  padding: 1.8rem;
}

.list-check,
.list-plain,
.article-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-check li,
.list-plain li,
.article-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.85rem;
  color: var(--text-soft);
}

.list-check li::before,
.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 0 4px rgba(37, 116, 195, 0.12);
}

.list-plain li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.7rem;
  height: 2px;
  background: rgba(22, 33, 43, 0.3);
}

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

.audit-receive-grid .step-card h3 {
  text-wrap: balance;
}

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

.step-card .text-link-compact {
  margin-top: auto;
  padding-top: 0.65rem;
  max-width: 100%;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(37, 116, 195, 0.1);
  color: var(--accent-strong);
  font-weight: 800;
}

.split-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.emphasis-card {
  padding: 2rem;
}

.stat-list {
  display: grid;
  gap: 1rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(22, 33, 43, 0.08);
}

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

.stat-row strong {
  color: var(--text);
}

.cta-band {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(127, 197, 241, 0.22), transparent 35%),
    linear-gradient(135deg, rgba(20, 34, 51, 0.97), rgba(17, 79, 138, 0.96));
  color: var(--text-inverse);
  box-shadow: var(--shadow);
}

.cta-band p,
.cta-band li {
  color: rgba(248, 251, 253, 0.82);
}

.cta-band .button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.08);
}

.quote-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 79, 138, 0.16);
  background: linear-gradient(180deg, rgba(250, 253, 255, 0.92), rgba(233, 241, 246, 0.9));
  box-shadow: var(--shadow-soft);
}

.quote-card blockquote {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.28;
  color: var(--text);
}

.quote-card cite {
  display: block;
  margin-top: 1rem;
  color: var(--text-soft);
  font-style: normal;
  font-size: 0.95rem;
}

.contact-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.form-card,
.contact-sidebar {
  padding: 2rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
  color: var(--text);
}

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

.form-note {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(31, 108, 95, 0.12);
  color: var(--success);
  font-weight: 700;
}

.form-note.is-visible {
  display: block;
}

.form-note.is-error {
  background: rgba(176, 62, 62, 0.12);
  color: #8a2626;
}

.service-area {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(22, 33, 43, 0.08);
}

.calendly-embed-shell {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(22, 33, 43, 0.08);
}

.calendly-embed-shell h3 {
  margin-bottom: 0.5rem;
}

.calendly-embed-shell p {
  margin-bottom: 1rem;
}

.calendly-embed-shell .calendly-inline-widget {
  width: 100%;
  min-width: 100% !important;
  overflow: hidden;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
}

.article-shell {
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.44fr);
  align-items: start;
}

.article-content {
  padding: 2.1rem;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.meta-pill {
  display: inline-flex;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 79, 138, 0.08);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 800;
}

.article-content h2 {
  margin-top: 2.3rem;
}

.article-content h3 {
  margin-top: 1.6rem;
}

.article-content p + .article-list,
.article-content p + .list-check {
  margin-top: -0.2rem;
}

.article-cta {
  margin: 2.4rem 0;
}

.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-card p {
  flex-grow: 1;
}

.blog-card .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.blog-tools {
  padding: 0;
  margin-bottom: 1.6rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.blog-tools::before {
  display: none;
}

.blog-search-wrap {
  display: grid;
  gap: 0.65rem;
  max-width: 58rem;
}

.blog-search-label {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

.blog-search-wrap input[type="search"] {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(22, 33, 43, 0.12);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 24px rgba(11, 26, 41, 0.05);
}

.blog-search-hint {
  margin: 0;
  color: var(--text-soft);
}

.blog-empty {
  margin-top: 1.5rem;
  padding: 1.4rem;
  text-align: center;
}

.footer {
  margin-top: var(--section-space);
  padding: 2.4rem 0;
  border-top: 1px solid rgba(22, 33, 43, 0.08);
  background: linear-gradient(180deg, rgba(239, 244, 247, 0.72), rgba(233, 239, 243, 0.9));
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.7fr));
}

.footer h3 {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-note {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(22, 33, 43, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.landing-header-shell {
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.landing-hero {
  padding: clamp(2.6rem, 6vw, 4.4rem) 0 clamp(2rem, 4vw, 3.2rem);
}

.landing-hero-grid,
.landing-convert-grid,
.landing-outcome-grid {
  display: grid;
  gap: 1.4rem;
}

.landing-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.landing-hero-title {
  max-width: 16ch;
  font-size: clamp(2.45rem, 5vw, 4.35rem);
}

.landing-hero-line {
  display: block;
  white-space: nowrap;
}

.landing-hero-copy .subhead {
  max-width: 50rem;
}

.landing-hero-note {
  margin-top: 0.9rem;
}

.landing-book-panel,
.landing-form-card {
  padding: 1.7rem;
}

.landing-why-grid .landing-why-card {
  height: 100%;
}

.landing-why-card {
  min-width: 0;
}

.landing-why-card h3 {
  text-wrap: balance;
}

.landing-why-card .list-check li {
  overflow-wrap: anywhere;
}

.landing-convert-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: start;
}

.landing-panel-copy {
  max-width: 34rem;
}

.landing-calendly-shell {
  margin-top: 1rem;
  padding-top: 0;
  border-top: 0;
}

.landing-calendly-shell .calendly-inline-widget {
  min-width: 100% !important;
  width: 100%;
  height: 640px !important;
  border-radius: 1.3rem;
  overflow: hidden;
}

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

.landing-footer {
  margin-top: 0;
}

.landing-footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.thank-you-page {
  min-height: 100vh;
}

.thank-you-main {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.thank-you-wrap {
  padding: clamp(2.8rem, 7vw, 5rem) 0;
}

.thank-you-card {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
}

.thank-you-brand {
  width: min(12rem, 46vw);
  margin: 0 auto 1.5rem;
}

.thank-you-actions {
  justify-content: center;
  margin-top: 1.3rem;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

body.is-ready .reveal {
  animation: rise-in 0.7s ease forwards;
}

body.is-ready .delay-1 {
  animation-delay: 0.08s;
}

body.is-ready .delay-2 {
  animation-delay: 0.16s;
}

body.is-ready .delay-3 {
  animation-delay: 0.24s;
}

body.is-ready .delay-4 {
  animation-delay: 0.32s;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal,
  body.is-ready .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1080px) {
  .card-grid.four-up,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split-grid,
  .page-hero .hero-grid,
  .contact-grid,
  .article-shell,
  .footer-grid,
  .landing-hero-grid,
  .landing-convert-grid,
  .landing-outcome-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .hero .hero-copy {
    order: 2;
  }

  .hero .hero-panel {
    order: 1;
  }
}

@media (max-width: 880px) {
  .header-shell {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0.75rem 0;
  }

  .nav-toggle {
    display: inline-block;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .brand-mark-header {
    width: 5.1rem;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 1rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .card-grid.two-up,
  .card-grid.three-up,
  .form-grid,
  .hero-panel-grid {
    grid-template-columns: 1fr;
  }

  .landing-header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 760px) {
  .landing-header-shell {
    grid-template-columns: 1fr;
    row-gap: 0.8rem;
    justify-items: start;
    padding: 0.85rem 0;
  }

  .landing-header-shell .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 1.2rem, 1120px);
    --container-wide: min(100vw - 1.2rem, 1220px);
    --header-height: 4.9rem;
  }

  body {
    font-size: 0.98rem;
  }

  .line-nowrap {
    white-space: normal;
  }

  .section-title-row {
    flex-direction: column;
    align-items: start;
  }

  .hero,
  .page-hero {
    padding-top: 3rem;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .impact-summary {
    max-width: 100%;
  }

  .hero-panel,
  .cta-band,
  .article-content,
  .form-card,
  .contact-sidebar,
  .quote-card,
  .emphasis-card,
  .landing-book-panel,
  .landing-form-card {
    padding: 1.4rem;
  }

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

  .landing-hero {
    padding-top: 2rem;
  }

  .landing-hero-title {
    max-width: 100%;
    font-size: clamp(2.1rem, 9vw, 2.9rem);
  }

  .landing-hero-line {
    white-space: normal;
  }

  .landing-page .hero-actions .button {
    width: 100%;
  }

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

  .landing-calendly-shell .calendly-inline-widget {
    min-width: 0 !important;
    height: 560px !important;
  }

  .thank-you-card {
    padding: 1.6rem;
  }

  .step-card .text-link-compact {
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .audit-receive-grid .step-card h3 {
    font-size: 1.12rem;
    line-height: 1.16;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .calendly-embed-shell .calendly-inline-widget {
    min-width: 0 !important;
    height: 680px !important;
  }
}
