/* Azuro Health — Life Care inspired warm premium */
:root {
  --cream: #fbf8f2;
  --cream-dark: #f3efe6;
  --ink: #2b555b;
  --ink-soft: #3d6d74;
  --ink-muted: #4a6569;
  --clinical: #fbf8f2;
  --clinical-deep: #f3efe6;
  --white: #ffffff;
  --teal: #2b555b;
  --teal-dark: #23484d;
  --cyan: #5a8f96;
  --cyan-pale: rgba(43, 85, 91, 0.1);
  --teal-pale: rgba(43, 85, 91, 0.08);
  --glass: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(43, 85, 91, 0.12);
  --border: rgba(43, 85, 91, 0.12);
  --border-fine: rgba(43, 85, 91, 0.18);
  --on-dark: #fbf8f2;
  --on-dark-muted: #c5d4de;
  --shadow: 0 8px 32px rgba(43, 85, 91, 0.08);
  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-mono: "Montserrat", system-ui, sans-serif;
  --container: min(1180px, calc(100% - 3rem));
  --header-h: 5.5rem;
  --radius-pill: 999px;
  --radius-card: 24px;
  --radius-img: 24px;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

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

body {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--cyan-pale); color: var(--ink); }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.container { width: var(--container); max-width: 100%; margin-inline: auto; }

main {
  overflow-x: clip;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--on-dark);
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--cyan); outline-offset: 2px; }

.kicker {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.section-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
}

.section-name {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.section-label {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-label--light .section-name { color: var(--on-dark-muted); }

.display-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--teal);
}
.display-heading em { font-style: normal; font-weight: 800; }
.display-heading--light { color: var(--on-dark); }
.display-heading--light em { color: var(--cyan); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  overflow-x: clip;
  max-width: 100%;
}

.site-header.is-scrolled,
.site-header.is-nav-open {
  background: var(--cream);
  box-shadow: none;
}

.site-header__rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  width: min(var(--container), 100%);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
  min-width: 0;
}

.logo { flex-shrink: 0; }
.logo__img { height: 2.25rem; width: auto; }

.site-header .header-cta {
  display: none;
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex: 1;
}
.nav-desktop a:not(.btn) {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--teal);
  transition: color 0.2s;
}
.nav-desktop a:not(.btn):hover { color: var(--ink-soft); }
.nav-desktop a.is-active:not(.btn) { font-weight: 700; }

.nav-toggle {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 2.25rem;
  height: 2.25rem;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.nav-mobile-panel {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  width: 100%;
  max-width: 100%;
  background: var(--cream);
  z-index: 99;
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s var(--ease), opacity 0.3s, visibility 0.3s;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  clip-path: inset(0 100% 0 0);
}
.nav-mobile-panel.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}

.site-header > #nav-mobile { display: none; }

.nav-mobile {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.25rem;
  gap: 0.25rem;
}
.nav-mobile a:not(.btn) {
  font-size: 1.125rem;
  font-weight: 450;
  padding: 0.875rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.nav-mobile .btn { margin-top: 1.5rem; }

/* Language switcher — desktop nav + mobile menu only (no header toolbar) */
.lang-switch {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
}
.lang-switch--nav { margin-inline: 0.25rem 0; }
.nav-desktop .lang-switch--nav { display: none; }
.lang-switch__link {
  color: var(--ink-muted);
  padding: 0.25rem 0.125rem;
  transition: color 0.2s;
}
.lang-switch__link:hover,
.lang-switch__link:focus-visible { color: var(--ink-soft); }
.lang-switch__link.is-active { color: var(--teal); font-weight: 700; }
.lang-switch__sep { color: var(--border); user-select: none; }
.nav-mobile .lang-switch--nav {
  justify-content: center;
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .nav-desktop .lang-switch--nav { display: flex; }
}

body.is-nav-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 1023px) {
  .site-header__rail {
    width: 100%;
    padding-inline: 1.5rem;
  }
  .logo__img { max-width: 9.5rem; }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .site-header .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.65rem 1.35rem 0.65rem 1.6rem;
  border-radius: var(--radius-pill);
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm { padding: 0.5rem 1rem 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn--full { width: 100%; }
.btn--teal { background: var(--teal); color: var(--cream); }
.btn--teal:hover { background: var(--ink-soft); }
.btn--ink { background: var(--teal); color: var(--cream); }
.btn--ink:hover { background: var(--ink-soft); }
.btn--ghost {
  color: var(--teal);
  border: 1.5px solid var(--teal);
  background: transparent;
}
.btn--ghost:hover { background: var(--teal-pale); }

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.2);
  font-size: 0.8rem;
  line-height: 1;
}
.btn--ghost .btn__icon { background: var(--teal-pale); }

