:root {
  --ah-navy: #07356b;
  --ah-navy-deep: #062b58;
  --ah-teal: #007c83;
  --ah-teal-brand: #008e97;
  --ah-teal-pale: #e9f6f5;
  --ah-ink: #0b1f33;
  --ah-text: #263b4d;
  --ah-muted: #586b7a;
  --ah-line: #d6e3e8;
  --ah-line-strong: #b8cdd4;
  --ah-surface: #f5f9fb;
  --ah-white: #ffffff;
  --ah-warning: #9a5a00;
  --ah-warning-bg: #fff4d9;
  --ah-success: #24623e;
  --ah-success-bg: #eaf7ef;
  --ah-shadow-sm: 0 12px 35px rgba(11, 31, 51, .08);
  --ah-shadow-lg: 0 30px 80px rgba(11, 31, 51, .13);
  --ah-radius-sm: .65rem;
  --ah-radius: 1.15rem;
  --ah-radius-lg: 2rem;
  --ah-shell: 1240px;
  --ah-reading: 800px;
  --ah-header-height: 82px;
  --ah-transition: 180ms ease;
}


/* GeneratePress parent-theme compatibility */
body.ah-site,
body.ah-site #page,
body.ah-site .site,
body.ah-site .site-content,
body.ah-site .content-area,
body.ah-site .inside-article {
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
}

body.ah-site #primary,
body.ah-site .content-area {
  width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ah-header-height) + 1rem);
}

body.ah-site {
  margin: 0;
  background: var(--ah-white);
  color: var(--ah-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.ah-site * {
  box-sizing: border-box;
}

body.ah-site img,
body.ah-site svg {
  max-width: 100%;
  height: auto;
}

body.ah-site img {
  display: block;
}

body.ah-site a {
  color: var(--ah-navy);
  text-decoration-thickness: .1em;
  text-underline-offset: .18em;
}

body.ah-site a:hover {
  color: var(--ah-teal);
}

body.ah-site :where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--ah-navy);
  outline-offset: 4px;
  border-radius: .2rem;
}

body.ah-site button,
body.ah-site input,
body.ah-site select,
body.ah-site textarea {
  font: inherit;
}

:where(body.ah-site) h1,
:where(body.ah-site) h2,
:where(body.ah-site) h3,
:where(body.ah-site) h4 {
  margin-top: 0;
  color: var(--ah-ink);
  font-weight: 760;
  line-height: 1.13;
  letter-spacing: -.025em;
}

:where(body.ah-site) h1 {
  font-size: clamp(2.7rem, 6vw, 5.25rem);
}

:where(body.ah-site) h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

:where(body.ah-site) h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

body.ah-site p {
  margin-top: 0;
}

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

.ah-skip-link {
  position: fixed;
  z-index: 99999;
  top: .75rem;
  left: .75rem;
  padding: .85rem 1.1rem;
  transform: translateY(-160%);
  border-radius: .45rem;
  background: var(--ah-white);
  color: var(--ah-ink);
  font-weight: 750;
  box-shadow: var(--ah-shadow-sm);
}

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

.ah-shell {
  width: min(calc(100% - 2.5rem), var(--ah-shell));
  margin-inline: auto;
}

.ah-reading-width {
  max-width: var(--ah-reading);
}

.ah-main :where(section[id], [id].ah-anchor-target) {
  scroll-margin-top: calc(var(--ah-header-height) + 1.25rem);
}

.ah-main {
  min-height: 55vh;
  overflow: clip;
}

/* Header */
.ah-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--ah-header-height);
  border-bottom: 1px solid rgba(184, 205, 212, .7);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 32px rgba(11, 31, 51, .045);
  backdrop-filter: blur(16px);
}

.admin-bar .ah-header {
  top: 32px;
}

.ah-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--ah-header-height);
  gap: 2rem;
}

.ah-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.ah-brand img {
  width: clamp(230px, 18vw, 290px);
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
}

.ah-navigation {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ah-menu {
  display: flex;
  align-items: center;
  gap: .05rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ah-menu li {
  position: relative;
  margin: 0;
}

.ah-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .55rem .72rem;
  border-radius: .5rem;
  color: var(--ah-ink);
  font-size: .91rem;
  font-weight: 680;
  line-height: 1.2;
  text-decoration: none;
}

.ah-menu a:hover,
.ah-menu .current-menu-item > a,
.ah-menu .current_page_item > a {
  background: var(--ah-teal-pale);
  color: var(--ah-navy);
}

.ah-nav-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.ah-language-link {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ah-line-strong);
  border-radius: 50%;
  color: var(--ah-navy);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .06em;
  text-decoration: none;
}

