:root {
  --red: #c70016;
  --red-dark: #9f0011;
  --ink: #111318;
  --text: #2d323b;
  --muted: #68717e;
  --line: #dfe3e9;
  --soft: #f5f7fa;
  --white: #ffffff;
  --max: 1280px;
  --shadow: 0 22px 56px rgba(14, 22, 34, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.72;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 3px solid var(--red);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  height: 54px;
  object-fit: contain;
}

.brand-name {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.brand-name span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #20252d;
  font-size: 15px;
  font-weight: 750;
}

.nav-links a {
  position: relative;
  padding: 29px 0 27px;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .18s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.subnav {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 90;
  width: 246px;
  display: grid;
  padding: 12px 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;
}

.nav-item:hover .subnav,
.nav-item:focus-within .subnav {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.subnav a {
  padding: 10px 20px;
  color: #303640;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}

.subnav a:hover {
  color: var(--red);
  background: #fff7f7;
}

.subnav a::after { display: none; }

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--red);
  border-radius: 3px;
  color: var(--red);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}

.menu-button svg {
  width: 24px;
  height: 24px;
}

.page-hero {
  position: relative;
  min-height: 510px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #f7f9fb;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.96) 42%, rgba(255,255,255,.52) 66%, rgba(255,255,255,.12) 100%),
    var(--hero-image, url("../assets/redhorn-campus.png")) center right / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 5px;
  background: var(--red);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--red);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 58px;
  height: 2px;
  background: var(--red);
}

.page-hero h1 {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: #3d444f;
  font-size: 18px;
  line-height: 1.92;
  font-weight: 560;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 900;
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(199, 0, 22, .18);
}

.btn-secondary {
  color: var(--red);
  background: rgba(255,255,255,.74);
  border-color: rgba(199, 0, 22, .42);
}

.anchor-bar {
  position: sticky;
  top: 85px;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
}

.anchor-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
}

.anchor-inner::-webkit-scrollbar { display: none; }

.anchor-inner a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #343b46;
  font-size: 13px;
  font-weight: 800;
}

.anchor-inner a:hover {
  border-color: var(--red);
  color: var(--red);
}

.section {
  padding: 88px 0;
}

.section-soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 56px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.16;
  font-weight: 900;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.86;
}

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

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

.panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(14, 22, 34, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.panel::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(199,0,22,.42);
  border-radius: 50%;
  opacity: .88;
  background:
    radial-gradient(circle at 50% 50%, var(--red) 0 3px, transparent 4px),
    linear-gradient(90deg, transparent 49%, rgba(199,0,22,.38) 50% 52%, transparent 53%),
    linear-gradient(transparent 49%, rgba(199,0,22,.38) 50% 52%, transparent 53%);
}

.panel:hover {
  border-color: rgba(199,0,22,.35);
  box-shadow: 0 20px 44px rgba(14,22,34,.12);
  transform: translateY(-3px);
}

.panel.red {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, rgba(199,0,22,1), rgba(159,0,17,.94));
  box-shadow: 0 24px 52px rgba(199,0,22,.18);
}

.panel.red::after {
  border-color: rgba(255,255,255,.62);
  background:
    radial-gradient(circle at 50% 50%, #fff 0 3px, transparent 4px),
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.52) 50% 52%, transparent 53%),
    linear-gradient(transparent 49%, rgba(255,255,255,.52) 50% 52%, transparent 53%);
}

.panel b,
.step b {
  display: block;
  color: var(--red);
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 900;
}

.panel.red b,
.panel.red h3,
.panel.red p,
.panel.red li {
  color: var(--white);
}

.panel h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.28;
  font-weight: 900;
}

.panel p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

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

.panel li,
.plain-list li {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.panel li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.panel.red li::before { background: var(--white); }

.step {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(14,22,34,.055);
  transition: transform .2s ease, box-shadow .2s ease;
}

.step::before {
  content: "";
  display: block;
  width: 54px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(199,0,22,.24);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 70%, var(--red) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 70%, transparent 0 11px, rgba(199,0,22,.72) 12px 13px, transparent 14px),
    radial-gradient(circle at 50% 70%, transparent 0 19px, rgba(199,0,22,.36) 20px 21px, transparent 22px);
}

