:root {
  color-scheme: light;
  --canvas: #eef2f5;
  --surface: #ffffff;
  --surface-soft: #f7f9fb;
  --ink: #0b1f33;
  --muted: #627080;
  --quiet: #e8edf2;
  --line: #d6dee6;
  --teal: #197c87;
  --teal-strong: #0b1f33;
  --blue: #1f4266;
  --gold: #c8a45d;
  --clay: #7c6a49;
  --violet: #243b63;
  --green: #557265;
  --shadow: 0 24px 60px rgba(11, 31, 51, 0.12);
  --panel-shadow: 0 14px 34px rgba(11, 31, 51, 0.08);
  --hairline: rgba(28, 48, 68, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% -8%, rgba(200, 164, 93, 0.12), transparent 34%),
    linear-gradient(180deg, #fbfcfd 0, var(--canvas) 430px),
    var(--canvas);
  color: var(--ink);
  font-family:
    "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui,
    sans-serif;
}

body {
  font-size: 15px;
  line-height: 1.6;
}

main {
  padding-bottom: 8px;
}

button,
input {
  font: inherit;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1 {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 8px 12px;
  border-radius: 7px;
  background: var(--teal-strong);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 140ms ease;
}

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

.site-header,
.command-strip,
.experience-grid,
.company-page,
.content-band,
.launch-band,
.site-footer {
  width: min(1500px, calc(100% - 32px));
  margin-inline: auto;
}

.is-hidden {
  display: none !important;
}

.site-header {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 0 22px;
  border-bottom: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(11, 31, 51, 0.07);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 1px solid rgba(200, 164, 93, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 45%, rgba(31, 66, 102, 0.28) 46%, rgba(31, 66, 102, 0.28) 54%, transparent 55%),
    linear-gradient(45deg, transparent 45%, rgba(200, 164, 93, 0.36) 46%, rgba(200, 164, 93, 0.36) 54%, transparent 55%),
    #ffffff;
  box-shadow: 0 12px 26px rgba(11, 31, 51, 0.14);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-strong);
  content: "";
}

.brand-mark::before {
  top: 7px;
  left: 7px;
  box-shadow:
    16px 4px 0 var(--gold),
    4px 18px 0 var(--blue),
    20px 21px 0 var(--teal);
}

.brand-mark::after {
  right: 9px;
  bottom: 8px;
  background: var(--clay);
}

.brand-lockup p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.eyebrow {
  margin: 0 0 5px;
  color: #8b7036;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.header-actions a,
.primary-link,
.mail-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #274348;
  font-size: 13px;
  font-weight: 700;
}

.header-actions a {
  padding: 8px 11px;
}

.header-actions a:hover,
.header-actions a.is-active {
  background: #f1f4f7;
  color: var(--teal-strong);
}

.header-actions a.is-active {
  box-shadow: inset 0 -3px 0 var(--gold);
}

.header-actions .help-link {
  border-color: rgba(96, 113, 118, 0.22);
  background: #fff;
}

.header-actions .primary-link,
.mail-link {
  border-color: var(--teal-strong);
  background: var(--teal-strong);
  color: #fff;
  box-shadow: 0 12px 24px rgba(11, 31, 51, 0.2);
}

.command-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 12px;
  padding: 16px 18px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 251, 0.96)),
    #fff;
  box-shadow: var(--panel-shadow);
}

.command-copy {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.command-copy h2 {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.48;
}

.live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 164, 93, 0.16);
}

.command-metrics {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 8px;
}

.command-metrics span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(28, 48, 68, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #3b4a5a;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.command-metrics strong {
  color: var(--ink);
  font-size: 16px;
}

.hero-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 24px;
  align-items: end;
  padding: 22px 0 18px;
}

.hero-kicker {
  margin-bottom: 6px;
  color: var(--teal-strong);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-copy {
  max-width: 880px;
  margin-bottom: 8px;
  color: #3f5358;
  font-size: 16px;
  line-height: 1.8;
}

.disclaimer {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

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

.metric-row div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(96, 113, 118, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--panel-shadow);
}

.metric-row strong {
  display: block;
  color: var(--teal-strong);
  font-size: 28px;
  line-height: 1.15;
}

.metric-row span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.experience-grid {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr) 316px;
  gap: 0;
  align-items: stretch;
  margin-top: 0;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.control-panel,
.map-panel,
.content-card,
.launch-band {
  border: 1px solid rgba(96, 113, 118, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.control-panel,
.detail-panel {
  min-height: 720px;
  padding: 16px;
}

.control-panel {
  display: grid;
  align-content: start;
  gap: 20px;
  border: 0;
  border-right: 1px solid var(--hairline);
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 249, 251, 0.99)),
    #fff;
}

.panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(96, 113, 118, 0.16);
}