.ah-language-link:hover {
  border-color: var(--ah-teal);
  background: var(--ah-teal-pale);
}

.ah-menu-toggle {
  display: none;
  align-items: center;
  min-height: 44px;
  padding: .45rem .65rem;
  border: 1px solid var(--ah-line-strong);
  border-radius: .55rem;
  background: var(--ah-white);
  color: var(--ah-ink);
  cursor: pointer;
}

.ah-menu-toggle-lines {
  display: grid;
  width: 23px;
  gap: 4px;
}

.ah-menu-toggle-lines span {
  display: block;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.ah-menu-toggle-label {
  margin-left: .5rem;
  font-weight: 720;
}

/* Buttons */
.ah-button,
body.ah-site a.ah-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: .55rem;
  padding: .76rem 1.15rem;
  border: 2px solid var(--ah-navy);
  border-radius: .7rem;
  background: var(--ah-navy);
  color: var(--ah-white);
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--ah-transition), border-color var(--ah-transition), color var(--ah-transition), transform var(--ah-transition), box-shadow var(--ah-transition);
}

.ah-button:hover,
body.ah-site a.ah-button:hover {
  border-color: var(--ah-navy-deep);
  background: var(--ah-navy-deep);
  color: var(--ah-white);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(7, 53, 107, .18);
}

.ah-button-secondary,
body.ah-site a.ah-button-secondary {
  border-color: var(--ah-line-strong);
  background: var(--ah-white);
  color: var(--ah-navy);
}

.ah-button-secondary:hover,
body.ah-site a.ah-button-secondary:hover {
  border-color: var(--ah-teal);
  background: var(--ah-teal-pale);
  color: var(--ah-navy);
  box-shadow: none;
}

.ah-button-teal,
body.ah-site a.ah-button-teal {
  border-color: var(--ah-teal);
  background: var(--ah-teal);
}

.ah-button-teal:hover,
body.ah-site a.ah-button-teal:hover {
  border-color: #006a70;
  background: #006a70;
}

.ah-button-small,
body.ah-site a.ah-button-small {
  min-height: 42px;
  padding: .62rem .9rem;
  font-size: .88rem;
}

.ah-button .ah-icon-svg,
.ah-card-link .ah-icon-svg,
.ah-footer-cta .ah-icon-svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* Shared sections */
.ah-section {
  position: relative;
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.ah-section-tight {
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
}

.ah-section-surface {
  background: var(--ah-surface);
}

.ah-section-teal {
  background: var(--ah-teal-pale);
}

.ah-section-dark {
  background: var(--ah-ink);
  color: #dce9ee;
}

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

.ah-section-dark a:not(.ah-button) {
  color: #87dadd;
}

.ah-section-header {
  max-width: 790px;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.ah-section-header-center {
  margin-inline: auto;
  text-align: center;
}

.ah-section-header h2 {
  margin-bottom: 1rem;
}

.ah-section-header p:last-child {
  margin-bottom: 0;
}

.ah-eyebrow {
  margin-bottom: .9rem;
  color: var(--ah-teal);
  font-size: .79rem;
  font-weight: 830;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ah-lead {
  max-width: 770px;
  color: var(--ah-text);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.ah-muted {
  color: var(--ah-muted);
}

.ah-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
  margin-top: 1.8rem;
}

.ah-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.65rem;
}

.ah-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .35rem .7rem;
  border: 1px solid var(--ah-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--ah-text);
  font-size: .82rem;
  font-weight: 650;
}

.ah-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.ah-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.ah-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--ah-line);
  border-radius: var(--ah-radius-lg);
  background: var(--ah-white);
  box-shadow: var(--ah-shadow-sm);
}

/* Hero */
.ah-hero {
  padding-top: clamp(3.25rem, 5vw, 4.75rem);
  padding-bottom: clamp(3.75rem, 6vw, 5.5rem);
  background:
    radial-gradient(circle at 88% 14%, rgba(0, 142, 151, .14), transparent 26rem),
    radial-gradient(circle at 4% 86%, rgba(7, 53, 107, .09), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #f9fcfd 100%);
}

.ah-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(7, 53, 107, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 53, 107, .025) 1px, transparent 1px);
  background-size: 40px 40px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 80%);
}

