:root {
  --ink: #111317;
  --ink-soft: #40474f;
  --muted: #5d666f;
  --line: #d8dce1;
  --paper: #ffffff;
  --paper-alt: #f5f6f7;
  --mist: #eef1f4;
  --crimson: #7c0d11;
  --crimson-dark: #5f090d;
  --slate: #708090;
  --slate-dark: #566372;
  --silver: #c0c0c0;
  --maxw: 1180px;
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font: 16.5px/1.6 var(--font-body);
  background:
    radial-gradient(circle at 0 0, rgba(124, 13, 17, 0.08), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(112, 128, 144, 0.09), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 38%, #f4f5f7 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: #245c9f;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.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;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #94d9c9;
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
.brand,
.eyebrow,
.btn {
  font-family: var(--font-display);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.container {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(21, 24, 28, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

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

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(124, 13, 17, 0.28);
  border-radius: 999px;
  color: var(--crimson) !important;
  background: rgba(124, 13, 17, 0.03);
}

.nav-cta:hover {
  color: #fff !important;
  background: var(--crimson);
  border-color: var(--crimson);
}

.hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero::before {
  top: 54px;
  right: -110px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 13, 17, 0.12) 0%, rgba(124, 13, 17, 0) 72%);
}

.hero::after {
  left: -80px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 128, 144, 0.12) 0%, rgba(112, 128, 144, 0) 72%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: start;
}

.hero-copy {
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--crimson);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lede,
.page-lead,
.section-note {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-sub {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  box-shadow: 0 10px 24px rgba(124, 13, 17, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8d1115 0%, var(--crimson-dark) 100%);
}

.btn-secondary {
  color: var(--crimson);
  border-color: rgba(124, 13, 17, 0.22);
  background: rgba(124, 13, 17, 0.04);
}

.btn-secondary:hover {
  color: #fff;
  background: var(--crimson);
  border-color: var(--crimson);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.btn-outline:hover {
  color: var(--crimson);
  border-color: rgba(124, 13, 17, 0.22);
  background: rgba(124, 13, 17, 0.04);
}

.hero-panel,
.content-block,
.path-card,
.step-card,
.service-card,
.contact-form,
.portrait-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(17, 19, 23, 0.06);
}

.hero-panel {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.choice-card {
  position: relative;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(17, 19, 23, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 246, 248, 0.96) 100%);
}

.choice-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(180deg, var(--crimson) 0%, #b01d22 100%);
}

.choice-card:nth-child(2)::before {
  background: linear-gradient(180deg, var(--slate) 0%, var(--slate-dark) 100%);
}

.choice-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--crimson);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.choice-card:nth-child(2) .choice-label {
  color: var(--slate-dark);
}

.choice-card p {
  margin-bottom: 16px;
  color: var(--muted);
}

.micro-list,
.feature-list,
.check-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.micro-list li + li,
.feature-list li + li,
.check-list li + li {
  margin-top: 6px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(245, 246, 247, 0.92) 0%, rgba(233, 236, 240, 0.62) 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.path-grid,
.service-grid,
.step-grid,
.content-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.path-card,
.step-card,
.service-card,
.content-block {
  padding: 24px;
}

.path-card h3,
.step-card h3,
.service-card h3,
.content-block h3 {
  font-size: 1.12rem;
}

.path-card p,
.step-card p,
.service-card p,
.content-block p,
.content-block li {
  color: var(--muted);
}

.path-badge,
.service-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--crimson);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.path-card.primary {
  background:
    linear-gradient(180deg, rgba(124, 13, 17, 0.05) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.path-card.secondary {
  background:
    linear-gradient(180deg, rgba(112, 128, 144, 0.05) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.flow-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.flow-inline li {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-hero {
  padding: 72px 0 48px;
}

.page-lead {
  max-width: 760px;
}

.portrait-card {
  overflow: hidden;
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.portrait-card .portrait-copy {
  padding: 18px 20px 20px;
}

.portrait-card .portrait-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 24px;
  padding: 28px 0;
  color: #d5d8dc;
  background: linear-gradient(135deg, #15181d 0%, #1f2430 100%);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.contact-form {
  padding: 24px;
}

.field {
  margin-bottom: 16px;
}

.field label,
.checkbox-group legend {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(124, 13, 17, 0.12);
  border-color: rgba(124, 13, 17, 0.28);
}

.checkbox-group {
  border: 0;
  margin: 0 0 20px;
  padding: 0;
}

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

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.checkbox input {
  accent-color: var(--crimson);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-note {
  margin: 0 0 24px;
  color: rgba(212, 230, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 600;
}

.service-how {
  margin-top: 14px;
}

.section-note {
  margin-top: 16px;
}

.wide-block {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .path-grid,
  .service-grid,
  .step-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .wide-block {
    grid-column: auto;
  }
}

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

  .container {
    padding: 0 18px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .site-nav {
    gap: 10px 14px;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .section,
  .page-hero {
    padding: 52px 0 40px;
  }

  .hero-panel,
  .path-card,
  .step-card,
  .service-card,
  .content-block,
  .contact-form,
  .portrait-card {
    border-radius: 16px;
  }

  .checkbox-row {
    grid-template-columns: 1fr;
  }
}

/* Dark site redesign */
:root {
  --ink: #f3efe8;
  --ink-soft: #c5beb0;
  --muted: #a49d91;
  --line: rgba(255, 255, 255, 0.08);
  --paper: #2f2e2c;
  --paper-alt: #343331;
  --mist: #e4f0ff;
  --crimson: #2f74c9;
  --crimson-dark: #245c9f;
  --slate: #94d9c9;
  --slate-dark: #68a999;
  --silver: #c0c0c0;
}

body {
  background:
    radial-gradient(circle at 0 0, rgba(47, 116, 201, 0.08), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(148, 217, 201, 0.08), transparent 24%),
    linear-gradient(180deg, #2f2e2c 0%, #282725 100%);
  color: var(--ink);
}

.site-header,
.site-footer {
  background: rgba(47, 46, 44, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
}

.site-header {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

.brand {
  color: var(--ink);
}

.site-nav a {
  color: rgba(243, 239, 232, 0.72);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #d7e8ff;
}

.nav-cta {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ink) !important;
  background: rgba(255, 255, 255, 0.02);
}

.nav-cta:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff !important;
}

.site-footer {
  color: rgba(243, 239, 232, 0.7);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  box-shadow: none;
}

.btn-secondary,
.btn-outline {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
}

.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.page-hero,
.section {
  background: transparent;
}

.section.alt {
  background: rgba(255, 255, 255, 0.03);
}

.content-block,
.service-card,
.step-card,
.contact-form,
.portrait-card {
  background: rgba(34, 33, 32, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.content-block p,
.content-block li,
.service-card p,
.step-card p,
.portrait-card p,
.page-lead,
.lede,
.section-note,
.form-note,
.hero-sub {
  color: rgba(243, 239, 232, 0.76);
}

.field label,
.checkbox-group legend {
  color: var(--ink);
}

.field input,
.field textarea,
.field select {
  background: rgba(24, 24, 23, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(243, 239, 232, 0.44);
}

.checkbox {
  color: rgba(243, 239, 232, 0.78);
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.checkbox input {
  accent-color: var(--crimson);
}

.home-page {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0 0, rgba(47, 116, 201, 0.08), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(148, 217, 201, 0.08), transparent 24%),
    linear-gradient(180deg, #2f2e2c 0%, #282725 100%);
  color: var(--ink);
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page .brand,
.home-page .eyebrow,
.home-page .btn {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.home-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-header-inner {
  min-height: 82px;
}

.brand-home {
  gap: 14px;
  font-size: 1.05rem;
}

.home-nav {
  gap: 18px;
}

.home-nav a {
  color: rgba(243, 239, 232, 0.68);
  font-size: 0.95rem;
}

.home-nav-cta {
  padding: 11px 18px;
  border-radius: 14px;
}

.home-main {
  width: 100%;
}

.home-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero-inner {
  max-width: 1180px;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #d4e6ff;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-pill-icon {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 1px solid rgba(212, 230, 255, 0.9);
}

.home-title {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5.8vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 600;
}

.home-title span {
  color: var(--crimson);
}

.home-subtitle {
  max-width: 940px;
  margin: 0 0 42px;
  color: rgba(243, 239, 232, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.6;
}

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

.home-card {
  position: relative;
  padding: 28px;
  border-radius: 18px;
  background: rgba(37, 36, 34, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.home-card-primary {
  border-color: rgba(90, 149, 235, 0.88);
}

.home-card-secondary {
  border-color: rgba(108, 170, 155, 0.48);
}

.home-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.home-card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: #dfeafb;
  color: #315f99;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-card-badge-secondary {
  background: #def5ee;
  color: #2d6b61;
}

.home-card-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: #dfeafb;
  position: relative;
  display: grid;
  place-items: center;
}

.home-card-icon::before {
  content: "↗";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #5d87bb;
  font-size: 1.15rem;
  font-weight: 700;
}

.home-card-icon-secondary {
  background: #def5ee;
}

.home-card-icon-secondary::before {
  content: "↺";
  color: #4a9284;
}

.home-card h2 {
  margin-bottom: 6px;
  font-size: clamp(1.65rem, 2.1vw, 2rem);
}

.home-card-sub {
  margin-bottom: 18px;
  color: rgba(243, 239, 232, 0.62);
  font-style: italic;
}

.home-card-copy {
  max-width: 90%;
  margin-bottom: 18px;
  color: rgba(243, 239, 232, 0.74);
  font-size: 1.04rem;
  line-height: 1.6;
}

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

.home-feature-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(243, 239, 232, 0.8);
}

.home-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--crimson);
}

.home-feature-list-secondary li::before {
  background: #6fc0af;
}

.home-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.home-card-cta:hover {
  background: rgba(255, 255, 255, 0.06);
}

.home-card-cta-secondary {
  border-color: rgba(255, 255, 255, 0.14);
}

.home-trust {
  padding: 18px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  color: rgba(243, 239, 232, 0.74);
}

.home-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.home-trust-list li span {
  color: var(--crimson);
}

.home-trust-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  position: relative;
}

.home-trust-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 4px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--crimson);
  border-bottom: 2px solid var(--crimson);
  transform: rotate(-45deg);
}

.home-industry-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}

.home-industry-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.76);
  font-size: 0.9rem;
  font-weight: 600;
}

.home-industry-list .home-industry-label {
  border-color: rgba(90, 149, 235, 0.32);
  background: rgba(47, 116, 201, 0.14);
  color: #d4e6ff;
}

.home-proof-section {
  padding-top: 28px;
}

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

.home-proof-card,
.home-testimonial {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.home-proof-card {
  padding: 24px;
}

.home-proof-card-accent {
  background: linear-gradient(180deg, rgba(47, 116, 201, 0.16) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.home-proof-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: #d4e6ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-proof-card p {
  margin-bottom: 0;
  color: rgba(243, 239, 232, 0.82);
  font-size: 1.02rem;
}

.home-section {
  padding: 42px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-section-divider {
  padding-top: 28px;
}

.home-section-head {
  max-width: 920px;
  margin-bottom: 24px;
}

.home-kicker {
  margin: 0 0 10px;
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.home-stat-card {
  padding: 22px;
  border-radius: 14px;
  background: rgba(35, 34, 32, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-stat-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 600;
}

.home-step-card {
  position: relative;
  padding-top: 18px;
}

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

.home-step-track {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.home-step-track::before {
  content: "";
  display: block;
  height: 100%;
  background: var(--crimson);
  border-radius: inherit;
}

.home-step-track-full::before { width: 100%; }
.home-step-track-mid::before { width: 66%; }
.home-step-track-low::before { width: 34%; }
.home-step-track-lowest::before { width: 16%; }

.home-step-number {
  display: block;
  margin-bottom: 16px;
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
}

.home-step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.home-step-card p {
  color: rgba(243, 239, 232, 0.72);
}

.home-about-strip {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-testimonial-section {
  padding-top: 12px;
}

.home-testimonial {
  margin: 0;
  padding: 28px;
}

.home-testimonial p {
  margin-bottom: 14px;
  color: rgba(243, 239, 232, 0.88);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.home-testimonial cite,
.quote-block cite {
  color: rgba(243, 239, 232, 0.66);
  font-style: normal;
}

.home-about-inner {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.home-avatar {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #d9e9fb;
  color: #345f99;
  font-weight: 700;
  font-size: 1rem;
}

.home-about-title {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 600;
}

.home-about-copy p {
  margin-bottom: 10px;
  color: rgba(243, 239, 232, 0.72);
}

.home-veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(243, 239, 232, 0.84);
  background: rgba(255, 255, 255, 0.03);
}

.home-veteran-badge span {
  color: #c79d4d;
}

.home-cta-section {
  padding: 46px 0 40px;
  text-align: center;
}

.home-cta-inner {
  max-width: 860px;
}

.home-cta-inner h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.home-cta-inner p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(243, 239, 232, 0.74);
  font-size: 1.08rem;
}

.home-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.home-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0;
}

.home-footer-inner {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.home-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

.quote-block {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.quote-block p {
  margin-bottom: 12px;
}

.home-footer nav a {
  color: rgba(243, 239, 232, 0.72);
  text-decoration: none;
}

.home-footer nav a:hover {
  color: #fff;
}

.about-identity {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.about-portrait {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-identity-copy h2 {
  margin-bottom: 10px;
}

.about-identity-copy p {
  margin-bottom: 0;
}

.blog-index-shell {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4.5rem;
}

.blog-index-header {
  max-width: 40rem;
}

.blog-index-eyebrow {
  display: block;
  margin-bottom: 0.65rem;
  color: #d4e6ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-index-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.blog-index-copy {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: rgba(243, 239, 232, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.blog-index-card,
.blog-index-empty {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(34, 33, 32, 0.94);
  transition: border-color 160ms ease, transform 160ms ease;
}

.blog-index-card-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.blog-index-card:hover {
  border-color: rgba(148, 217, 201, 0.28);
  transform: translateY(-2px);
}

.blog-index-card-title {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.25;
}

.blog-index-card-copy {
  margin: 0 0 1.25rem;
  color: rgba(243, 239, 232, 0.7);
  font-size: 0.96rem;
  line-height: 1.7;
}

.blog-index-card-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.blog-index-card-date {
  color: rgba(243, 239, 232, 0.48);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.blog-index-card-flag {
  color: #d4e6ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-index-empty {
  margin-top: 2.5rem;
}

.blog-index-empty h2 {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.2;
}

.blog-index-empty p {
  margin: 0.75rem 0 0;
  color: rgba(243, 239, 232, 0.7);
  font-size: 0.96rem;
  line-height: 1.7;
}

.blog-post {
  width: min(100%, 46rem);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4.5rem;
}

.post-header {
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.post-header h1 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.post-series {
  margin-bottom: 0.75rem;
  color: #d4e6ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.post-meta {
  margin: 0.9rem 0 1.25rem;
  color: rgba(243, 239, 232, 0.58);
  font-size: 0.9rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.blog-post .tag {
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(47, 116, 201, 0.35);
  border-radius: 999px;
  background: rgba(47, 116, 201, 0.14);
  color: #d4e6ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.post-content {
  color: rgba(243, 239, 232, 0.84);
  font-size: 1.02rem;
  line-height: 1.82;
}

.post-content h2 {
  margin: 2.8rem 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.15;
}

.post-content p,
.post-content ul,
.post-content ol,
.post-content blockquote {
  margin: 0 0 1.2rem;
}

.post-content hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.post-content ul,
.post-content ol {
  padding-left: 1.4rem;
}

.post-content li + li {
  margin-top: 0.5rem;
}

.post-content blockquote {
  padding: 1rem 1.1rem;
  border-left: 3px solid rgba(148, 217, 201, 0.6);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.03);
}

.post-content a {
  color: #d4e6ff;
}

.lead-magnet {
  margin: 3rem 0 0;
  padding: 2rem;
  border: 1px solid rgba(47, 116, 201, 0.48);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.lead-magnet h3 {
  margin-bottom: 0.75rem;
  color: #d4e6ff;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.lead-magnet p {
  max-width: 44rem;
  margin-bottom: 0;
  color: rgba(243, 239, 232, 0.78);
}

.lead-magnet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.yt-wrapper {
  position: relative;
  height: 0;
  margin: 2rem 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding-bottom: 56.25%;
}

.yt-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 980px) {
  .home-split-grid,
  .home-stats-grid,
  .home-steps-grid,
  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .blog-index-grid {
    grid-template-columns: 1fr;
  }

  .home-about-inner {
    grid-template-columns: 1fr;
  }

  .home-card-copy {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
  }

  .home-header-inner {
    gap: 14px;
  }

  .home-nav {
    width: 100%;
    gap: 10px 12px;
  }

  .home-nav-cta {
    margin-left: 0;
  }

  .home-hero {
    padding: 42px 0 30px;
  }

  .home-title {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }

  .home-card {
    padding: 22px;
  }

  .home-step-card,
  .home-stat-card {
    padding: 18px;
  }

  .home-footer-inner {
    justify-content: center;
    text-align: center;
  }

  .about-identity {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    max-width: 140px;
  }

  .blog-index-shell {
    padding: 2.5rem 1rem 3.5rem;
  }

  .blog-index-title {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .blog-index-card,
  .blog-index-empty {
    padding: 1.25rem;
  }

  .blog-post {
    padding: 2.5rem 1rem 3.5rem;
  }

  .post-header {
    margin-bottom: 1.8rem;
    padding-bottom: 1.25rem;
  }

  .post-content {
    font-size: 1rem;
    line-height: 1.76;
  }
}

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

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