/* BNHS by Healodex — landing styles
   Palette: institutional white + healthcare green/blue accent. */

:root {
  --green-900: #0b3f37;
  --green-700: #0f5b4f;
  --green-600: #137a6b;
  --green-500: #2aa58e;
  --green-50: #ecf7f4;

  --blue-700: #0b4a73;
  --blue-500: #1d76b8;
  --blue-50: #eaf3fb;

  --ink-900: #0e1b1f;
  --ink-700: #233039;
  --ink-500: #4d5a63;
  --ink-300: #8895a0;
  --ink-100: #d8dee3;
  --ink-50: #f3f6f8;

  --bg: #ffffff;
  --tinted: #f7faf9;
  --dark: #0b3f37;

  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm:
    0 1px 2px rgba(14, 27, 31, 0.06), 0 1px 1px rgba(14, 27, 31, 0.04);
  --shadow-md: 0 4px 14px rgba(14, 27, 31, 0.08);
  --shadow-lg: 0 12px 32px rgba(14, 27, 31, 0.1);

  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Reusable image-card helpers (used by .how-overview / .kit-photo / .app-card figure) */
.image-card {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.image-card > picture,
.image-card > img {
  display: block;
  width: 100%;
  height: auto;
}
.workflow-image {
  background: #f8fafc;
}
.workflow-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
a {
  color: var(--green-700);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--green-700);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--ink-100);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-900);
}
.brand:hover {
  text-decoration: none;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
}
.brand-mark img {
  height: 48px;
  width: auto;
  display: block;
}
.brand-mark-inline img {
  height: 28px;
  width: auto;
  display: block;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong {
  font-size: 18px;
  letter-spacing: 0.3px;
}
.brand-text em {
  font-style: normal;
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 500;
}
.brand-divider {
  display: inline-block;
  width: 1px;
  height: 26px;
  background: var(--ink-100);
  margin: 0 4px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
}
.brand-logo img {
  height: 28px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .brand-divider,
  .brand-logo {
    display: none;
  }
}

.primary-nav {
  display: flex;
  gap: 22px;
}
.primary-nav a {
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover {
  color: var(--green-700);
  border-color: var(--green-500);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-700);
  margin: 4px 0;
  border-radius: 2px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--ink-100);
  padding: 8px 24px 16px;
}
.mobile-nav a {
  padding: 12px 0;
  color: var(--ink-700);
  border-bottom: 1px solid var(--ink-50);
  font-weight: 500;
}
.mobile-nav.open {
  display: flex;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition:
    transform 0.04s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
  cursor: pointer;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--green-600);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--blue-500);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--blue-700);
}
.btn-ghost {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-700);
}
.btn-ghost:hover {
  background: var(--green-50);
}
.btn[aria-disabled="true"],
.btn.disabled {
  opacity: 0.55;
  pointer-events: none;
}

/* Hero */
.hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  background: linear-gradient(180deg, #f4faf8 0%, #ffffff 65%);
  border-bottom: 1px solid var(--ink-100);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-bg-blob--green {
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(42, 165, 142, 0.35),
    transparent 65%
  );
  top: -160px;
  right: -120px;
}
.hero-bg-blob--blue {
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(29, 118, 184, 0.25),
    transparent 65%
  );
  bottom: -180px;
  left: -120px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 91, 79, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 91, 79, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 30%,
    #000 30%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  opacity: 0.45;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Stacked hero (text on top, wide 16:9 image below) — preserves full image */
.hero-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  text-align: center;
}
.hero-stack .hero-copy {
  xmax-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stack .lede,
.hero-stack .hero-desc {
  margin-left: auto;
  margin-right: auto;
}
.hero-stack .cta-row {
  justify-content: center;
}

/* Program lockup — BNHS by [Healodex logo] */
.hero-program {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  color: var(--ink-900);
}
.hero-program-mark {
  display: inline-flex;
  align-items: center;
}
.hero-program-mark img {
  height: 22px;
  width: auto;
  display: block;
}
.hero-program strong {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 17px;
  color: var(--green-900);
}
.hero-program-by {
  color: var(--ink-500);
  font-size: 13.5px;
  font-weight: 500;
}
.hero-program-logo {
  display: inline-flex;
  align-items: center;
}
.hero-program-logo img {
  height: 22px;
  width: auto;
  display: block;
}

/* Quiet alignment strip below the image */
.hero-align {
  width: 100%;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero-align-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  padding-right: 8px;
  border-right: 1px solid var(--ink-100);
}
.hero-align ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.hero-align li {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-align li + li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-500);
  margin-right: 10px;
  margin-left: -10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-900);
  background: var(--green-50);
  padding: 7px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
  border: 1px solid #cfe7e0;
}
.eyebrow--flag .flag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 4px rgba(19, 122, 107, 0.15);
}