.grid-4 .step:nth-child(2)::before {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--red) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 50%, transparent 0 12px, rgba(199,0,22,.72) 13px 14px, transparent 15px),
    linear-gradient(90deg, transparent 48%, rgba(199,0,22,.36) 49% 51%, transparent 52%),
    linear-gradient(transparent 48%, rgba(199,0,22,.36) 49% 51%, transparent 52%);
}

.grid-4 .step:nth-child(3)::before {
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 10px 30px, var(--red) 0 4px, transparent 5px),
    radial-gradient(circle at 27px 18px, var(--red) 0 4px, transparent 5px),
    radial-gradient(circle at 45px 9px, var(--red) 0 4px, transparent 5px),
    linear-gradient(145deg, transparent 0 39%, rgba(199,0,22,.74) 40% 42%, transparent 43% 58%, rgba(199,0,22,.74) 59% 61%, transparent 62%);
}

.grid-4 .step:nth-child(4)::before {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--red) 0 3px, transparent 4px),
    conic-gradient(from 0deg, var(--red) 0 23%, transparent 23% 28%, rgba(199,0,22,.58) 28% 48%, transparent 48% 53%, rgba(199,0,22,.28) 53% 72%, transparent 72% 100%);
}

.step:hover {
  box-shadow: 0 20px 42px rgba(14,22,34,.12);
  transform: translateY(-3px);
}

.step strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
}

.step span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.split {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.media-frame {
  min-height: 420px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(199,0,22,.08), rgba(255,255,255,.92) 44%, rgba(17,19,24,.06)),
    var(--media-image, url("../assets/data-center.png")) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.structure-list {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 26px;
}

.structure-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(var(--red), rgba(199,0,22,.12));
}

.structure-row {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 20px;
  border-left: 3px solid var(--red);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16,24,40,.06);
}

.structure-row::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 1px rgba(199,0,22,.35);
  transform: translateY(-50%);
}

.structure-row strong {
  color: var(--ink);
  font-weight: 900;
}

.structure-row span {
  color: var(--muted);
  font-size: 14px;
}

.wide-panel {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(14, 22, 34, .06);
}

.wide-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.25;
  font-weight: 900;
}

.wide-panel p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.reputation-flow {
  position: relative;
  min-height: 260px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid #20252d;
  background:
    radial-gradient(circle at 50% 50%, rgba(199,0,22,.14), transparent 28%),
    linear-gradient(135deg, #171b22, #0e1116);
}

.reputation-flow::before,
.reputation-flow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 480px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transform: translate(-50%,-50%) rotate(27deg);
}

.reputation-flow::after { transform: translate(-50%,-50%) rotate(-27deg); }

.reputation-hub {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  display: grid;
  width: 136px;
  height: 136px;
  place-content: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  background: radial-gradient(circle, #d90a20, #9f0011);
  box-shadow: 0 0 0 18px rgba(199,0,22,.08), 0 0 46px rgba(199,0,22,.36);
  transform: translate(-50%,-50%);
}

.reputation-hub small,
.airspace-core small {
  color: rgba(255,255,255,.7);
  font-size: 10px;
  letter-spacing: .12em;
  font-weight: 900;
}

.reputation-hub strong { font-size: 20px; line-height: 1.2; }
.reputation-hub span { color: rgba(255,255,255,.72); font-size: 11px; }

.reputation-node,
.airspace-node {
  position: absolute;
  z-index: 1;
  min-width: 92px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.26);
  color: var(--white);
  background: rgba(255,255,255,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.node-subject { left: 10%; top: 22%; }
.node-people { right: 10%; top: 22%; }
.node-event { left: 10%; bottom: 22%; }
.node-industry { right: 10%; bottom: 22%; }

.airspace-architecture {
  position: relative;
  min-height: 320px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(199,0,22,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,0,22,.055) 1px, transparent 1px),
    #fbfcfd;
  background-size: 32px 32px;
}

.airspace-architecture::before,
.airspace-architecture::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,0,22,.42), transparent);
  transform: translate(-50%,-50%) rotate(19deg);
}

.airspace-architecture::after { transform: translate(-50%,-50%) rotate(-19deg); }

.airspace-core {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  display: grid;
  width: 184px;
  height: 184px;
  place-content: center;
  gap: 7px;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #d50a20, #8f0010);
  box-shadow: 0 0 0 16px rgba(199,0,22,.07), 0 18px 42px rgba(199,0,22,.24);
  text-align: center;
  transform: translate(-50%,-50%);
}

