:root {
  color-scheme: dark;
  --bg: #090b0d;
  --surface: #101417;
  --surface-2: #151b20;
  --text: #f4f1e8;
  --muted: #a7b0aa;
  --subtle: #747f78;
  --line: rgba(244, 241, 232, 0.12);
  --accent: #72e6a5;
  --accent-2: #7bb8ff;
  --warning: #f0c25f;
  --shadow: rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(114, 230, 165, 0.08), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(123, 184, 255, 0.11), transparent 28%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 13, 0.86);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #06100b;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 950;
}
nav { display: flex; align-items: center; justify-content: center; gap: 28px; color: var(--muted); font-size: 0.94rem; }
nav a:hover { color: var(--text); }
.header-action { justify-self: end; color: #07100b; background: var(--accent); border-radius: 8px; padding: 10px 16px; font-weight: 850; }
main { position: relative; }
.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: clamp(36px, 8vw, 112px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px) 56px;
}
.hero-content { max-width: 820px; }
.eyebrow { margin: 0 0 14px; color: var(--accent); font-size: 0.78rem; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; max-width: 860px; font-size: clamp(3rem, 6.2vw, 6.6rem); line-height: 0.96; letter-spacing: 0; }
h2 { margin: 0; max-width: 780px; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.03; letter-spacing: 0; }
h3 { margin: 0; font-size: 1.32rem; letter-spacing: 0; }
.hero-text { max-width: 680px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.06rem, 1.7vw, 1.26rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; border-radius: 8px; padding: 12px 18px; font-weight: 850; }
.button.primary { color: #07100b; background: var(--accent); }
.button.secondary { color: var(--text); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); }
.status-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)), var(--surface);
  box-shadow: 0 30px 80px var(--shadow);
  overflow: hidden;
}
.panel-header, .panel-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.panel-header { background: rgba(114, 230, 165, 0.08); }
.panel-header span, .panel-row span { color: var(--muted); }
.panel-header strong { color: var(--accent); }
.panel-row strong { font-size: 1.7rem; }
.panel-note { padding: 22px; color: var(--muted); line-height: 1.6; }
.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 clamp(20px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.metrics > div { padding: clamp(22px, 3vw, 34px); border-right: 1px solid var(--line); }
.metrics > div:last-child { border-right: 0; }
.metric-value { display: block; font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 950; line-height: 1; }
.metric-label { display: block; margin-top: 10px; color: var(--muted); }
.section, .process { padding: clamp(78px, 10vw, 136px) clamp(20px, 5vw, 72px); }
.section-heading { max-width: 820px; margin-bottom: 36px; }
.section-heading.compact { margin-bottom: 28px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--surface);
  box-shadow: 0 22px 70px rgba(0,0,0,0.18);
}
.product-card.emphasized { background: linear-gradient(180deg, rgba(114,230,165,0.08), rgba(255,255,255,0.02)), var(--surface); border-color: rgba(114, 230, 165, 0.38); }
.product-topline { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-bottom: 38px; }
.product-code { color: var(--subtle); font-weight: 850; }
.product-category { color: var(--accent-2); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.product-card p { margin: 18px 0 0; color: var(--muted); line-height: 1.62; }
ul { width: 100%; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); color: var(--muted); list-style: none; }
li { position: relative; padding-left: 18px; margin: 12px 0; }
li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.card-footer { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 30px; }
.card-footer span { font-size: 1.05rem; font-weight: 900; }
.card-footer a { color: #07100b; background: var(--accent); border-radius: 8px; padding: 11px 14px; font-weight: 850; white-space: nowrap; }
.process { background: rgba(255,255,255,0.025); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.process-grid > div { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: rgba(16,20,23,0.72); }
.process-grid span { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 24px; border-radius: 8px; background: rgba(114,230,165,0.12); color: var(--accent); font-weight: 950; }
.process-grid p { color: var(--muted); line-height: 1.58; }
.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 72px);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(114,230,165,0.12), rgba(123,184,255,0.07)), var(--surface);
}
footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px clamp(20px, 5vw, 72px); color: var(--muted); border-top: 1px solid var(--line); }
@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr; justify-items: start; }
  nav { justify-content: flex-start; flex-wrap: wrap; }
  .header-action { justify-self: start; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .status-panel { max-width: 560px; }
  .product-grid, .process-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 0; }
  .contact { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .site-header { padding-top: 16px; padding-bottom: 16px; }
  nav { width: 100%; gap: 16px; }
  .hero { padding-top: 54px; }
  .metrics { grid-template-columns: 1fr; }
  .metrics > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .metrics > div:last-child { border-bottom: 0; }
  .card-footer { align-items: stretch; flex-direction: column; }
  .card-footer a { text-align: center; }
  footer { flex-direction: column; }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span,
.logo-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.92rem;
  font-weight: 750;
}

.institutional,
.outcomes {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.institutional {
  margin: clamp(60px, 8vw, 96px) clamp(20px, 5vw, 72px) 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(114, 230, 165, 0.08), rgba(123, 184, 255, 0.055)), var(--surface);
}

.institutional .section-heading {
  margin-bottom: 28px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.04rem;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-strip span {
  min-height: 42px;
  padding-inline: 16px;
  color: var(--text);
  background: rgba(9, 11, 13, 0.52);
}

.product-card {
  min-height: 570px;
}

.outcomes {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

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

.outcome-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--surface);
}

.outcome-grid p {
  margin: 0;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.6;
}

.outcome-grid span {
  display: block;
  margin-top: 28px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome-grid article {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .institutional {
    margin-inline: 20px;
  }

  .hero-badges span,
  .logo-strip span {
    width: 100%;
  }
}