.hero-title {
  font-size: clamp(36px, 5.2vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--ink-900);
}
.hero-title-accent {
  display: block;
  background: linear-gradient(
    90deg,
    var(--green-700) 0%,
    var(--green-500) 60%,
    var(--blue-500) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.lede {
  font-size: clamp(17px, 1.55vw, 20px);
  color: var(--ink-700);
  margin: 0 0 14px;
  font-weight: 500;
  max-width: 60ch;
}
.hero-supporting {
  font-size: 15px;
  color: var(--ink-500);
  margin: 0 0 14px;
  max-width: 80ch;
  line-height: 1.55;
}
.hero-statement {
  font-size: 15px;
  color: var(--ink-700);
  font-weight: 600;
  margin: 0 0 18px;
  max-width: 60ch;
  line-height: 1.55;
  border-left: 3px solid var(--green-500);
  padding: 4px 0 4px 12px;
}
.hero-desc {
  color: var(--ink-500);
  max-width: 56ch;
  font-size: 15.5px;
  margin: 0;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 12px;
}
.btn-arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.2s ease;
}
.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

/* Hero visual (image) — wide 16:9, near-full-width, no cropping */
.hero-visual {
  position: relative;
  margin: 0;
  width: 100%;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--green-50), #eaf3fb);
  padding: 10px;
  box-shadow:
    0 30px 60px -22px rgba(11, 63, 55, 0.22),
    0 18px 36px -22px rgba(29, 118, 184, 0.15);
}
.hero-image-wrap > picture {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.hero-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #ffffff;
}

.hero-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-badge--top {
  top: -16px;
  left: 24px;
}
.hero-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2aa58e;
  box-shadow: 0 0 0 4px rgba(42, 165, 142, 0.2);
  animation: heroPulse 2.4s ease-in-out infinite;
}
@keyframes heroPulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(42, 165, 142, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(42, 165, 142, 0.05);
  }
}

.hero-badge--bottom {
  bottom: -22px;
  right: 24px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-badge-stat {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.hero-badge-stat strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -0.01em;
}
.hero-badge-stat span {
  font-size: 11.5px;
  color: var(--ink-500);
  font-weight: 500;
}
.hero-badge-divider {
  width: 1px;
  height: 28px;
  background: var(--ink-100);
}

.flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  justify-content: center;
}
.flow .node {
  background: var(--ink-50);
  color: var(--ink-900);
  border: 1px solid var(--ink-100);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.flow .node.accent {
  background: var(--green-50);
  color: var(--green-900);
  border-color: #cbe7df;
}
.flow .arrow {
  color: var(--ink-300);
  font-weight: 700;
}
.flow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
}

.flow-wrap {
  gap: 10px 12px;
}