.link-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal-dark);
  transition: gap 0.25s;
}
.link-teal:hover { gap: 0.75rem; }

.hero {
  position: relative;
  padding: 3rem 0 0;
  background: var(--cream);
  overflow: hidden;
}

.hero__grid-bg { display: none; }

.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: min(var(--container), 100%);
  max-width: 100%;
  margin-inline: auto;
  padding-bottom: 2.5rem;
  align-items: start;
}

.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--teal);
  max-width: none;
}
.hero__title-accent { display: inline; color: var(--teal); }
.hero__title-sub { display: none; }

.hero__copy .hero__lead { display: none; }
.hero__copy .hero__actions { display: none; }
.hero__copy .hero__meta { display: none; }

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
  min-width: 0;
}

.hero__lead {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--teal);
  font-weight: 500;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__visual-wrap {
  position: relative;
  width: min(var(--container), 100%);
  max-width: 100%;
  margin-inline: auto;
  padding-bottom: 3.5rem;
}

.hero__visual {
  margin: 0;
  width: 100%;
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--white);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero__visual-frame { display: none; }

.hero__badge {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--cream);
  box-shadow: var(--shadow);
}

.hero__strip { display: none; }

@media (min-width: 768px) {
  .hero__layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    padding-bottom: 3rem;
  }
  .hero__aside { justify-self: end; padding-top: 0.5rem; }
}

.vision { padding: 5rem 0; background: var(--white); border-radius: 48px 48px 0 0; }
.vision__intro { margin-bottom: 4rem; }
.vision__lede {
  max-width: 42rem;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--ink-muted);
  line-height: 1.8;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.metrics__track { display: contents; }
.metrics__item {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}
.metrics__value {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.metrics__value span { font-size: 0.55em; color: var(--cyan); }
.metrics__label {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .metrics { grid-template-columns: repeat(4, 1fr); }
}

.thesis__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.thesis__row:last-child { border-bottom: none; }
.thesis__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.1em;
  padding-top: 0.25rem;
}
.thesis__body h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.thesis__body p { color: var(--ink-muted); max-width: 38rem; }

.security-band {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}
.security-band h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--teal);
}
.security-band__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.security-band__tags li {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--teal);
}

.ecosystem {
  padding: 5rem 0;
  background: var(--cream);
  color: var(--teal);
}
.ecosystem__header { margin-bottom: 3rem; text-align: center; }
.ecosystem .display-heading--light { color: var(--teal); }
.ecosystem .section-name { color: var(--ink-muted); }

.stack-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.stack-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.stack-item:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(43, 85, 91, 0.12); }
.stack-item__index {
  display: none;
}
.stack-item__head {
  padding: 1.75rem 1.75rem 0;
}
.stack-item__head h2,
.stack-item__head h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
}
.stack-item__content {
  padding: 0.75rem 1.75rem 1.75rem;
}
.stack-item__content p {
  color: var(--ink-muted);
  max-width: none;
}
.stack-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.stack-item__tags li {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--teal-pale);
  border: none;
  color: var(--teal);
}

@media (min-width: 768px) {
  .stack-list { grid-template-columns: repeat(3, 1fr); }
  .stack-item { display: flex; }
}

