:root {
  color-scheme: dark;
  --bg: #0b111c;
  --bg-2: #111827;
  --bg-3: #0f172a;
  --panel: #151e2b;
  --panel-strong: #182638;
  --border: #2a3443;
  --border-strong: rgba(103, 183, 232, 0.48);
  --text: #ffffff;
  --muted: #cbd5e1;
  --dim: #94a3b8;
  --blue: #67b7e8;
  --cyan: #67b7e8;
  --green: #67b7e8;
  --ink: #03101c;
  --shadow: none;
  --radius: 8px;
  --max: 1180px;
  --header: 76px;
  font-family: Inter, "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: auto;
}

body {
  min-height: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--bg);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background: linear-gradient(180deg, rgba(103, 183, 232, 0.045), transparent 430px);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-140%);
  border: 1px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--text);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  padding: 0 36px;
  border-bottom: 1px solid rgba(103, 126, 151, 0.2);
  background: rgba(248, 251, 255, 0.94);
  box-shadow: 0 8px 30px rgba(3, 16, 28, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 104px;
  min-height: 42px;
}

.brand-logo {
  width: 104px;
  height: auto;
  object-fit: contain;
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #26384d;
  font-size: 0.9rem;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.active {
  border-color: rgba(48, 94, 158, 0.22);
  background: rgba(48, 94, 158, 0.08);
  color: #0b1724;
  outline: 0;
}

.site-nav .nav-secondary-cta {
  margin-left: 10px;
  border-color: rgba(48, 94, 158, 0.24);
  color: #0b1724;
}

.site-nav .nav-cta {
  margin-left: 4px;
  border-color: #305e9e;
  background: #305e9e;
  color: #ffffff;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(48, 94, 158, 0.26);
  border-radius: var(--radius);
  background: #ffffff;
  color: #0b1724;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #0b1724;
}

.site-main {
  min-height: calc(100vh - var(--header));
  overflow: visible;
  touch-action: pan-y;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header));
  padding: 92px 28px 64px;
  border-bottom: 1px solid rgba(185, 199, 211, 0.14);
  background:
    linear-gradient(90deg, rgba(19, 78, 118, 0.24), transparent 58%),
    linear-gradient(180deg, rgba(11, 17, 28, 0.3), transparent 78%);
}

.hero.compact {
  min-height: auto;
  padding-top: 74px;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 44px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(7, 21, 35, 0.84));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  align-items: center;
  gap: 42px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero.text-only .hero-inner {
  grid-template-columns: minmax(0, 900px);
}

.hero-inner:has(.partners-hero-slider) {
  grid-template-columns: minmax(0, 0.72fr) minmax(430px, 1.28fr);
}

.hero-copy {
  max-width: 720px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
}

.kicker::before {
  width: 36px;
  height: 1px;
  content: "";
  background: var(--cyan);
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: 3.55rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  font-size: 1.04rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 780px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(103, 183, 232, 0.5);
  border-radius: 999px;
  background: var(--blue);
  color: #04101b;
  font-weight: 800;
}

.button::after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.button.secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.button.ghost {
  border-color: transparent;
  background: transparent;
  color: var(--cyan);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #0b1724;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  min-height: 500px;
  box-shadow: none;
}

.hero-media img {
  min-height: 500px;
}

.image-slider {
  isolation: isolate;
}

.image-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 420ms ease;
}

.image-slide.active {
  opacity: 1;
}

.image-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(5, 18, 31, 0.62);
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 180ms ease, background 180ms ease, transform 180ms ease;
}

.slider-control::before {
  display: block;
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
}

.slider-control.prev {
  left: 18px;
}

.slider-control.prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.slider-control.next {
  right: 18px;
}

.slider-control.next::before {
  transform: translateX(-2px) rotate(45deg);
}

.image-slider:hover .slider-control,
.image-slider:focus-within .slider-control {
  opacity: 1;
}

.slider-control:hover,
.slider-control:focus-visible {
  background: rgba(48, 94, 158, 0.92);
  opacity: 1;
  outline: 0;
}

@media (prefers-reduced-motion: reduce) {
  .image-slide {
    transition: none;
  }
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(11, 17, 28, 0.08), rgba(11, 17, 28, 0.2));
}

.signal-lines {
  display: none;
}

.section {
  padding: 78px 28px;
}

.section.alt {
  background: var(--bg-2);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.8fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading p {
  margin-bottom: 0;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 10px;
  width: min(100%, var(--max));
  margin: 28px auto 0;
}

.proof-badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(103, 183, 232, 0.25);
  border-radius: var(--radius);
  background: var(--panel);
  color: #dceaf3;
  font-size: 0.86rem;
  font-weight: 700;
}