/* Sections */
.section {
  padding: 72px 0;
}
.section-tinted {
  background: var(--tinted);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
.section-dark {
  background: var(--green-900);
  color: #d8efe9;
}
.section-dark a {
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.section-head p {
  color: var(--ink-500);
  margin: 0;
}
.section-head.light h2 {
  color: #fff;
}
.section-head.light p {
  color: #b8d8d1;
}

/* Generic Cards */
.grid {
  display: grid;
  gap: 18px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.card h4 {
  margin: 0 0 6px;
  font-size: 15.5px;
}
.card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 14.5px;
}
.card ul {
  margin: 4px 0 0;
  padding-left: 20px;
  color: var(--ink-700);
  font-size: 14.5px;
}
.card ul li {
  margin: 3px 0;
}
.card.sm {
  padding: 16px;
}
.card.dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #e7f3ef;
}
.card.dark p {
  color: #b8d8d1;
}
.card-prose {
  max-width: 880px;
  margin: 0 auto 24px;
  padding: 28px;
}
.card-prose p {
  color: var(--ink-700);
  font-size: 15.5px;
  margin: 0 0 12px;
}
.card-prose p:last-child {
  margin: 0;
}
.card-prose ul {
  margin: 4px 0 14px;
  padding-left: 22px;
  color: var(--ink-700);
  font-size: 15.5px;
}
.card-prose ul li {
  margin: 4px 0;
}

/* Pillars */
.pillar {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  height: 4px;
  width: 56px;
  background: linear-gradient(90deg, var(--green-500), var(--blue-500));
}
.pillar-num {
  color: var(--ink-300);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 13px;
  margin-bottom: 8px;
}
.pillar h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.pillar p {
  margin: 0;
  color: var(--ink-500);
}

/* How It Works — overview image */
.how-overview {
  margin: 0 0 28px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.how-overview img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--ink-50);
}
.how-overview figcaption {
  color: var(--ink-500);
  font-size: 13px;
  margin-top: 10px;
}

/* Timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  counter-reset: t;
}
.timeline li {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 18px 18px 18px 14px;
  box-shadow: var(--shadow-sm);
}
.timeline .t-num {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #cbe7df;
}
.timeline h3 {
  margin: 0 0 4px;
  font-size: 16px;
}
.timeline p {
  margin: 0;
  color: var(--ink-500);
  font-size: 14.5px;
}

/* Chip row */
.chip-row {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.chip-row li {
  font-size: 13px;
  color: var(--ink-700);
  background: #fff;
  border: 1px solid var(--ink-100);
  padding: 6px 12px;
  border-radius: 999px;
}

/* Diagram caption */
.diagram {
  margin: 28px 0 0;
}
.diagram figcaption {
  color: var(--ink-500);
  font-size: 13px;
  margin-top: 10px;
  text-align: center;
}

/* Kit */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.kit-photo {
  margin: 0;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.kit-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--ink-50);
  padding: 8px;
}
.kit-photo .placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
}
.placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-500);
  background: repeating-linear-gradient(45deg, #f3f6f8 0 8px, #eef3f5 8px 16px);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  padding: 16px;
}
.kit-photo figcaption {
  padding: 10px 14px;
  color: var(--ink-500);
  font-size: 13px;
  border-top: 1px solid var(--ink-50);
}
.kit-features .card {
  background: var(--green-50);
  border-color: #d6ece5;
}
.kit-features .card h4 {
  color: var(--green-900);
}
.kit-features .card p {
  color: var(--ink-700);
}

/* Apps */
.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.app-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.app-card figure {
  margin: 0 0 14px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  background: #f8fafc;
  aspect-ratio: 16 / 9;
}
.app-card figure > picture,
.app-card figure > img {
  width: 100%;
  height: 100%;
}
.app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink-50);
}
.app-card .placeholder {
  aspect-ratio: 16/9;
}
.app-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.app-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-700);
  font-size: 14.5px;
  columns: 2;
  column-gap: 24px;
}
.app-card ul li {
  margin: 4px 0;
  break-inside: avoid;
}

/* Phases */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.phase {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.phase-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green-700);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.phase h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.phase ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-700);
  font-size: 14.5px;
}
.phase ul li {
  margin: 4px 0;
}

/* Privacy & status */
.privacy .card.dark h4 {
  color: #fff;
}
.fineprint {
  text-align: center;
  margin: 22px 0 0;
  color: #b8d8d1;
  font-size: 13.5px;
}

.status-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.status-list li {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-left: 4px solid var(--green-500);
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--ink-700);
}

/* CTA */
.section-cta {
  background: linear-gradient(180deg, #fff 0%, var(--green-50) 100%);
  border-top: 1px solid var(--ink-100);
}
.cta-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
}
.cta-copy h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  margin: 0 0 10px;
}
.cta-copy p {
  color: var(--ink-700);
  margin: 0 0 20px;
  max-width: 60ch;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
}
.contact-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
}
.contact-card dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 6px 14px;
  margin: 0;
  font-size: 14.5px;
}
.contact-card dt {
  color: var(--ink-500);
}
.contact-card dd {
  margin: 0;
  color: var(--ink-900);
}