.arch {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}
.arch__title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  text-align: center;
}
.arch__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  background: transparent;
}
.arch__cell {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  background: transparent;
  padding: 0.75rem 0;
  text-align: left;
  min-width: 0;
}
.arch__cell strong {
  display: block;
  font-weight: 700;
  color: var(--teal);
}
.arch__cell span {
  display: block;
  color: var(--ink-muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@media (min-width: 640px) {
  .arch__grid { grid-template-columns: repeat(2, 1fr); }
  .arch__cell { padding: 0.75rem; align-items: center; text-align: center; }
}

@media (min-width: 768px) {
  .arch__grid { grid-template-columns: repeat(4, 1fr); }
}

.governance { padding: 7rem 0; background: var(--white); }
.governance__frame {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
.governance__quote {
  margin: 1.5rem 0;
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-radius: var(--radius-card);
  border-left: 4px solid var(--teal);
  font-weight: 500;
  color: var(--teal);
}
.governance__text {
  color: var(--ink-muted);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}
.governance__tree {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.governance__tree li {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 0.25rem;
}
.governance__tree li:last-child { border-bottom: none; }
.governance__tree-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.governance__tree strong { font-size: 1rem; font-weight: 600; color: var(--teal); }
.governance__tree span:last-child { font-size: 0.8125rem; color: var(--ink-muted); }

@media (min-width: 960px) {
  .governance__frame { grid-template-columns: 1.2fr 0.8fr; }
}

.contact { padding: 5rem 0; background: var(--cream); }
.contact__shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  width: 100%;
  min-width: 0;
}
.contact__note {
  margin-top: 1.25rem;
  color: var(--ink-muted);
  max-width: 24rem;
}
.contact__intro {
  margin-bottom: 2.5rem;
}
.contact__aside {
  min-width: 0;
  width: 100%;
}
.contact__address {
  margin-top: 2rem;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.contact__address a { color: var(--teal-dark); font-weight: 500; }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  min-width: 0;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  width: 100%;
}
.form-field label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.form-optional { font-weight: 400; color: var(--ink-muted); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font: inherit;
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field select {
  cursor: pointer;
  appearance: none;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232b555b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  text-overflow: ellipsis;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-pale);
}
.form-field textarea { resize: vertical; min-height: 6rem; }
.form-status {
  margin-top: 0;
  font-size: 0.875rem;
  color: var(--teal-dark);
  min-height: 1.25rem;
}

@media (max-width: 767px) {
  .contact { padding: 3rem 0; }
  .contact__shell { gap: 2rem; }
  .contact__form { padding: 1.25rem 1rem; border-radius: 20px; }
  .form-row { gap: 1rem; }
  .contact__form { gap: 1rem; }
}

@media (min-width: 960px) {
  .contact__shell:not(.contact__shell--form) { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
  .contact__intro { margin-bottom: 3rem; }
  .contact__shell--form {
    grid-template-columns: 1fr;
    max-width: 44rem;
  }
  .form-row { grid-template-columns: 1fr 1fr; }
}

.site-footer {
  background: var(--cream-dark);
  color: var(--ink-muted);
  padding: 4rem 0 0;
  border-top: 1px solid var(--border);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.site-footer__legal {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: var(--ink-muted);
}
.site-footer__col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer__col a { font-size: 0.875rem; transition: color 0.2s; }
.site-footer__col a:hover { color: var(--teal); }
.site-footer__bottom {
  padding: 1.5rem 0;
  font-size: 0.75rem;
  border-top: 1px solid var(--border);
  color: var(--ink-muted);
}

@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
}

.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.page-inner { background: var(--cream); }
.page-inner .site-header { background: var(--cream); }

.page-hero {
  padding: 2.5rem 0 3rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-top: 1rem;
  color: var(--teal);
}
.page-hero__title em { font-style: normal; color: var(--teal-dark); }
.page-hero__lead {
  max-width: 40rem;
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  color: var(--ink-muted);
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}
.breadcrumb a:hover { color: var(--teal-dark); }

.page-section { padding: 4rem 0; }
.page-section--white { background: var(--white); }
.page-section--content { padding: 2rem 0 4rem; }
.page-section--metrics { padding: 0 0 3rem; background: var(--cream); }

.ecosystem--page {
  padding: 3rem 0 4rem;
  background: var(--cream);
}
.ecosystem--page__arch { padding-bottom: 0; }

.contact--page {
  padding: 0 0 4rem;
}

.contact__shell--form {
  grid-template-columns: 1fr;
  max-width: 42rem;
  margin-inline: auto;
  gap: 0;
}

.page-hero .contact__address--hero {
  margin-top: 1.75rem;
  margin-bottom: 0;
}

.page-hero + .contact--page {
  padding-top: 0;
  margin-top: -0.5rem;
}

@media (max-width: 767px) {
  .contact--page { padding-bottom: 3rem; }
  .page-hero + .contact--page { margin-top: 0; }
}

.security-band p {
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 42rem;
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .nav-desktop { gap: 1rem; }
  .nav-desktop a:not(.btn) { font-size: 0.8125rem; }
  .header-cta.btn--sm { padding: 0.45rem 0.85rem 0.45rem 1rem; font-size: 0.75rem; }
}
.prose { max-width: 42rem; }
.prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--teal);
}
.prose p { color: var(--ink-muted); margin-bottom: 1.25rem; line-height: 1.8; }
.prose ul { list-style: none; padding: 0; margin: 1rem 0; }
.prose li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--ink-muted);
  line-height: 1.75;
}
.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.prose li strong { color: var(--teal); font-weight: 600; }

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  color: var(--teal);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.detail-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.detail-card__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--teal);
  letter-spacing: 0.1em;
}
.detail-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--teal); margin: 0.75rem 0; }
.detail-card p { font-size: 0.9375rem; color: var(--ink-muted); line-height: 1.7; }