label,
.control-label {
  display: block;
  margin: 0 0 8px;
  color: #26384a;
  font-size: 13px;
  font-weight: 800;
}

.search-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 6px;
}

input[type="search"] {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

input[type="search"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.16);
}

#clearSearch {
  display: inline-flex;
  width: 38px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

#clearSearch:disabled {
  cursor: default;
  opacity: 0.45;
}

.control-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.control-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.filter-bar {
  display: grid;
  gap: 8px;
}

.filter-btn {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #26384a;
  cursor: pointer;
  text-align: left;
}

.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: rgba(200, 164, 93, 0.62);
}

.filter-btn[aria-pressed="true"] {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffaf0, #f7f0df);
  color: var(--teal-strong);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(200, 164, 93, 0.14);
}

.filter-btn-label {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.filter-btn-count {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.filter-chip {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.analysis-layers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(28, 48, 68, 0.12);
}

.analysis-layers .control-label {
  flex: 0 0 100%;
  margin-bottom: 0;
}

.analysis-layers span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(28, 48, 68, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #405064;
  font-size: 12px;
  font-weight: 800;
}

.scope-note {
  padding: 14px;
  border: 1px solid rgba(200, 164, 93, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #fffaf0, #f8f3e7),
    #f9f5ec;
}

.scope-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.scope-note p {
  margin-bottom: 0;
  color: #465769;
  font-size: 13px;
  line-height: 1.7;
}

.node-kind-list {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(28, 48, 68, 0.12);
}

.node-kind-list > span {
  display: flex;
  min-height: 28px;
  align-items: center;
  gap: 9px;
  color: #26384a;
  font-size: 13px;
  font-weight: 800;
}

.node-kind-list i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--kind-color);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.72);
}

.quality-card {
  padding: 15px;
  border: 1px solid rgba(200, 164, 93, 0.32);
  border-radius: 12px;
  background:
    linear-gradient(145deg, #07192b, #0b1f33 58%, #17324e),
    var(--teal-strong);
  color: #fff;
  box-shadow: 0 16px 32px rgba(11, 31, 51, 0.22);
}

.quality-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.quality-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.quality-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.65;
}

.map-panel {
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.map-panel-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 16px 20px 14px;
  border-bottom: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, #ffffff, #f8fafb),
    #fff;
}

.status-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.status-stack span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(96, 113, 118, 0.18);
  border-radius: 999px;
  background: var(--surface-soft);
  color: #3d4e60;
  font-size: 12px;
  font-weight: 800;
}

.status-stack span:first-child {
  border-color: rgba(200, 164, 93, 0.36);
  background: #fffaf0;
  color: #806327;
}

.map-stage {
  height: 660px;
  padding: 0;
  overflow: hidden;
  background: #eef2f5;
}

#networkMap {
  display: block;
  width: 100%;
  height: 100%;
}

.edge-line {
  opacity: 0.88;
  transition:
    opacity 160ms ease,
    stroke-width 160ms ease;
}

.edge-line.is-secondary {
  opacity: 0.34;
}

.edge-line.is-muted {
  opacity: 0.035;
}

.edge-line.is-active {
  opacity: 1;
  stroke-width: 4.5;
}

.edge-label {
  fill: #17283b;
  font-size: 11px;
  font-weight: 800;
  pointer-events: none;
}

.edge-label-pill,
.node-label-pill {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(28, 48, 68, 0.16);
  stroke-width: 1;
  filter: drop-shadow(0 5px 14px rgba(11, 31, 51, 0.1));
}

.node {
  cursor: pointer;
  outline: none;
}