.ah-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(380px, .78fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.75rem);
}

.ah-hero h1 {
  max-width: 780px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.1rem, 4.45vw, 4.15rem);
  line-height: 1.04;
  letter-spacing: -.037em;
  text-wrap: balance;
}

.ah-hero-line {
  display: block;
}

@media (min-width: 1181px) {
  .ah-hero-line {
    white-space: nowrap;
  }
}

.ah-hero .ah-lead {
  max-width: 690px;
}

.ah-hero-note {
  display: flex;
  align-items: flex-start;
  max-width: 710px;
  gap: .75rem;
  margin-top: 1.8rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--ah-line);
  color: var(--ah-muted);
  font-size: .91rem;
}

.ah-hero-note .ah-icon-svg {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: .15rem;
  color: var(--ah-teal);
}

/* Ecosystem SVG */
.ah-ecosystem-visual {
  width: min(100%, 550px);
  margin-inline: auto;
  overflow: clip;
}

.ah-ecosystem-visual svg {
  display: block;
  overflow: hidden;
}

.ah-orbit {
  fill: none;
  stroke: #b7d9dd;
  stroke-width: 2;
  stroke-dasharray: 7 10;
}

.ah-orbit-2 {
  stroke: #cadbe5;
}

.ah-pulse {
  transform-origin: center;
  animation: ah-pulse 3.8s ease-in-out infinite;
}

.ah-pulse-two {
  animation-delay: 1.4s;
}

.ah-node {
  transform-box: fill-box;
  transform-origin: center;
  animation: ah-float 7s ease-in-out infinite;
}

.ah-node-two {
  animation-delay: 1.2s;
}

.ah-node-three {
  animation-delay: 2.4s;
}

.ah-node-four {
  animation-delay: 3.6s;
}

@keyframes ah-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes ah-pulse {
  0%, 100% { opacity: .45; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.12); }
}

/* Cards */
.ah-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--ah-line);
  border-radius: var(--ah-radius);
  background: var(--ah-white);
  box-shadow: 0 14px 40px rgba(11, 31, 51, .045);
  transition: border-color var(--ah-transition), transform var(--ah-transition), box-shadow var(--ah-transition);
}

.ah-card:hover {
  border-color: #a8c9ce;
  transform: translateY(-3px);
  box-shadow: var(--ah-shadow-sm);
}

.ah-card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  place-items: center;
  border-radius: .9rem;
  background: var(--ah-teal-pale);
  color: var(--ah-navy);
}

.ah-card-icon .ah-icon-svg {
  width: 27px;
  height: 27px;
}

.ah-card h3 {
  margin-bottom: .65rem;
}

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

.ah-card p:last-of-type {
  margin-bottom: 0;
}

.ah-card-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1.15rem;
  color: var(--ah-navy);
  font-weight: 760;
  text-decoration: none;
}

.ah-card-link:hover .ah-icon-svg {
  transform: translateX(3px);
}

.ah-card-link .ah-icon-svg {
  transition: transform var(--ah-transition);
}

.ah-status {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  margin-bottom: 1.15rem;
  padding: .25rem .55rem;
  border: 1px solid #bddad3;
  border-radius: 999px;
  background: var(--ah-success-bg);
  color: var(--ah-success);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.1;
  text-transform: uppercase;
}

.ah-status-development {
  border-color: #ead09c;
  background: var(--ah-warning-bg);
  color: var(--ah-warning);
}

.ah-status-pilot {
  border-color: #c3d5e8;
  background: #eef5fc;
  color: var(--ah-navy);
}

.ah-featured-card {
  border-top: 4px solid var(--ah-teal);
}

/* Process */
.ah-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .8rem;
  counter-reset: process;
}

.ah-process-step {
  position: relative;
  padding: 1.4rem 1.15rem;
  border: 1px solid var(--ah-line);
  border-radius: var(--ah-radius);
  background: var(--ah-white);
  counter-increment: process;
}

.ah-process-step::before {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ah-navy);
  color: var(--ah-white);
  content: counter(process, decimal-leading-zero);
  font-size: .72rem;
  font-weight: 850;
}

.ah-process-step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 32px;
  right: -13px;
  width: 26px;
  height: 2px;
  background: var(--ah-teal);
  content: "";
}

