:root {
  --reserve-bg: #f4f6f1;
  --reserve-white: #ffffff;
  --reserve-ink: #11140f;
  --reserve-muted: #667064;
  --reserve-line: #cbd2c6;
  --reserve-lime: #adf338;
  --reserve-lime-dark: #5b8f00;
  --reserve-coral: #ff6542;
  --reserve-cyan: #58d2ce;
  --reserve-yellow: #f6d657;
  --reserve-gray: #e6eae3;
  --reserve-sans: "Golos Text", Arial, sans-serif;
  --reserve-display: "Unbounded", Arial, sans-serif;
  --reserve-mono: "IBM Plex Mono", monospace;
}

body {
  color: var(--reserve-ink);
  background: var(--reserve-bg);
  font-family: var(--reserve-sans);
}

button,
input,
textarea {
  font-family: var(--reserve-sans);
}

.reserve-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 10px 28px;
  background: rgba(248, 250, 246, 0.94);
  border-bottom: 1px solid var(--reserve-ink);
  backdrop-filter: blur(18px);
}

.reserve-brand {
  width: fit-content;
  color: var(--reserve-ink);
  text-decoration: none;
  font-family: var(--reserve-display);
  font-size: 16px;
  font-weight: 700;
}

.reserve-brand span { color: var(--reserve-lime-dark); }

.reserve-header .concept-switcher {
  --switcher-bg: #ffffff;
  --switcher-fg: var(--reserve-ink);
  --switcher-muted: #737b70;
  --switcher-active-bg: var(--reserve-lime);
  --switcher-active-fg: var(--reserve-ink);
}

.reserve-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}

.reserve-header-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--reserve-ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.reserve-header-actions a:hover { color: var(--reserve-lime-dark); }

.reserve-header-actions .reserve-demo {
  gap: 20px;
  padding: 0 16px;
  background: var(--reserve-lime);
  border: 1px solid var(--reserve-ink);
  border-radius: 3px;
}

.reserve-header-actions .reserve-demo:hover { color: var(--reserve-ink); background: #9ee32d; }

.reserve-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 72px);
  height: 870px;
  overflow: hidden;
  background: var(--reserve-bg);
  border-bottom: 1px solid var(--reserve-ink);
}

.reserve-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(17, 20, 15, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 15, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
}

.network-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.reserve-hero-copy {
  position: relative;
  z-index: 6;
  width: min(700px, 49%);
  padding: 112px 0 100px max(28px, calc((100vw - 1440px) / 2));
}