@media (min-width: 768px) {
  .detail-grid { grid-template-columns: repeat(3, 1fr); }
}

.faq-list { max-width: 52rem; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-card);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--teal);
  transition: background 0.2s;
}
.faq-item__trigger:hover,
.faq-item.is-open .faq-item__trigger { background: var(--teal-pale); }
.faq-item__trigger::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--teal);
  transition: transform 0.3s;
}
.faq-item.is-open .faq-item__trigger::after { transform: rotate(45deg); }
.faq-item__content {
  padding: 0 1.75rem 1.5rem;
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.faq-item__content[hidden] { display: none; }

.related-nav {
  padding: 3rem 0 5rem;
  background: var(--cream);
}
.related-nav__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.related-nav__links { display: flex; flex-wrap: wrap; gap: 1rem; }
.related-nav__links a {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  color: var(--ink-muted);
  transition: border-color 0.2s, color 0.2s;
}
.related-nav__links a:hover { border-color: var(--teal); color: var(--teal-dark); }

.legal-prose { max-width: 42rem; margin-inline: auto; }
.legal-prose h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--teal);
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p, .legal-prose li {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.8;
}
.legal-prose a { color: var(--teal-dark); font-weight: 500; }
.legal-prose a:hover { color: var(--teal); }
.legal-prose ul { list-style: disc; padding-left: 1.25rem; margin: 0.75rem 0; }

.error-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.error-page h1 {
  font-size: 4rem;
  font-family: var(--font-mono);
  color: var(--teal);
  font-weight: 500;
}
.error-page p { color: var(--ink-muted); margin: 1rem 0 2rem; }

.metrics--page { margin-bottom: 0; }

.values {
  padding: 4rem 0 5rem;
  background: var(--cream);
}
.values__header { text-align: center; margin-bottom: 3rem; }
.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(43, 85, 91, 0.1); }
.value-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--teal);
}
.value-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--teal); margin-bottom: 0.6rem; }
.value-card p { font-size: 0.9375rem; color: var(--ink-muted); line-height: 1.7; }