.ah-process-step h3 {
  margin-bottom: .55rem;
  font-size: 1.05rem;
}

.ah-process-step p {
  margin-bottom: 0;
  color: var(--ah-muted);
  font-size: .91rem;
}

/* Ecosystem flow */
.ah-ecosystem-block {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.ah-flow {
  display: grid;
  gap: 1rem;
}

.ah-flow-source,
.ah-flow-core,
.ah-flow-output {
  position: relative;
  padding: 1.3rem;
  border: 1px solid var(--ah-line);
  border-radius: var(--ah-radius);
  background: var(--ah-white);
}

.ah-flow-source,
.ah-flow-core {
  text-align: center;
}

.ah-flow-core {
  border-color: #89bec2;
  background: linear-gradient(135deg, #f0faf9, #eff5fb);
  box-shadow: var(--ah-shadow-sm);
}

.ah-flow-arrow {
  display: grid;
  height: 28px;
  place-items: center;
  color: var(--ah-teal);
}

.ah-flow-arrow .ah-icon-svg {
  width: 23px;
  height: 23px;
  transform: rotate(90deg);
}

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

.ah-flow-output {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-height: 82px;
  font-weight: 720;
}

.ah-flow-output .ah-icon-svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: var(--ah-teal);
}

/* Lists */
.ah-check-list,
.ah-clean-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.ah-check-list li {
  position: relative;
  margin-bottom: .72rem;
  padding-left: 1.8rem;
}

.ah-check-list li::before {
  position: absolute;
  top: .17rem;
  left: 0;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--ah-teal-pale);
  color: var(--ah-teal);
  content: "✓";
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.15rem;
  text-align: center;
}

.ah-clean-list li {
  margin-bottom: .6rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--ah-line);
}

.ah-clean-list li:last-child {
  border-bottom: 0;
}

/* Page heroes */
.ah-page-hero {
  padding-block: clamp(3.75rem, 6.5vw, 5.75rem);
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 142, 151, .13), transparent 25rem),
    linear-gradient(180deg, #f9fcfd 0%, #fff 100%);
}

.ah-page-hero .ah-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
  align-items: end;
  gap: 3rem;
}

.ah-page-hero h1 {
  max-width: 900px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.55rem, 4.9vw, 4.25rem);
  text-wrap: balance;
}

.ah-page-hero-aside {
  padding: 1.4rem;
  border: 1px solid var(--ah-line);
  border-radius: var(--ah-radius);
  background: rgba(255, 255, 255, .78);
}

.ah-page-hero-aside p:last-child {
  margin-bottom: 0;
}

/* Featured quote / principles */
.ah-quote {
  position: relative;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border-left: 5px solid var(--ah-teal);
  border-radius: 0 var(--ah-radius) var(--ah-radius) 0;
  background: var(--ah-teal-pale);
  color: var(--ah-ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 670;
  line-height: 1.55;
}

.ah-principle {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--ah-line);
}

.ah-principle:last-child {
  border-bottom: 0;
}

.ah-principle-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ah-navy);
  color: var(--ah-white);
  font-size: .8rem;
  font-weight: 850;
}

.ah-principle h3 {
  margin-bottom: .35rem;
}

.ah-principle p {
  margin-bottom: 0;
  color: var(--ah-muted);
}

/* CTA */
.ah-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--ah-radius-lg);
  background: linear-gradient(120deg, var(--ah-navy-deep), var(--ah-navy) 60%, var(--ah-teal));
  color: #dbeaf0;
  box-shadow: var(--ah-shadow-lg);
}

.ah-cta::after {
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, .045), 0 0 0 90px rgba(255, 255, 255, .03);
  content: "";
  pointer-events: none;
}

.ah-cta > * {
  position: relative;
  z-index: 1;
}

.ah-cta h2,
.ah-cta h3 {
  max-width: 770px;
  color: var(--ah-white);
}

.ah-cta p {
  max-width: 760px;
  font-size: 1.08rem;
}

.ah-cta .ah-button {
  border-color: var(--ah-white);
  background: var(--ah-white);
  color: var(--ah-navy);
}

.ah-cta .ah-button:hover {
  border-color: #e8f2f4;
  background: #e8f2f4;
  color: var(--ah-navy-deep);
}

.ah-cta .ah-button-secondary {
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
  color: var(--ah-white);
}

.ah-cta .ah-button-secondary:hover {
  border-color: var(--ah-white);
  background: rgba(255, 255, 255, .1);
  color: var(--ah-white);
}