.airspace-core strong { font-size: 20px; line-height: 1.22; }
.airspace-core span { color: rgba(255,255,255,.76); font-size: 11px; }
.airspace-node { border-color: rgba(199,0,22,.22); color: var(--ink); background: var(--white); }
.node-detect { left: 11%; top: 16%; }
.node-locate { right: 11%; top: 16%; }
.node-response { left: 11%; bottom: 16%; }
.node-command { right: 11%; bottom: 16%; }

.cta {
  padding: 54px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(199,0,22,.96), rgba(116,0,13,.96)),
    var(--red);
}

.cta-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.cta h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
}

.cta p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.75;
}

.cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid rgba(255,255,255,.72);
  color: var(--white);
  font-weight: 900;
  white-space: nowrap;
}

.site-footer {
  background: #0f1116;
  color: rgba(255,255,255,.70);
  padding: 34px 0;
}

.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  font-size: 13px;
}

.footer-inner strong { color: var(--white); }

@media (min-width: 1061px) {
  .grid-4 .step:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    right: -22px;
    width: 30px;
    height: 30px;
    border-top: 1px solid rgba(199,0,22,.42);
    border-right: 1px solid rgba(199,0,22,.42);
    background: var(--soft);
    transform: translateY(-50%) rotate(45deg);
  }
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(199,0,22,.28);
  outline-offset: 2px;
}

@media (max-width: 1060px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .nav-links,
  .header-action {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links.is-open {
    display: grid;
    position: absolute;
    left: 0;
    right: 0;
    top: 85px;
    gap: 0;
    max-height: calc(100vh - 85px);
    overflow-y: auto;
    padding: 14px 24px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    font-weight: 850;
  }

  .nav-links.is-open a::after {
    display: none;
  }

  .nav-links.is-open .nav-item {
    display: grid;
  }

  .nav-links.is-open .subnav {
    position: static;
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 12px 0 18px;
    padding: 12px;
    border: 1px solid #e8ebf0;
    border-left: 4px solid var(--red);
    background: #f6f7f9;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-links.is-open .subnav a {
    min-height: 42px;
    padding: 10px 12px;
    color: #3f4650;
    border: 1px solid #e4e7ec;
    background: var(--white);
    font-size: 13px;
    font-weight: 750;
  }

  .section-head,
  .split,
  .cta-inner {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .nav,
  .container,
  .page-hero-inner,
  .anchor-inner,
  .cta-inner,
  .footer-inner {
    width: min(100% - 32px, var(--max));
  }

  .nav {
    min-height: 76px;
  }

  .brand-mark {
    width: 50px;
    height: 46px;
  }

  .brand-name strong {
    font-size: 18px;
  }

  .brand-name span {
    display: none;
  }

  .nav-links.is-open {
    top: 79px;
    max-height: calc(100vh - 79px);
  }

  .nav-links.is-open .subnav {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 560px;
  }

  .page-hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.96) 58%, rgba(255,255,255,.72) 100%),
      var(--hero-image, url("../assets/redhorn-campus.png")) 62% bottom / cover no-repeat;
  }

  .page-hero-inner {
    padding: 54px 0 72px;
  }

  .page-hero h1 {
    font-size: clamp(31px, 8.4vw, 38px);
  }

  .page-hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .anchor-bar {
    top: 79px;
  }

  .section {
    padding: 64px 0;
  }

  .grid-3,
  .grid-4,
  .structure-row {
    grid-template-columns: 1fr;
  }

  .structure-list { padding-left: 22px; }

  .structure-row::before { left: -27px; }

  .panel,
  .step {
    min-height: 0;
  }

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

  .reputation-flow,
  .airspace-architecture {
    min-height: 390px;
  }

  .reputation-flow::before,
  .reputation-flow::after,
  .airspace-architecture::before,
  .airspace-architecture::after { width: 360px; }

  .reputation-hub { width: 116px; height: 116px; }
  .airspace-core { width: 146px; height: 146px; }
  .airspace-core strong { font-size: 16px; }
  .reputation-node,
  .airspace-node { min-width: 78px; padding: 8px 9px; font-size: 12px; }
  .node-subject, .node-event, .node-detect, .node-response { left: 5%; }
  .node-people, .node-industry, .node-locate, .node-command { right: 5%; }
}

  .footer-inner {
    display: grid;
  }
}
