:root {
  --navy: #07105f;
  --ink: #151b29;
  --text: #263241;
  --muted: #657383;
  --blue: #055a98;
  --sky: #5db9e5;
  --yellow: #f5df34;
  --gold: #c79b3b;
  --line: #d9e2eb;
  --paper: #f7f9fb;
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(8, 20, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand img {
  width: 104px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.9rem;
  font-weight: 780;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  font-weight: 840;
  white-space: nowrap;
}

.button.dark {
  color: var(--white);
  background: var(--navy);
}

.button.light {
  color: var(--navy);
  background: var(--white);
}

.button.outline {
  color: inherit;
  border: 1px solid currentColor;
  background: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(76svh - 82px);
  overflow: hidden;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  min-height: calc(76svh - 82px);
  display: grid;
  align-content: center;
  padding: clamp(42px, 6vw, 84px) 0;
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(3rem, 7.2vw, 7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p {
  max-width: 640px;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.section {
  padding: clamp(66px, 8vw, 116px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.74fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 38px;
}

h2 {
  margin: 10px 0 0;
  font-size: clamp(2.05rem, 4.6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.16;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

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

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

.tile {
  min-height: 224px;
  padding: 28px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.tile p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.signal-list {
  border-top: 2px solid var(--navy);
}

.signal-item {
  min-height: 112px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.signal-item > span {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 860;
  line-height: 0.9;
}

.signal-item p,
.launch-flow p,
.brief-notes p,
.desk-ledger p,
.audience-strip p {
  margin: 8px 0 0;
  color: var(--muted);
}

.launch-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 34px;
}

.launch-flow article {
  position: relative;
  padding-top: 52px;
}

.launch-flow article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 8px;
  content: "";
  background: var(--yellow);
}

.launch-flow span,
.brief-feature span,
.brief-notes span,
.desk-ledger span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.brief-feature {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brief-feature h3 {
  max-width: 700px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.2vw, 3.3rem);
  font-weight: 520;
  line-height: 1.08;
}

.brief-feature span {
  color: var(--gold);
}

.brief-notes {
  display: grid;
  gap: 0;
}

.brief-notes article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.brief-notes article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brief-notes span {
  color: var(--gold);
}

.desk-ledger {
  display: grid;
  border-top: 1px solid #cfc4b2;
}

.desk-ledger article {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(220px, 0.58fr) minmax(260px, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid #cfc4b2;
}

.desk-ledger span {
  color: #866b38;
}

.desk-ledger p {
  color: #5c6570;
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid #0b5d9a;
  border-bottom: 2px solid #0b5d9a;
}

.audience-strip article {
  min-height: 220px;
  padding: 30px 28px 34px 0;
}

.audience-strip article + article {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.audience-strip span {
  display: block;
  margin-bottom: 40px;
  color: #0b5d9a;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 860;
  line-height: 0.82;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.contact-card img {
  width: 220px;
  margin-bottom: 26px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

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

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

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

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 720;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  color: #0f5132;
  border: 1px solid #badbcc;
  background: #d1e7dd;
}

.form-status.error {
  color: #842029;
  border: 1px solid #f5c2c7;
  background: #f8d7da;
}

.captcha-field {
  min-height: 78px;
  align-items: center;
}

label {
  color: #2c3c50;
  font-size: 0.86rem;
  font-weight: 780;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd8e2;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

input {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 126px;
  padding: 13px 14px;
  resize: vertical;
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
  font-size: 0.88rem;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.prism-rails {
  --prism-ink: #06272b;
  --prism-deep: #053f46;
  --prism-night: #031f23;
  --prism-cyan: #00bcd4;
  --prism-mint: #c7f5df;
  --prism-coral: #ff6b4a;
  --prism-paper: #f3fbf8;
  color: var(--prism-ink);
  background: var(--prism-paper);
}

.prism-rails .topbar {
  color: #ebfffb;
  border-bottom: 1px solid rgba(199, 245, 223, 0.18);
  background: rgba(3, 31, 35, 0.94);
}

.prism-rails .brand {
  background: transparent;
}

.prism-rails .brand img {
  width: 104px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.2));
}

.prism-rails .topbar .button.light {
  color: var(--prism-night);
  background: var(--prism-mint);
}

.prism-rails .hero {
  color: #f2fffb;
  background:
    linear-gradient(90deg, rgba(3, 31, 35, 0.92) 0%, rgba(3, 31, 35, 0.7) 42%, rgba(3, 31, 35, 0.18) 100%),
    url("assets/hero-prism-rails.png");
  background-position: center;
  background-size: cover;
}

.prism-rails .hero .wrap {
  text-align: left;
  align-content: center;
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(74px, 9vw, 128px);
}

.prism-rails .hero h1 {
  max-width: 860px;
  font-size: clamp(3.2rem, 6.4vw, 6.6rem);
  font-weight: 760;
  line-height: 0.95;
}

.prism-rails .hero p {
  max-width: 660px;
  color: rgba(242, 255, 251, 0.82);
}

.prism-rails .actions {
  justify-content: flex-start;
}

.prism-rails .button.dark {
  color: var(--prism-night);
  background: var(--prism-cyan);
}

.prism-rails .button.outline {
  color: #ebfffb;
  border-color: rgba(235, 255, 251, 0.74);
}

.prism-rails .ticker {
  color: #ebfffb;
  background: var(--prism-night);
}

.ticker .wrap {
  min-height: 88px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.ticker strong {
  display: block;
  color: var(--prism-coral, var(--yellow));
  font-size: 1.25rem;
}

.ticker span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.prism-rails .section {
  background: var(--prism-paper);
}

.prism-rails .section h2,
.prism-rails .section h3 {
  color: var(--prism-ink);
}

.prism-rails .signal-item {
  border-color: rgba(5, 63, 70, 0.18);
}

.prism-rails .signal-item > span {
  color: var(--prism-coral);
}

.prism-rails .section.alt {
  color: #ebfffb;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 188, 212, 0.2), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(255, 107, 74, 0.16), transparent 26%),
    var(--prism-deep);
}

.prism-rails .section.alt h2,
.prism-rails .section.alt h3 {
  color: #f5fffc;
}

.prism-rails .section.alt .lead,
.prism-rails .section.alt .tile p,
.prism-rails .section.alt .launch-flow p {
  color: rgba(235, 255, 251, 0.74);
}

.prism-rails .section.alt .tile,
.prism-rails .section.alt .launch-flow article {
  border-color: rgba(199, 245, 223, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.prism-rails .launch-flow {
  gap: 18px;
  padding-top: 20px;
  border-top-color: rgba(199, 245, 223, 0.18);
}

.prism-rails .launch-flow article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(199, 245, 223, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 188, 212, 0.13), rgba(255, 107, 74, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
}

.prism-rails .launch-flow article::before {
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--prism-coral), var(--prism-cyan));
}

.prism-rails .launch-flow span {
  margin: 28px 0 auto;
  color: var(--prism-mint);
}

.prism-rails .launch-flow h3 {
  margin-top: 30px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.prism-rails .launch-flow p {
  max-width: 34ch;
  color: rgba(235, 255, 251, 0.7);
}

.prism-rails .contact-card {
  background: #e9f8f2;
}

.prism-rails label {
  color: var(--prism-deep);
}

.editorial {
  color: #f4f0e8;
  background: #070a0f;
}

.editorial .topbar {
  background: rgba(7, 10, 15, 0.9);
}

.editorial .brand {
  background: transparent;
}

.editorial .brand img {
  width: 104px;
  filter: brightness(1.85) saturate(1.15) contrast(0.95) drop-shadow(0 1px 0 rgba(255, 255, 255, 0.22));
}

.editorial .menu {
  color: rgba(255, 255, 255, 0.72);
}

.editorial .hero {
  background:
    linear-gradient(90deg, rgba(7, 10, 15, 0.97) 0%, rgba(7, 10, 15, 0.88) 38%, rgba(7, 10, 15, 0.16) 100%),
    url("assets/hero-editorial-boardroom.png");
  background-position: center;
  background-size: cover;
}

.editorial .hero h1 {
  max-width: 830px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 540;
}

.editorial .hero p,
.editorial .lead {
  color: rgba(255, 255, 255, 0.72);
}

.editorial .section {
  background: #070a0f;
}

.editorial .section.paper {
  color: #151b29;
  background: #f2eee5;
}

.editorial .section.paper .lead {
  color: #5c6570;
}

.editorial .tile {
  color: #f4f0e8;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.editorial .section.paper .tile {
  color: #151b29;
  border-color: #d8cfc0;
  background: rgba(255, 255, 255, 0.54);
}

.editorial .brief-notes p {
  color: rgba(255, 255, 255, 0.64);
}

.editorial .brief-notes h3 {
  color: #f4f0e8;
}

.editorial .contact-card {
  color: #151b29;
}

.editorial label {
  color: rgba(255, 255, 255, 0.78);
}

.editorial input,
.editorial textarea {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.editorial .footer {
  color: rgba(255, 255, 255, 0.58);
  background: #05070a;
  border-color: rgba(255, 255, 255, 0.12);
}

.command-center {
  color: #f7fbff;
  background: #07121e;
}

.command-center .topbar {
  background: rgba(7, 18, 30, 0.92);
}

.command-center .brand {
  background: transparent;
}

.command-center .brand img {
  width: 104px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.22));
}

.command-center .menu {
  color: rgba(255, 255, 255, 0.76);
}

.command-center .hero {
  background:
    linear-gradient(90deg, rgba(7, 18, 30, 0.97) 0%, rgba(7, 18, 30, 0.88) 39%, rgba(7, 18, 30, 0.24) 100%),
    url("assets/hero-editorial-boardroom.png");
  background-position: center;
  background-size: cover;
}

.command-center .hero h1 {
  max-width: 800px;
  color: var(--white);
  font-weight: 820;
}

.command-center .hero p,
.command-center .lead {
  color: rgba(255, 255, 255, 0.72);
}

.command-center .section {
  background: #07121e;
}

.command-center .section.paper {
  color: #111b27;
  background: #eef6fb;
}

.command-center .section.paper .lead {
  color: #5a6978;
}

.dashboard-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.dashboard-panel {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(24, 132, 197, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-top span,
.module-list span,
.control-ledger span {
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-top strong {
  color: var(--sky);
  font-size: 1.4rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-grid div {
  min-height: 118px;
  padding: 22px;
}

.metric-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.table-lines {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.table-lines span {
  height: 16px;
  background: linear-gradient(90deg, rgba(93, 185, 229, 0.65), rgba(255, 255, 255, 0.08));
}

.table-lines span:nth-child(2) {
  width: 84%;
}

.table-lines span:nth-child(3) {
  width: 62%;
}

.table-lines span:nth-child(4) {
  width: 76%;
}

.module-list {
  display: grid;
  gap: 14px;
  border-top: 0;
}

.module-list article {
  position: relative;
  padding: 24px 24px 24px 82px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(24, 132, 197, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.module-list span {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #07121e;
  border-radius: 999px;
  background: var(--sky);
  letter-spacing: 0;
}

.module-list h3 {
  margin-top: 0;
  color: var(--white);
}

.module-list p,
.control-ledger p {
  margin: 8px 0 0;
}

.module-list p {
  color: rgba(255, 255, 255, 0.64);
}

.control-ledger {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.control-ledger article {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(240px, 0.58fr) minmax(280px, 1fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
  padding: 22px 24px;
  border: 1px solid #cbd9e2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.control-ledger span {
  color: #0b5d9a;
  padding-top: 4px;
}

.control-ledger p {
  color: #5a6978;
}

.command-center .contact-card {
  color: #111b27;
}

.command-center label {
  color: rgba(255, 255, 255, 0.78);
}

.command-center input,
.command-center textarea {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.command-center .footer {
  color: rgba(255, 255, 255, 0.58);
  background: #050b12;
  border-color: rgba(255, 255, 255, 0.12);
}

.network {
  background: #f6fbff;
}

.network .topbar {
  color: #12253b;
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(217, 226, 235, 0.8);
}

.network .hero {
  min-height: calc(76svh - 82px);
  background:
    linear-gradient(90deg, rgba(246, 251, 255, 0.97) 0%, rgba(246, 251, 255, 0.82) 41%, rgba(246, 251, 255, 0.2) 100%),
    url("assets/hero-network-map.png");
  background-position: center;
  background-size: cover;
}

.network .hero .wrap {
  min-height: calc(76svh - 82px);
  padding: clamp(42px, 6vw, 84px) 0;
}

.network .hero h1 {
  max-width: 690px;
  color: #101f32;
  font-size: clamp(2.85rem, 5.65vw, 5.7rem);
  font-weight: 810;
}

.network .hero p {
  color: #394859;
}

.network .program-band {
  color: var(--white);
  background: #0b5d9a;
}

.program-band .wrap {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 0.6fr));
  gap: 18px;
  align-items: center;
}

.program-band strong {
  display: block;
  font-size: 1.05rem;
}

.program-band span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.network .pathway {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.network .steps {
  display: grid;
  gap: 14px;
}

.network .step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.network .step:last-child {
  border-bottom: 1px solid var(--line);
}

.network .step span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  border: 1px solid var(--blue);
  background: transparent;
  font-weight: 880;
}

.network .step p {
  margin: 7px 0 0;
  color: var(--muted);
}

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

.network .solution-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.network .solution-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.network .why {
  background: var(--white);
}

.network .why .audience-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 0;
}

.network .why .audience-strip article {
  min-height: 245px;
  border-bottom: 1px solid var(--line);
}

.network .why .audience-strip article:nth-child(3n + 1) {
  padding-left: 0;
  border-left: 0;
}

.network .footer-info {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(210px, 0.85fr) minmax(210px, 0.85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: flex-start;
}

.network .footer-info strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.network .footer-info address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.network .footer-group strong {
  margin-bottom: 14px;
}

.network .footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.network .footer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  color: #314155;
  border: 1px solid #cfdae4;
  border-radius: 4px;
  background: var(--white);
  font-size: 0.84rem;
  line-height: 1.15;
}

.overview {
  background: #f6f9fc;
}

.overview-hero {
  min-height: auto;
  color: #111a29;
  background:
    linear-gradient(90deg, rgba(246, 249, 252, 0.96), rgba(246, 249, 252, 0.64)),
    url("assets/hero-prism-rails.png");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.overview-hero .wrap {
  min-height: auto;
  padding: 84px 0 54px;
}

.overview-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 6rem);
}

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

.option-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.option-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #dfe8ef;
}

.option-card .body {
  padding: 22px;
}

.option-card h2 {
  margin: 0;
  font-size: 1.34rem;
}

.option-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

@media (max-width: 980px) {
  .wrap {
    width: min(100% - 28px, 860px);
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 88px;
  }

  .menu {
    display: none;
  }

  .hero,
  .hero .wrap {
    min-height: 72svh;
  }

  .hero h1 {
    font-size: clamp(2.62rem, 11vw, 5rem);
  }

  .section-head,
  .contact,
  .network .pathway,
  .brief-layout,
  .dashboard-showcase {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .ticker .wrap,
  .program-band .wrap,
  .network .solution-grid,
  .launch-flow,
  .audience-strip,
  .network .why .audience-strip,
  .network .footer-info,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .audience-strip article,
  .audience-strip article + article {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

  .audience-strip article + article {
    border-top: 1px solid var(--line);
  }

  .network .why .audience-strip article,
  .network .why .audience-strip article:nth-child(3n + 1) {
    padding-left: 0;
    border-left: 0;
  }

  .desk-ledger article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .control-ledger article {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 520px);
  }

  .prism-rails .brand img {
    width: 88px;
  }

  .button {
    width: 100%;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .button {
    width: auto;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .actions,
  .form,
  .footer .wrap {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .hero,
  .hero .wrap {
    min-height: 72svh;
  }

  .tile,
  .contact-card,
  .network .step {
    padding: 22px;
  }

  .network .step {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .signal-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .brief-notes article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .metric-grid div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .launch-flow article {
    padding-top: 42px;
  }

  .prism-rails .launch-flow article {
    min-height: 0;
    padding: 24px;
  }

  .prism-rails .launch-flow span {
    margin-top: 24px;
  }

  .prism-rails .launch-flow h3 {
    margin-top: 24px;
  }

  .module-list article {
    padding: 22px;
  }

  .module-list span {
    position: static;
    margin-bottom: 16px;
  }

  .audience-strip article {
    min-height: 0;
  }

  .audience-strip span {
    margin-bottom: 18px;
  }
}