.node circle {
  transform-box: fill-box;
  transform-origin: center;
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.node:hover circle,
.node:focus-visible circle,
.node.is-active circle {
  filter: drop-shadow(0 14px 20px rgba(11, 31, 51, 0.25));
  transform: scale(1.05);
}

.node-label {
  fill: #0b1f33;
  font-size: 13px;
  font-weight: 800;
  pointer-events: none;
}

.node-sub {
  fill: #667483;
  font-size: 10px;
  font-weight: 700;
  pointer-events: none;
}

.node-icon {
  fill: none;
  stroke: #fff;
  stroke-width: 2.35px;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.node-hit {
  pointer-events: all;
}

.map-footer {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 12px 20px 16px;
  border-top: 1px solid var(--hairline);
  background: #ffffff;
}

.relationship-list {
  display: flex;
  min-width: 0;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.relation-pill {
  display: inline-flex;
  min-width: max-content;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #26384a;
  font-size: 12px;
  font-weight: 700;
}

.relation-line {
  width: 26px;
  height: 0;
  border-top: 3px solid var(--relation-color);
  border-radius: 999px;
}

.detail-panel {
  border: 0;
  border-left: 1px solid var(--hairline);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.99)),
    #fff;
  box-shadow: none;
  overflow: auto;
}

.map-count {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.map-count strong {
  color: var(--ink);
}

.detail-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.detail-head {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}

.detail-avatar {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(200, 164, 93, 0.12),
    0 14px 28px rgba(11, 31, 51, 0.16);
}

.detail-panel h2 {
  margin: 6px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.detail-panel p {
  color: #465769;
  font-size: 14px;
  line-height: 1.75;
}

.industry-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1f4f7;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0 14px;
}

.detail-actions a,
.detail-actions button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(96, 113, 118, 0.22);
  border-radius: 9px;
  background: #fff;
  color: #26384a;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.detail-actions a {
  border-color: var(--teal-strong);
  background: var(--teal-strong);
  color: #fff;
}

.detail-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin: 4px 0 12px;
  border-bottom: 1px solid var(--hairline);
}

.detail-tabs span {
  padding: 10px 4px 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.detail-tabs span:first-child {
  color: var(--teal-strong);
  box-shadow: inset 0 -2px 0 var(--gold);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}

.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 93, 0.28);
  background: #fffaf0;
  color: #70582b;
  font-size: 12px;
  font-weight: 800;
}

.info-block {
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
}

.info-block h3 {
  margin-bottom: 7px;
  font-size: 14px;
}

.info-block ul {
  margin: 0;
  padding-left: 18px;
  color: #465769;
  font-size: 13px;
  line-height: 1.7;
}

.permission {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}

.permission span,
.status-grid span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(96, 113, 118, 0.18);
  border-radius: 7px;
  background: #fff;
  color: #4b5f64;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.permission span:first-child,
.status-grid span:first-child {
  border-color: rgba(200, 164, 93, 0.34);
  background: #fffaf0;
  color: #806327;
}

.empty-state {
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.company-page {
  margin-top: 16px;
}

.company-profile {
  display: grid;
  gap: 14px;
}

.company-back-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.back-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--panel-shadow);
}

.back-link::before {
  margin-right: 8px;
  color: var(--gold);
  content: "←";
}

.company-hero,
.company-detail-grid,
.company-network-panel,
.company-partners {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.company-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 20px;
  align-items: center;
  padding: 22px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fafb 56%, #fffaf0 100%),
    #fff;
}

.company-title-block {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.company-title-block h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.company-title-block p:last-child {
  max-width: 840px;
  margin-bottom: 0;
  color: #465769;
  line-height: 1.8;
}

.company-hero-metrics {
  display: grid;
  gap: 8px;
}

.company-hero-metrics span {
  display: grid;
  gap: 2px;
  min-height: 58px;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(28, 48, 68, 0.12);
  border-radius: 10px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.company-hero-metrics strong {
  color: var(--ink);
  font-size: 15px;
}

.company-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.company-info-card {
  min-height: 190px;
  padding: 18px;
  border-right: 1px solid var(--hairline);
}

.company-info-card:last-child {
  border-right: 0;
}

.company-info-card p {
  color: #465769;
  font-size: 13px;
  line-height: 1.75;
}

.company-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.company-chip-list span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(200, 164, 93, 0.28);
  border-radius: 999px;
  background: #fffaf0;
  color: #70582b;
  font-size: 12px;
  font-weight: 800;
}

.company-network-panel,
.company-partners {
  padding: 18px;
}

.company-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.company-section-heading p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
}