.reserve-overline {
  margin: 0 0 18px;
  color: var(--reserve-lime-dark);
  font-family: var(--reserve-mono);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

.reserve-hero h1 {
  max-width: 13ch;
  margin: 0 0 28px;
  font-family: var(--reserve-display);
  font-size: 54px;
  line-height: 1.07;
  font-weight: 600;
}

.reserve-hero-copy > p:not(.reserve-overline) {
  max-width: 640px;
  margin: 0 0 30px;
  color: var(--reserve-muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.reserve-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.reserve-primary,
.reserve-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  color: var(--reserve-ink);
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition-property: background-color, color, box-shadow, transform;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.reserve-primary {
  justify-content: space-between;
  gap: 32px;
  min-width: 220px;
  background: var(--reserve-lime);
  border: 1px solid var(--reserve-ink);
  box-shadow: 6px 6px 0 var(--reserve-ink);
}

.reserve-secondary {
  min-width: 170px;
  background: #ffffff;
  border: 1px solid var(--reserve-ink);
}

.reserve-primary:hover {
  background: #9be22b;
  box-shadow: 3px 3px 0 var(--reserve-ink);
  transform: translate(3px, 3px);
}

.reserve-secondary:hover { color: #ffffff; background: var(--reserve-ink); }

.network-board {
  position: absolute;
  top: 90px;
  right: max(18px, calc((100vw - 1480px) / 2));
  z-index: 4;
  width: min(760px, 55vw);
  min-width: 690px;
  height: 650px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--reserve-ink);
  box-shadow: 16px 16px 0 rgba(17, 20, 15, 0.1);
}

.network-board::before {
  content: "";
  position: absolute;
  inset: 50px 0 0;
  background-image:
    linear-gradient(rgba(17, 20, 15, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 15, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.network-label {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--reserve-ink);
  font-family: var(--reserve-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.network-label b {
  position: relative;
  padding-left: 16px;
  color: var(--reserve-lime);
}

.network-label b::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--reserve-lime);
  border-radius: 50%;
  animation: reservePulse 2s ease-in-out infinite;
}

.net-node {
  position: absolute;
  z-index: 4;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--reserve-ink);
  box-shadow: 4px 4px 0 rgba(17, 20, 15, 0.1);
}

.net-node > span,
.net-node > strong,
.net-node > small {
  display: block;
}

.net-node > span {
  margin-bottom: 12px;
  color: var(--reserve-muted);
  font-family: var(--reserve-mono);
  font-size: 7px;
  text-transform: uppercase;
}

.net-node > strong {
  margin-bottom: 7px;
  font-family: var(--reserve-display);
  font-size: 13px;
}

.net-node > small {
  color: var(--reserve-muted);
  font-size: 9px;
}

.source-node {
  left: 28px;
  width: 154px;
  min-height: 105px;
}

.node-tms { top: 82px; border-top: 5px solid var(--reserve-lime); }
.node-web { top: 206px; border-top: 5px solid var(--reserve-coral); }
.node-api { top: 330px; border-top: 5px solid var(--reserve-cyan); }
.node-file { top: 454px; border-top: 5px solid var(--reserve-yellow); }

.rule-node {
  top: 198px;
  left: 278px;
  width: 210px;
  min-height: 250px;
  color: #ffffff;
  background: var(--reserve-ink);
  border-color: var(--reserve-ink);
  box-shadow: 8px 8px 0 var(--reserve-cyan);
}

.rule-node > span { color: #aab1a6; }
.rule-node > strong { margin-bottom: 28px; color: var(--reserve-lime); font-size: 18px; }
.rule-node ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.rule-node li { min-height: 38px; padding: 11px 0; border-top: 1px solid #454a42; font-size: 10px; text-transform: uppercase; }

.ati-output {
  top: 248px;
  right: 26px;
  width: 174px;
  min-height: 170px;
  background: var(--reserve-lime);
  box-shadow: 7px 7px 0 var(--reserve-ink);
}

.ati-output > span { color: #4b650f; }
.ati-output > strong { margin-bottom: 28px; font-size: 44px; }
.ati-output > small { color: var(--reserve-ink); font-weight: 700; }

.network-packet {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 46px;
  height: 28px;
  color: #ffffff;
  background: var(--reserve-coral);
  border: 1px solid var(--reserve-ink);
  font-family: var(--reserve-mono);
  font-size: 7px;
  animation: packetTravel 4.6s ease-in-out infinite;
}

.packet-one { top: 174px; left: 188px; }
.packet-two { top: 456px; left: 500px; background: var(--reserve-cyan); animation-delay: -2.3s; }

.reserve-statusbar {
  position: absolute;
  right: max(28px, calc((100vw - 1440px) / 2));
  bottom: 26px;
  left: max(28px, calc((100vw - 1440px) / 2));
  z-index: 7;
  display: flex;
  gap: 34px;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--reserve-line);
  font-family: var(--reserve-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.reserve-statusbar span { display: flex; align-items: center; gap: 9px; }
.reserve-statusbar i,
.activity-log i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.lime { background: var(--reserve-lime-dark); }
.cyan { background: #159e9a; }
.coral { background: var(--reserve-coral); }
.gray { background: #8d958a; }

.system-map {
  padding: 112px max(28px, calc((100vw - 1384px) / 2));
  background: #ffffff;
}

.system-map-head {
  display: grid;
  grid-template-columns: 190px 1fr 0.65fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 54px;
}

.system-map-head h2,
.protocol-head h2,
.scope-copy h2,
.activity-copy h2,
.reserve-pricing-head h2,
.reserve-request-copy h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--reserve-display);
  font-size: 42px;
  line-height: 1.14;
  font-weight: 600;
}

.system-map-head > p:last-child,
.scope-copy > p:last-child,
.activity-copy > p:last-child,
.reserve-request-copy > p:last-of-type {
  margin: 0;
  color: var(--reserve-muted);
  font-size: 14px;
  line-height: 1.7;
}

.map-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--reserve-ink);
  border-bottom: 1px solid var(--reserve-ink);
}

.map-column {
  min-height: 470px;
  padding: 28px;
  border-right: 1px solid var(--reserve-ink);
}

.map-column:last-child { border-right: 0; }
.map-column.accent { background: var(--reserve-lime); }

.map-column header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 90px;
}

.map-column header span { font-family: var(--reserve-mono); font-size: 9px; }
.map-column h3 { margin: 0; font-family: var(--reserve-display); font-size: 20px; }
.map-column ul { margin: 0; padding: 0; list-style: none; }
.map-column li { min-height: 58px; padding: 18px 0; border-top: 1px solid var(--reserve-line); font-size: 13px; font-weight: 600; }
.map-column.accent li { border-top-color: rgba(17, 20, 15, 0.3); }

.product-protocol {
  padding: 112px max(28px, calc((100vw - 1384px) / 2));
  background: var(--reserve-bg);
}

.protocol-head {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  margin-bottom: 54px;
}

.protocol-table { border-top: 1px solid var(--reserve-ink); }

.protocol-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
  min-height: 104px;
  padding: 20px;
  border-bottom: 1px solid var(--reserve-line);
}

.protocol-title {
  min-height: 52px;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--reserve-muted);
  font-family: var(--reserve-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.protocol-row strong { font-size: 15px; }
.protocol-row p { margin: 0; color: var(--reserve-muted); font-size: 13px; line-height: 1.6; }
.protocol-row b { color: var(--reserve-lime-dark); font-size: 12px; text-align: right; }

.control-scope {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  padding: 112px max(28px, calc((100vw - 1384px) / 2));
  background: var(--reserve-cyan);
  border-top: 1px solid var(--reserve-ink);
  border-bottom: 1px solid var(--reserve-ink);
}

.scope-copy h2 { margin-bottom: 26px; }

.scope-matrix {
  align-self: center;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--reserve-ink);
  box-shadow: 9px 9px 0 var(--reserve-ink);
}

.scope-matrix > div {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 0.7fr);
  align-items: center;
  min-height: 66px;
  padding: 0 20px;
  border-bottom: 1px solid var(--reserve-line);
}

.scope-matrix > div:last-child { border-bottom: 0; }
.scope-matrix .matrix-head { min-height: 46px; color: #ffffff; background: var(--reserve-ink); font-family: var(--reserve-mono); font-size: 7px; text-transform: uppercase; }
.scope-matrix strong { font-size: 12px; }

.scope-matrix i {
  justify-self: center;
  width: 12px;
  height: 12px;
  background: var(--reserve-gray);
  border: 1px solid #a8afa5;
}

.scope-matrix i.on { background: var(--reserve-lime); border-color: var(--reserve-lime-dark); box-shadow: 0 0 0 4px rgba(173, 243, 56, 0.16); }

.activity-view {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  padding: 112px max(28px, calc((100vw - 1384px) / 2));
  background: #ffffff;
}

.activity-copy h2 { margin-bottom: 26px; }

.activity-log {
  align-self: center;
  overflow: hidden;
  background: var(--reserve-ink);
  border: 1px solid var(--reserve-ink);
  box-shadow: 9px 9px 0 var(--reserve-lime);
  color: #ffffff;
}

.activity-log header,
.activity-log footer,
.activity-log > div {
  display: grid;
  align-items: center;
  min-height: 64px;
  padding: 0 18px;
}

.activity-log header {
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid #42473f;
  font-size: 13px;
  font-weight: 800;
}

.activity-log header b { color: var(--reserve-lime); font-family: var(--reserve-mono); font-size: 8px; text-transform: uppercase; }

.activity-log > div {
  grid-template-columns: 78px 20px 70px 1fr;
  gap: 10px;
  border-bottom: 1px solid #42473f;
  font-size: 11px;
}

.activity-log time { color: #9ea59b; font-family: var(--reserve-mono); font-size: 8px; }
.activity-log > div span { color: #c9cec7; }

.activity-log footer {
  grid-template-columns: auto 1fr auto 1fr;
  gap: 12px;
  min-height: 54px;
  background: #262b24;
  font-family: var(--reserve-mono);
  font-size: 7px;
  text-transform: uppercase;
}

.activity-log footer span { color: #8f978c; }

.reserve-pricing {
  padding: 112px max(28px, calc((100vw - 1384px) / 2));
  background: var(--reserve-bg);
}

.reserve-pricing-head {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  margin-bottom: 52px;
}

.access-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.access-plan {
  position: relative;
  min-height: 590px;
  background: #ffffff;
  border: 1px solid var(--reserve-ink);
}

.access-plan.team { color: #ffffff; background: var(--reserve-ink); }

.access-plan header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid var(--reserve-ink);
  font-family: var(--reserve-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.access-plan.team header { border-bottom-color: #42473f; }
.access-plan.free header b { color: var(--reserve-lime-dark); }
.access-plan.team header b { color: var(--reserve-lime); }

.access-title {
  display: flex;
  align-items: baseline;
  gap: 18px;
  min-height: 150px;
  padding: 46px 22px 28px;
  border-bottom: 1px solid var(--reserve-line);
}

.team .access-title { border-bottom-color: #42473f; }
.access-title strong { font-family: var(--reserve-display); font-size: 38px; }
.access-title span { max-width: 210px; color: var(--reserve-muted); font-size: 10px; line-height: 1.5; }
.team .access-title span { color: #adb5aa; }

.access-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid var(--reserve-line);
  font-size: 11px;
}

.team .access-spec { border-bottom-color: #42473f; }
.access-spec b { text-transform: uppercase; }

.access-plan > a {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  color: var(--reserve-ink);
  background: var(--reserve-lime);
  border: 1px solid var(--reserve-ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.team > a { color: var(--reserve-ink); background: var(--reserve-cyan); }

.reserve-request {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  padding: 112px max(28px, calc((100vw - 1384px) / 2));
  background: var(--reserve-lime);
  border-top: 1px solid var(--reserve-ink);
}

.reserve-request-copy h2 { margin-bottom: 26px; }

.reserve-contacts {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid var(--reserve-ink);
}

.reserve-contacts a {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 68px;
  color: var(--reserve-ink);
  border-bottom: 1px solid var(--reserve-ink);
  text-decoration: none;
}

.reserve-contacts span { font-family: var(--reserve-mono); font-size: 7px; text-transform: uppercase; }
.reserve-contacts strong { font-size: 14px; }

.reserve-form {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--reserve-ink);
  box-shadow: 9px 9px 0 var(--reserve-ink);
}

.reserve-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.reserve-form label { display: grid; gap: 7px; }
.reserve-form label span { font-family: var(--reserve-mono); font-size: 7px; text-transform: uppercase; }
.reserve-form-wide { grid-column: 1 / -1; }

.reserve-form input,
.reserve-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--reserve-ink);
  background: var(--reserve-bg);
  border: 1px solid var(--reserve-line);
  border-radius: 0;
  font-size: 13px;
  resize: vertical;
}

.reserve-form textarea { min-height: 104px; }
.reserve-form input:focus,
.reserve-form textarea:focus { border-color: var(--reserve-lime-dark); outline: 3px solid rgba(91, 143, 0, 0.15); }

.reserve-form-submit {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
}

.reserve-form-submit p { max-width: 260px; margin: 0; color: var(--reserve-muted); font-size: 9px; line-height: 1.5; }
.reserve-form-submit button { display: flex; justify-content: space-between; align-items: center; gap: 30px; min-width: 210px; min-height: 52px; padding: 0 18px; color: #ffffff; background: var(--reserve-ink); border: 0; font-size: 12px; font-weight: 800; cursor: pointer; }
.reserve-form output { display: block; min-height: 16px; margin-top: 12px; color: var(--reserve-lime-dark); font-size: 11px; font-weight: 700; }

.reserve-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 36px;
  align-items: center;
  min-height: 104px;
  padding: 22px 28px 32px;
  color: #a8b0a5;
  background: var(--reserve-ink);
  font-size: 11px;
}

.reserve-footer .reserve-brand,
.reserve-footer > a { color: #ffffff; }
.reserve-footer > a { text-decoration: none; }
.reserve-footer p { margin: 0; }

@keyframes reservePulse {
  0%, 100% { opacity: 0.6; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes packetTravel {
  0%, 100% { transform: translate(0, 0); opacity: 0.45; }
  48% { transform: translate(88px, 98px); opacity: 1; }
  52% { transform: translate(88px, 98px); opacity: 1; }
}

@media (max-width: 1180px) {
  .reserve-header-actions a:first-child { display: none; }
  .reserve-hero-copy { width: 53%; }
  .reserve-hero h1 { font-size: 46px; }
  .network-board { right: -170px; width: 720px; opacity: 0.88; }
  .system-map-head { grid-template-columns: 160px 1fr; }
  .system-map-head > p:last-child { grid-column: 2; max-width: 620px; }
  .control-scope,
  .activity-view { grid-template-columns: 1fr; }
  .scope-copy,
  .activity-copy { max-width: 820px; }
}

@media (max-width: 900px) {
  .reserve-header { grid-template-columns: 1fr auto; padding: 10px 18px; }

  .reserve-header .concept-switcher {
    position: fixed;
    left: 50%;
    bottom: 14px;
    z-index: 120;
    transform: translateX(-50%);
  }

  .reserve-header-actions > a:not(.reserve-demo) { display: none; }

  .reserve-hero { height: auto; min-height: 1420px; }
  .reserve-hero-copy { width: 100%; padding: 76px 24px 44px; }
  .reserve-hero h1 { max-width: 14ch; font-size: 48px; }

  .network-board {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 36px);
    min-width: 0;
    height: 680px;
    margin: 0 auto;
    opacity: 1;
  }

  .network-canvas { display: none; }

  .source-node { left: 18px; width: 145px; }
  .rule-node { left: 50%; transform: translateX(-50%); }
  .ati-output { right: 18px; }

  .reserve-statusbar {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    flex-wrap: wrap;
    width: calc(100% - 36px);
    margin: 20px auto 40px;
    padding: 12px 16px;
  }

  .system-map,
  .product-protocol,
  .control-scope,
  .activity-view,
  .reserve-pricing,
  .reserve-request { padding: 82px 18px; }

  .system-map-head,
  .protocol-head,
  .reserve-pricing-head { grid-template-columns: 1fr; }
  .system-map-head > p:last-child { grid-column: auto; }

  .map-columns { grid-template-columns: 1fr; }
  .map-column { min-height: 360px; border-right: 0; border-bottom: 1px solid var(--reserve-ink); }
  .map-column:last-child { border-bottom: 0; }
  .map-column header { margin-bottom: 56px; }

  .protocol-row { grid-template-columns: 1fr 1fr; }
  .protocol-row b { grid-column: 2; text-align: left; }
  .protocol-title span:last-child { display: none; }

  .access-plans { grid-template-columns: 1fr; }
  .reserve-request { grid-template-columns: 1fr; }

  .reserve-footer { grid-template-columns: 1fr auto; padding-bottom: 90px; }
}

@media (max-width: 620px) {
  .reserve-brand { font-size: 14px; }
  .reserve-header-actions .reserve-demo { padding: 0 12px; font-size: 11px; }

  .reserve-hero { min-height: 1630px; }
  .reserve-hero-copy { padding-top: 54px; }
  .reserve-hero h1 { font-size: 38px; line-height: 1.12; }
  .reserve-hero-copy > p:not(.reserve-overline) { font-size: 16px; }

  .reserve-actions { align-items: stretch; flex-direction: column; }
  .reserve-primary,
  .reserve-secondary { width: 100%; }

  .network-board { height: 880px; }
  .source-node { right: 18px; left: 18px; width: auto; min-height: 82px; }
  .node-tms { top: 74px; }
  .node-web { top: 172px; }
  .node-api { top: 270px; }
  .node-file { top: 368px; }
  .rule-node { top: 486px; width: calc(100% - 36px); min-height: 210px; }
  .rule-node ul { grid-template-columns: 1fr 1fr; }
  .rule-node li { padding: 10px; }
  .ati-output { top: 724px; right: 18px; left: 18px; width: auto; min-height: 120px; }
  .ati-output > strong { margin-bottom: 12px; }
  .network-packet { display: none; }

  .system-map-head h2,
  .protocol-head h2,
  .scope-copy h2,
  .activity-copy h2,
  .reserve-pricing-head h2,
  .reserve-request-copy h2 { font-size: 32px; }

  .protocol-title { display: none; }
  .protocol-row { grid-template-columns: 1fr; gap: 10px; min-height: 150px; padding: 24px 0; }
  .protocol-row b { grid-column: auto; }

  .scope-matrix { overflow-x: auto; }
  .scope-matrix > div { min-width: 560px; }

  .activity-log > div { grid-template-columns: 68px 14px 1fr; gap: 8px; padding: 10px 14px; }
  .activity-log > div span { grid-column: 3; }
  .activity-log footer { grid-template-columns: auto 1fr; }

  .access-plan { min-height: 610px; }
  .access-title { align-items: flex-start; flex-direction: column; gap: 12px; }
  .access-title strong { font-size: 30px; }

  .reserve-form { padding: 20px; }
  .reserve-form-grid { grid-template-columns: 1fr; }
  .reserve-form-wide { grid-column: auto; }
  .reserve-form-submit { align-items: stretch; flex-direction: column; }
  .reserve-form-submit button { width: 100%; }

  .reserve-footer { grid-template-columns: 1fr; gap: 18px; }
}