@media (min-width: 640px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values__grid { grid-template-columns: repeat(4, 1fr); } }

.cta-band {
  padding: 5rem 0;
  background: var(--teal);
  text-align: center;
  border-radius: 48px 48px 0 0;
}
.cta-band .kicker { color: rgba(251, 248, 242, 0.72); }
.cta-band__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--cream);
  margin: 0.75rem 0 2rem;
}
.cta-band .btn--teal { background: var(--cream); color: var(--teal); }
.cta-band .btn--teal:hover { background: var(--white); }

.section-label { display: none; }
.related-nav__links a { border-radius: var(--radius-pill); }
.detail-card { border-radius: var(--radius-card); box-shadow: var(--shadow); }

/* ── Mobile responsive polish ── */
@media (max-width: 767px) {
  :root {
    --container: min(1180px, calc(100% - 2rem));
    --header-h: 4.75rem;
  }

  .hero { padding-top: 2rem; }
  .hero__layout { gap: 1.5rem; padding-bottom: 2rem; }
  .hero__title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .hero__visual-wrap { padding-bottom: 2.5rem; }
  .hero__badge {
    width: 3rem;
    height: 3rem;
    bottom: 1.25rem;
    left: 0.75rem;
  }

  .values { padding: 3rem 0 3.5rem; }
  .values__header { margin-bottom: 2rem; }
  .value-card { padding: 1.5rem 1.25rem; }

  .vision {
    padding: 3.5rem 0;
    border-radius: 32px 32px 0 0;
  }
  .vision__intro { margin-bottom: 2.5rem; }
  .vision__lede { font-size: 1rem; }

  .metrics { gap: 0.75rem; margin-bottom: 2rem; }
  .metrics__item { padding: 1.35rem 1rem; }
  .metrics__value { font-size: clamp(1.5rem, 6vw, 2rem); }
  .metrics__label { font-size: 0.75rem; }

  .thesis__row {
    gap: 0.75rem;
    padding: 1.75rem 0;
    grid-template-columns: 2.5rem 1fr;
  }
  .thesis__body h3 { font-size: 1.125rem; }

  .security-band {
    margin-top: 2rem;
    padding: 1.25rem 1rem;
  }

  .ecosystem { padding: 3.5rem 0; }
  .ecosystem__header { margin-bottom: 2rem; }
  .stack-item__head { padding: 1.25rem 1.25rem 0; }
  .stack-item__content { padding: 0.65rem 1.25rem 1.25rem; }

  .arch {
    margin-top: 2rem;
    padding: 1.25rem 1rem;
  }
  .arch__title { margin-bottom: 1rem; }

  .governance { padding: 4rem 0; }
  .governance__frame { gap: 2.5rem; }
  .governance__quote {
    padding: 1.25rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.65;
  }
  .governance__tree li { padding: 1.25rem 1rem; }

  .contact { padding: 3rem 0; }
  .contact__shell { gap: 2rem; }
  .contact__address { margin-top: 1.5rem; word-break: break-word; }

  .page-hero { padding: 1.75rem 0 2.25rem; }
  .page-hero__title { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .page-hero__lead { font-size: 1rem; }
  .page-section { padding: 2.5rem 0; }
  .page-section--content { padding: 1.5rem 0 2.5rem; }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
  }
  .detail-card { padding: 1.5rem 1.25rem; }

  .faq-item__trigger {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1.45;
  }
  .faq-item__content { padding: 0 1.25rem 1.25rem; }

  .related-nav { padding: 2rem 0 3rem; }

  .cta-band {
    padding: 3rem 0;
    border-radius: 32px 32px 0 0;
  }
  .cta-band__title { margin-bottom: 1.25rem; }

  .site-footer { padding-top: 3rem; }
  .site-footer__grid { gap: 2rem; padding-bottom: 2rem; }

  .display-heading { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .btn--ghost { width: 100%; justify-content: center; }
}