.company-graph-scroll {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #eef2f5;
  -webkit-overflow-scrolling: touch;
}

.company-graph {
  display: block;
  width: 100%;
  min-width: 760px;
  height: auto;
}

.company-graph-node {
  outline: none;
}

.company-graph-node.is-ready {
  cursor: pointer;
}

.company-graph-node.is-ready:hover circle,
.company-graph-node.is-ready:focus-visible circle {
  filter: drop-shadow(0 12px 18px rgba(11, 31, 51, 0.2));
}

.company-graph-node.is-pending {
  cursor: not-allowed;
}

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

.partner-card {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 92px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.partner-card:hover,
.partner-card:focus-visible {
  border-color: rgba(200, 164, 93, 0.56);
  box-shadow: var(--panel-shadow);
}

.partner-card.is-pending {
  color: #6b7785;
  background: #f6f8fa;
}

.partner-card-line {
  width: 26px;
  height: 0;
  border-top: 3px solid var(--partner-color);
  border-radius: 999px;
}

.partner-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.partner-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.partner-card > span:last-child {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f1f4f7;
  color: #334155;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.content-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.content-card {
  padding: 22px;
  border-radius: 14px;
}

.content-card p,
.content-card li {
  color: #465769;
  font-size: 14px;
  line-height: 1.75;
}

.number-list {
  margin: 12px 0 0;
  padding-left: 22px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.accent-card {
  border-color: rgba(200, 164, 93, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.76), rgba(255, 255, 255, 0.98)),
    #fff;
}

.mail-link {
  width: 100%;
  margin-top: 12px;
  padding: 10px 14px;
}

.launch-band {
  margin-top: 18px;
  padding: 22px;
  border-radius: 14px;
}

.section-heading {
  margin-bottom: 16px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 162px;
  padding: 15px;
  border: 1px solid rgba(96, 113, 118, 0.18);
  border-radius: 8px;
  background: var(--surface-soft);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #8b7036;
  font-size: 12px;
  font-weight: 800;
}

.timeline strong {
  display: block;
  margin-bottom: 6px;
  color: #0b1f33;
}

.timeline p {
  margin-bottom: 0;
  color: #465769;
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  padding: 22px 0 34px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .command-strip {
    grid-template-columns: 1fr;
  }

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

  .experience-grid {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .detail-panel {
    grid-column: 1 / -1;
    min-height: auto;
    max-height: none;
  }

  .content-band,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .company-hero,
  .company-detail-grid,
  .partner-list {
    grid-template-columns: 1fr 1fr;
  }

  .company-info-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    display: grid;
    padding: 16px 0;
    position: static;
  }

  h1 {
    font-size: 20px;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .command-strip,
  .command-metrics {
    grid-template-columns: 1fr;
  }

  .metric-row,
  .experience-grid,
  .content-band,
  .timeline {
    grid-template-columns: 1fr;
  }

  .control-panel,
  .detail-panel {
    min-height: auto;
  }

  .map-panel-header,
  .map-footer {
    grid-template-columns: 1fr;
  }

  .status-stack {
    justify-content: flex-start;
  }

  .company-back-row,
  .company-section-heading {
    align-items: start;
    flex-direction: column;
  }

  .company-hero,
  .company-detail-grid,
  .partner-list {
    grid-template-columns: 1fr;
  }

  .company-title-block {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .company-title-block h2 {
    font-size: 23px;
  }

  .company-info-card {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .company-info-card:last-child {
    border-bottom: 0;
  }

  .map-stage {
    height: auto;
    min-height: 430px;
    overflow-x: auto;
  }

  #networkMap {
    width: 920px;
    height: 620px;
  }

  .company-graph {
    width: 820px;
  }
}

@media (max-width: 520px) {
  .site-header,
  .command-strip,
  .experience-grid,
  .company-page,
  .content-band,
  .launch-band,
  .site-footer {
    width: min(100% - 20px, 1360px);
  }

  .brand-lockup {
    align-items: flex-start;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 18px;
  }

  .hero-kicker {
    font-size: 18px;
  }

  .status-grid,
  .permission {
    grid-template-columns: 1fr;
  }
}