/* Footer */
.site-footer {
  background: #0a2a26;
  color: #c8e1db;
  padding: 28px 0;
  margin-top: 24px;
  font-size: 14px;
}
.site-footer a {
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  align-items: center;
}
.footer-grid p {
  margin: 4px 0 0;
  color: #9bbfb7;
}
.copyright {
  color: #9bbfb7;
  text-align: right;
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    padding: 56px 0 64px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-stack {
    gap: 32px;
  }
  .hero-align {
    padding: 14px 16px;
  }
  .hero-align-label {
    border-right: 0;
    padding-right: 0;
  }
  .hero-badge--top {
    top: -14px;
    left: 14px;
    font-size: 12px;
    padding: 8px 12px;
  }
  .hero-badge--bottom {
    bottom: -18px;
    right: 14px;
    padding: 10px 14px;
    gap: 12px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .kit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-grid {
    grid-template-columns: 1fr;
  }
  .phase-grid {
    grid-template-columns: 1fr;
  }
  .cta-wrap {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .copyright {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .primary-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-block;
  }
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .kit-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 40px 0 56px;
  }
  .hero-stack {
    gap: 28px;
  }
  .hero-title {
    font-size: clamp(28px, 7.5vw, 38px);
  }
  .cta-row {
    gap: 10px;
  }
  .cta-row .btn {
    flex: 1 1 auto;
  }
  .hero-image-wrap {
    padding: 6px;
    border-radius: 16px;
  }
  .hero-image-wrap > picture {
    border-radius: 12px;
  }
  .hero-program {
    font-size: 14px;
    padding: 7px 13px;
  }
  .hero-program strong {
    font-size: 15px;
  }
  .hero-program-logo img {
    height: 18px;
  }
  .hero-align ul {
    gap: 6px 14px;
  }
  .hero-align li {
    font-size: 12.5px;
  }
  .hero-badge {
    font-size: 11.5px;
    padding: 7px 11px;
  }
  .hero-badge--top {
    top: -12px;
    left: 12px;
  }
  .hero-badge--bottom {
    bottom: -14px;
    right: 12px;
    padding: 9px 12px;
    gap: 10px;
  }
  .hero-badge-stat strong {
    font-size: 16px;
  }
  .hero-badge-divider {
    height: 22px;
  }
  .section {
    padding: 56px 0;
  }
  .app-card ul {
    columns: 1;
  }
  .contact-card dl {
    grid-template-columns: 1fr;
  }
  .contact-card dt {
    margin-top: 6px;
  }
}

/* Print-friendly */
@media print {
  :root {
    --maxw: 100%;
  }
  body {
    color: #000;
    background: #fff;
  }
  .site-header,
  .site-footer,
  .nav-toggle,
  .mobile-nav,
  .skip-link {
    display: none !important;
  }
  a {
    color: #000;
    text-decoration: none;
  }
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 11px;
    color: #555;
  }
  .section,
  .hero {
    padding: 18px 0 !important;
    break-inside: avoid;
  }
  .section-tinted,
  .section-dark,
  .section-cta {
    background: #fff !important;
    color: #000 !important;
  }
  .card,
  .pillar,
  .phase,
  .app-card,
  .contact-card,
  .hero-visual,
  .kit-photo,
  .timeline li {
    box-shadow: none !important;
    border-color: #ccc !important;
    break-inside: avoid;
  }
  .card.dark,
  .privacy .card.dark {
    background: #fff !important;
    color: #000 !important;
  }
  .card.dark p,
  .privacy .card.dark p {
    color: #333 !important;
  }
  .section-head.light h2,
  .section-head.light p {
    color: #000 !important;
  }
  .btn {
    border: 1px solid #999 !important;
    background: #fff !important;
    color: #000 !important;
  }
  .timeline {
    grid-template-columns: 1fr 1fr !important;
  }
  h1 {
    font-size: 28px !important;
  }
  h2 {
    font-size: 20px !important;
  }
  .placeholder {
    background: #f4f4f4 !important;
  }
}