/* Tables */
.ah-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--ah-line);
  border-radius: var(--ah-radius);
  background: var(--ah-white);
  scrollbar-gutter: stable;
}

.ah-table-wrap:focus-visible {
  outline: 3px solid var(--ah-navy);
  outline-offset: 4px;
}

.ah-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
}

.ah-table th,
.ah-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--ah-line);
  text-align: left;
  vertical-align: top;
}

.ah-table th {
  background: var(--ah-surface);
  color: var(--ah-ink);
  font-size: .86rem;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.ah-table tr:last-child td {
  border-bottom: 0;
}

/* Prose and policies */
.ah-prose {
  color: var(--ah-text);
}

.ah-prose > * + * {
  margin-top: 1.15rem;
}

.ah-prose h2 {
  margin-top: 2.8rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.ah-prose h3 {
  margin-top: 2rem;
}

.ah-prose :where(ul, ol) {
  padding-left: 1.35rem;
}

.ah-prose li + li {
  margin-top: .45rem;
}

.ah-generic-page,
.ah-error-page {
  min-height: 65vh;
}

.ah-notice {
  padding: 1rem 1.15rem;
  border: 1px solid var(--ah-line-strong);
  border-left: 5px solid var(--ah-teal);
  border-radius: var(--ah-radius-sm);
  background: var(--ah-surface);
}

.ah-notice-warning {
  border-color: #e5c88e;
  border-left-color: var(--ah-warning);
  background: var(--ah-warning-bg);
}

/* Contact form */
.ah-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.ah-contact-card {
  padding: 1.5rem;
  border: 1px solid var(--ah-line);
  border-radius: var(--ah-radius);
  background: var(--ah-surface);
}

.ah-contact-line {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding-block: .9rem;
  border-bottom: 1px solid var(--ah-line);
}

.ah-contact-line:last-child {
  border-bottom: 0;
}

.ah-contact-line .ah-icon-svg {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  margin-top: .12rem;
  color: var(--ah-teal);
}

.ah-contact-line p {
  margin-bottom: 0;
}

.ah-form {
  padding: clamp(1.35rem, 4vw, 2.3rem);
  border: 1px solid var(--ah-line);
  border-radius: var(--ah-radius-lg);
  background: var(--ah-white);
  box-shadow: var(--ah-shadow-sm);
}

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

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

.ah-field label,
.ah-field legend {
  display: block;
  margin-bottom: .38rem;
  color: var(--ah-ink);
  font-weight: 730;
}

.ah-required {
  color: #9b1c1c;
}

.ah-field input,
.ah-field select,
.ah-field textarea {
  width: 100%;
  min-height: 48px;
  padding: .72rem .78rem;
  border: 1px solid #9eb6bf;
  border-radius: .55rem;
  background: var(--ah-white);
  color: var(--ah-ink);
}

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

.ah-field input:hover,
.ah-field select:hover,
.ah-field textarea:hover {
  border-color: var(--ah-teal);
}

.ah-field-help {
  margin-top: .35rem;
  color: var(--ah-muted);
  font-size: .84rem;
}

.ah-checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: .7rem;
}

.ah-checkbox input {
  width: 20px;
  min-height: 20px;
  margin: .2rem 0 0;
}

.ah-checkbox label {
  margin: 0;
  font-weight: 500;
}

.ah-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.ah-form-status {
  margin-bottom: 1.15rem;
  scroll-margin-top: calc(var(--ah-header-height) + 1.25rem);
  padding: .9rem 1rem;
  border: 1px solid #a5cfb5;
  border-radius: var(--ah-radius-sm);
  background: var(--ah-success-bg);
  color: #174e2e;
  font-weight: 650;
}

.ah-form-status-error {
  border-color: #e0abab;
  background: #fff0f0;
  color: #7d1818;
}

/* Footer */
.ah-footer {
  padding-top: clamp(3.8rem, 7vw, 6rem);
  background: var(--ah-ink);
  color: #c7d8df;
}

.ah-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr) minmax(0, .65fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding-bottom: 3.5rem;
}

.ah-footer-brand img {
  width: min(100%, 350px);
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
}

.ah-footer-brand p {
  max-width: 500px;
  margin-top: 1.35rem;
}

.ah-footer-tagline {
  color: #8ed5d8;
  font-size: .74rem;
  font-weight: 820;
  letter-spacing: .11em;
}

