.runtime-page {
  --runtime-ink: #0a192f;
  --runtime-deep: #111827;
  --runtime-teal: #0f766e;
  --runtime-copper: #a15c28;
}

.runtime-hero {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: min(100%, calc(var(--page-max) + var(--page-gutter) * 2));
  margin: 0 auto;
  padding: 92px var(--page-gutter) 78px;
}

.runtime-hero h1 {
  max-width: 100%;
  font-size: var(--type-page-title);
}

.runtime-hero__copy {
  width: 100%;
  max-width: 960px;
}

.runtime-hero__copy > p:not(.eyebrow, .lead, .runtime-note) {
  max-width: 820px;
  margin-top: 18px;
}

.runtime-note {
  max-width: 820px;
  margin-top: 18px;
  padding-left: 14px;
  border-left: 3px solid rgba(20, 184, 166, 0.52);
  color: var(--muted);
  font-size: 0.92rem;
}

.runtime-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--runtime-deep);
  box-shadow: var(--shadow-strong);
  width: 100%;
}

.runtime-map::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  opacity: 0.52;
}

.runtime-map > * {
  position: relative;
}

.runtime-map__block {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.runtime-map__block--after {
  border-color: rgba(20, 184, 166, 0.5);
  background: rgba(20, 184, 166, 0.15);
}

.runtime-map p {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
}

.runtime-map ul,
.runtime-program ul,
.runtime-report ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.runtime-map li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.runtime-map li::after {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.runtime-map__block--after li::after {
  border-color: rgba(20, 184, 166, 0.84);
  background: rgba(20, 184, 166, 0.24);
}

.runtime-map__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #67e8f9;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.runtime-map__arrow::before,
.runtime-map__arrow::after {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0), #67e8f9);
  content: "";
}

.runtime-map__arrow::after {
  background: linear-gradient(90deg, #67e8f9, rgba(103, 232, 249, 0));
}

.runtime-map strong {
  grid-column: 1 / -1;
  display: block;
  padding: 14px 16px;
  border-left: 3px solid #67e8f9;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  margin-top: 12px;
}

.runtime-section .section__head {
  max-width: 900px;
}

.runtime-section h2 {
  max-width: 980px;
}

.runtime-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 64px);
}

.runtime-columns p,
.runtime-notice p {
  color: var(--ink);
  font-weight: 600;
}

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

.runtime-method .card,
.runtime-program .card {
  min-height: 0;
}

.runtime-program .card ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.runtime-program .card li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.runtime-program .card li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.runtime-scope,
.runtime-report {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.runtime-panel,
.runtime-report__list,
.runtime-report__sample {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.runtime-panel,
.runtime-report__list {
  padding: clamp(22px, 3vw, 30px);
}

.runtime-panel h3,
.runtime-report h3 {
  margin-bottom: 18px;
}

.runtime-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.runtime-tags li,
.runtime-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.runtime-tags--wide {
  max-width: 980px;
}

.runtime-partner-note {
  max-width: 820px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.runtime-panel--dark {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(16, 34, 61, 0.98), rgba(11, 19, 43, 0.98)),
    var(--navy);
}

.runtime-panel--dark h3,
.runtime-panel--dark strong {
  color: var(--white);
}

.runtime-table {
  display: grid;
}

.runtime-table > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.runtime-table span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.runtime-report__list ul {
  display: grid;
  gap: 9px;
}

.runtime-report__list li {
  color: var(--muted);
  font-weight: 750;
}

.runtime-report__sample {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.runtime-report__top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.065);
}

.runtime-report__top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.runtime-report__top strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.83rem;
}

.runtime-report dl {
  display: grid;
  margin: 0;
  padding: 10px 24px 24px;
}

.runtime-report dl div {
  display: grid;
  grid-template-columns: minmax(112px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.runtime-report dl div:last-child {
  border-bottom: 0;
}

.runtime-report dt {
  color: #67e8f9;
  font-size: 0.84rem;
  font-weight: 900;
}

.runtime-report dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.runtime-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
  list-style: none;
}

.runtime-flow li {
  display: grid;
  min-height: 170px;
  align-content: start;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.84);
}

.runtime-flow span {
  color: var(--runtime-copper);
  font-size: 0.76rem;
  font-weight: 900;
}

.runtime-flow strong {
  color: var(--ink);
  line-height: 1.35;
}

.runtime-flow em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 700;
}

.runtime-notice {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
}

.runtime-notice div:last-child {
  display: grid;
  gap: 16px;
}

.runtime-cta {
  width: min(100% - var(--page-gutter) * 2, var(--page-max));
  margin: 74px auto 96px;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(16, 34, 61, 0.98), rgba(11, 19, 43, 0.98)),
    var(--navy);
  box-shadow: var(--shadow-strong);
}

.runtime-cta h2 {
  max-width: 900px;
  color: var(--white);
}

.runtime-cta p {
  max-width: 830px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.runtime-cta .button--primary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.runtime-cta .button--primary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.runtime-cta .button:not(.button--primary) {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.runtime-cta .button:not(.button--primary):hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.runtime-faq {
  max-width: 820px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.runtime-faq summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
}

.runtime-faq p {
  margin-top: 10px;
}

@media (max-width: 1040px) {
  .runtime-hero,
  .runtime-scope,
  .runtime-report,
  .runtime-notice {
    grid-template-columns: 1fr;
  }

  .runtime-hero h1 {
    font-size: 2.75rem;
  }

  .runtime-method,
  .runtime-program {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .runtime-hero {
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .runtime-hero h1 {
    font-size: 2.55rem;
  }

  .runtime-map {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .runtime-map__arrow {
    flex-direction: column;
    min-height: 42px;
  }

  .runtime-map__arrow::before,
  .runtime-map__arrow::after {
    width: 1px;
    height: 22px;
    background: linear-gradient(#67e8f9, rgba(103, 232, 249, 0));
  }

  .runtime-map__arrow::after {
    background: linear-gradient(180deg, #67e8f9, rgba(103, 232, 249, 0));
  }

  .runtime-map strong {
    grid-column: auto;
    margin-top: 0;
  }

  .runtime-columns,
  .runtime-table > div,
  .runtime-report dl div {
    grid-template-columns: 1fr;
  }

  .runtime-flow {
    grid-template-columns: 1fr;
  }

  .runtime-flow li {
    min-height: 0;
  }

  .runtime-cta {
    width: calc(100% - 36px);
    margin-top: 54px;
    margin-bottom: 70px;
    padding: 26px;
  }
}