.proof-badge::before,
.status-pill::before {
  width: 12px;
  height: 1px;
  margin-right: 8px;
  content: "";
  background: var(--cyan);
}

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

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

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

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 260px));
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.card {
  position: relative;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.card.has-image {
  padding: 0;
}

.card.clickable {
  transition: border-color 160ms ease, background 160ms ease;
}

.card.clickable:hover,
.card.clickable:focus {
  border-color: var(--border-strong);
  background: var(--panel-strong);
  outline: 0;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 0;
}

.subscribe-card form {
  display: grid;
  gap: 16px;
}

.subscribe-card {
  width: 70%;
  min-width: 280px;
  margin-right: auto;
  margin-left: auto;
}

.subscribe-card .button {
  width: 100%;
}

.contact-form-only {
  width: min(100%, 760px);
  margin-right: auto;
  margin-left: auto;
}

.card.has-image .meta,
.card.has-image h3,
.card.has-image p {
  display: block;
  margin-right: 20px;
  margin-left: 20px;
}

.card.has-image h3 {
  margin-top: 0;
}

.card.has-image p {
  margin-bottom: 20px;
}

.card .meta {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.card-image {
  aspect-ratio: 16 / 9;
  margin: -1px -1px 18px;
  border-right: 0;
  border-left: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-image.card-image-contain {
  padding: 8px;
  background: #f5f8fc;
}

.card-image.card-image-contain img {
  object-fit: contain;
}

.card-image.team-headshot {
  aspect-ratio: 1 / 1;
  background: #f5f8fc;
}

.card-image.team-headshot img {
  object-fit: cover;
  object-position: center;
}

.feature-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  min-width: 0;
}

.feature-split {
  align-items: center;
}

.feature-split .diagram,
.feature-split .metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-split .diagram-step:not(:last-child)::after {
  display: none;
}

.article-body {
  display: grid;
  gap: 20px;
}

.article-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.article-body a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.article-photo {
  margin: 0;
}

.article-image {
  aspect-ratio: 4 / 3;
}

.article-image-contain {
  aspect-ratio: auto;
  padding: 10px;
  border-color: rgba(103, 183, 232, 0.46);
  background: rgba(245, 248, 252, 0.96);
}

.article-image-contain img {
  display: block;
  height: auto;
  object-fit: contain;
}

.article-photo figcaption {
  margin-top: 10px;
  color: var(--dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.comparison-wrap,
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(185, 199, 211, 0.14);
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
}

td {
  color: var(--muted);
}

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

.diagram {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 11px;
  align-items: stretch;
}

.diagram-step {
  position: relative;
  min-height: 130px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.diagram-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -14px;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--cyan);
}

.diagram-step span {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: 900;
}

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

.metric-card {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.metric-value {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 1.7rem;
  font-weight: 900;
}

.metric-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

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

.logo-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(203, 213, 225, 0.12);
  border-radius: var(--radius);
  background: #0b111c;
}

.logo-mark img {
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
}

.logo-mark span {
  color: var(--text);
  font-weight: 800;
  text-align: center;
}

.logo-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.commercialization-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.commercialization-copy h2 {
  max-width: 780px;
  margin-bottom: 24px;
}

.commercialization-image {
  aspect-ratio: 4 / 3;
}

.commercialization-figure {
  margin: 0;
}

.commercialization-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.timeline-item strong {
  color: var(--text);
}

.timeline-item p {
  margin-bottom: 0;
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 23px;
}

.check-list li::before,
.plain-list li::before {
  position: absolute;
  left: 0;
  color: var(--cyan);
  content: "+";
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.callout {
  padding: 24px;
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--panel);
}

.callout h3 {
  margin-bottom: 8px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.cta-band p {
  max-width: 720px;
  margin-bottom: 0;
}

.form-shell {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

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

.field {
  display: grid;
  gap: 8px;
}

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

label {
  color: #dceaf3;
  font-size: 0.88rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(185, 199, 211, 0.3);
  border-radius: var(--radius);
  background: rgba(3, 16, 28, 0.66);
  color: var(--text);
}

input,
select {
  padding: 0 12px;
}

textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form-note,
.small-note {
  color: var(--dim);
  font-size: 0.86rem;
}

.success-message,
.error-message {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(36, 184, 216, 0.42);
  border-radius: var(--radius);
  background: rgba(36, 184, 216, 0.08);
  color: #dff8ff;
}

.success-message.visible {
  display: block;
}

.error-message {
  border-color: rgba(255, 91, 91, 0.5);
  background: rgba(255, 91, 91, 0.1);
  color: #ffe0e0;
}

.error-message.visible {
  display: block;
}

button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.direct-contact {
  display: grid;
  gap: 10px;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.event-hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  padding: 50px 28px 28px;
  border-top: 1px solid rgba(103, 126, 151, 0.22);
  background: #f5f8fc;
  color: #0b1724;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 28px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: #0b1724;
  font-size: 0.95rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: #30445d;
}

.footer-grid a:hover,
.footer-grid a:focus {
  color: #305e9e;
}

.footer-grid p {
  color: #40556d;
}

.footer-brand {
  width: 118px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 118px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  width: min(100%, var(--max));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(103, 126, 151, 0.2);
  color: #52657a;
  font-size: 0.84rem;
}

@media (max-width: 1080px) {
  .site-header {
    padding: 0 20px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header) - 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(48, 94, 158, 0.18);
    border-radius: var(--radius);
    background: rgba(248, 251, 255, 0.98);
    box-shadow: 0 22px 40px rgba(3, 16, 28, 0.14);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-cta {
    justify-content: space-between;
    margin-left: 0;
  }

  .hero-inner,
  .split,
  .section-heading,
  .commercialization-feature,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-media img {
    min-height: 390px;
  }

  .proof-bar,
  .card-grid.four,
  .metric-grid,
  .logo-grid,
  .article-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 260px));
  }

  .diagram {
    grid-template-columns: 1fr;
  }

  .diagram-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -12px;
    width: 1px;
    height: 13px;
  }

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

@media (max-width: 720px) {
  :root {
    --header: 66px;
  }

  .site-header {
    padding: 0 16px;
  }

  .hero,
  .section,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.56rem;
  }

  .lead {
    font-size: 1rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-media img {
    min-height: 300px;
  }

  .proof-bar,
  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .team-grid,
  .metric-grid,
  .logo-grid,
  .article-media-grid,
  .commercialization-feature,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 24px;
  }

  .contact-link {
    display: grid;
  }
}