.ah-footer-heading {
  margin-bottom: 1.1rem;
  color: var(--ah-white);
  font-size: 1rem;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.ah-footer-email {
  color: var(--ah-white) !important;
  font-weight: 690;
}

.ah-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.15rem;
  color: #8ed5d8 !important;
  font-weight: 720;
  text-decoration: none;
}

.ah-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ah-footer-menu li + li {
  margin-top: .65rem;
}

.ah-footer-menu a {
  color: #c7d8df !important;
  text-decoration: none;
}

.ah-footer-menu a:hover,
.ah-footer-email:hover,
.ah-footer-cta:hover {
  color: var(--ah-white) !important;
  text-decoration: underline;
}

.ah-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(214, 227, 232, .18);
  font-size: .83rem;
}

.ah-footer-bottom p {
  margin: 0;
}

/* Responsive */
@media (max-width: 1180px) {
  .ah-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  }

  .ah-menu a {
    padding-inline: .55rem;
    font-size: .86rem;
  }
}

@media (max-width: 1120px) {
  :root {
    --ah-header-height: 74px;
  }

  .ah-menu-toggle {
    display: inline-flex;
  }

  .ah-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 1.25rem;
    left: 1.25rem;
    display: none;
    max-height: calc(100dvh - 110px);
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid var(--ah-line);
    border-radius: 0 0 var(--ah-radius) var(--ah-radius);
    background: var(--ah-white);
    box-shadow: var(--ah-shadow-lg);
  }

  .ah-navigation.is-open {
    display: flex;
  }

  .ah-menu {
    align-items: stretch;
    flex-direction: column;
  }

  .ah-menu a {
    width: 100%;
    padding: .75rem;
    font-size: 1rem;
  }

  .ah-nav-actions {
    justify-content: space-between;
    padding-top: .85rem;
    border-top: 1px solid var(--ah-line);
  }

  .ah-hero-grid,
  .ah-split,
  .ah-ecosystem-block,
  .ah-contact-layout {
    grid-template-columns: 1fr;
  }

  .ah-hero-grid {
    gap: 3rem;
  }

  .ah-ecosystem-visual {
    max-width: 535px;
  }

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

  .ah-process-step:not(:last-child)::after {
    display: none;
  }

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

  .ah-page-hero .ah-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ah-page-hero-aside {
    max-width: 680px;
  }

  .ah-footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 782px) {
  .admin-bar .ah-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  .ah-shell {
    width: min(calc(100% - 1.5rem), var(--ah-shell));
  }

  .ah-brand img {
    width: 215px;
  }

  .ah-menu-toggle-label {
    display: none;
  }

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

  .ah-hero h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.35rem);
    line-height: 1.06;
  }

  :where(body.ah-site) h1 {
    font-size: clamp(2.4rem, 11vw, 3.55rem);
  }

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

  .ah-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ah-actions .ah-button {
    width: 100%;
  }

  .ah-grid-2,
  .ah-grid-3,
  .ah-grid-4,
  .ah-process,
  .ah-flow-output-grid,
  .ah-form-grid {
    grid-template-columns: 1fr;
  }

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

  .ah-ecosystem-visual {
    width: 106%;
    margin-left: -3%;
  }

  .ah-footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 430px) {
  .ah-brand img {
    width: 184px;
  }

  .ah-navigation {
    right: .75rem;
    left: .75rem;
  }

  .ah-section {
    padding-block: 4rem;
  }

  .ah-card,
  .ah-panel,
  .ah-form {
    padding: 1.2rem;
  }
}

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

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

@media (forced-colors: active) {
  .ah-button,
  .ah-card,
  .ah-panel,
  .ah-form,
  .ah-status,
  .ah-language-link {
    border: 1px solid ButtonText;
  }

  .ah-card-icon,
  .ah-process-step::before {
    forced-color-adjust: none;
  }
}

@media print {
  .ah-header,
  .ah-footer,
  .ah-actions,
  .ah-menu-toggle {
    display: none !important;
  }

  .ah-section {
    padding-block: 1.5rem;
  }

  body.ah-site {
    color: #000;
    font-size: 11pt;
  }

  body.ah-site a {
    color: #000;
    text-decoration: underline;
  }

  .ah-card,
  .ah-panel,
  .ah-cta {
    break-inside: avoid;
    box-shadow: none;
  }
}
