@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Fraunces:opsz,wght,SOFT,WONK@9..144,600..900,50,1&display=swap");

:root {
  color-scheme: light;
  --ink: #102128;
  --ink-2: #20343b;
  --muted: #5d7177;
  --faint: #7f9399;
  --paper: #fffdf7;
  --paper-strong: #ffffff;
  --wash: #edf3ee;
  --line: rgba(16, 33, 40, 0.16);
  --line-strong: rgba(16, 33, 40, 0.28);
  --teal: #006d67;
  --teal-dark: #004b49;
  --red: #bd4d37;
  --amber: #c98b2b;
  --green: #217a55;
  --warn: #9b5b00;
  --bad: #a13d36;
  --shadow: 0 28px 80px rgba(16, 33, 40, 0.14);
  --tight-shadow: 0 14px 34px rgba(16, 33, 40, 0.1);
  --radius: 10px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Archivo", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16, 33, 40, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(16, 33, 40, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    repeating-linear-gradient(135deg, rgba(0, 109, 103, 0.045) 0 1px, transparent 1px 18px),
    var(--wash);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(0, 109, 103, 0.12), transparent 28%),
    linear-gradient(295deg, rgba(189, 77, 55, 0.1), transparent 32%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

p,
small,
dd,
td {
  overflow-wrap: anywhere;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(237, 243, 238, 0.86);
  backdrop-filter: blur(22px) saturate(1.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  max-width: calc(100vw - 36px);
  margin: 0 auto;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 11px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent),
    var(--ink);
  color: var(--paper);
  box-shadow: 0 12px 24px rgba(16, 33, 40, 0.18);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transform: translateY(-1px);
}

.hero,
.section,
.page-title {
  width: min(1180px, calc(100% - 36px));
  max-width: calc(100vw - 36px);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 46px;
  align-items: center;
  min-height: min(760px, calc(100vh - 68px));
  padding: 68px 0 54px;
}

.hero::after,
.page-title::after {
  position: absolute;
  right: 8px;
  bottom: 20px;
  width: 126px;
  height: 126px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, var(--line-strong) 1px, transparent 1px),
    linear-gradient(var(--line-strong) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.28;
  transform: rotate(-7deg);
}

.hero > div,
.page-title > div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero h1,
.page-title h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 7.1vw, 92px);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 500;
  overflow-wrap: break-word;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 11px 18px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  box-shadow: 0 16px 30px rgba(16, 33, 40, 0.16);
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(16, 33, 40, 0.18);
  text-decoration: none;
}

.compact-button {
  min-height: 36px;
  padding: 7px 12px;
  font-size: 12px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  border: 1px dashed rgba(16, 33, 40, 0.26);
  border-radius: 7px;
  content: "";
}

.map-card {
  position: relative;
  min-height: 474px;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(0, 109, 103, 0.1) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(0, 109, 103, 0.08) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(221, 235, 228, 0.96));
}

.map-line {
  position: absolute;
  inset: 60px 42px 54px;
  border-left: 3px solid rgba(0, 109, 103, 0.54);
  border-bottom: 3px solid rgba(189, 77, 55, 0.56);
  transform: skewY(-8deg);
}

.map-line::after {
  position: absolute;
  right: 34px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(189, 77, 55, 0.12);
  content: "";
}

.campus-pin {
  position: absolute;
  display: grid;
  width: 156px;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(16, 33, 40, 0.18);
  border-left: 5px solid var(--teal);
  border-radius: 9px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 14px 28px rgba(16, 33, 40, 0.12);
}

.campus-pin strong {
  font-size: 15px;
  font-weight: 900;
}

.campus-pin span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.pin-lspr {
  top: 58px;
  left: 46px;
}

.pin-binus {
  top: 172px;
  right: 34px;
  border-left-color: var(--amber);
}

.pin-umn {
  right: 76px;
  bottom: 54px;
  border-left-color: var(--red);
}

.pin-bakrie {
  left: 58px;
  bottom: 92px;
}

.section {
  padding: 82px 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section h2,
.page-title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-header p,
.page-title p {
  min-width: 0;
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  overflow-wrap: break-word;
}

.section-header > *,
.priority-strip > *,
.score-workbench > *,
.visit-board > *,
.decision-title > *,
.score-panel-head > *,
.score-control > *,
.rank-card > * {
  min-width: 0;
}

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

.card,
.summary-card,
.profile-card,
.estimate-box,
.source-list li,
.map-note,
.map-list-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.9);
  box-shadow: var(--tight-shadow);
}

.card,
.summary-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 22px;
}

.card::before,
.summary-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--red));
}

.card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 750;
  line-height: 1;
}

.card p {
  margin: 15px 0 0;
  color: var(--muted);
  font-weight: 500;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.metric strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
}

.status {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
  overflow-wrap: normal;
  text-align: center;
  text-transform: uppercase;
  word-break: normal;
}

.status.good {
  background: rgba(33, 122, 85, 0.1);
  color: var(--green);
}

.status.warn {
  background: rgba(201, 139, 43, 0.12);
  color: var(--warn);
}

.status.bad {
  background: rgba(161, 61, 54, 0.1);
  color: var(--bad);
}

.table-shell {
  overflow: auto;
  max-width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

td {
  color: var(--ink-2);
  font-weight: 500;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 253, 247, 0.86);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--teal);
  background: rgba(0, 109, 103, 0.1);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.source-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.source-list li {
  padding: 17px;
}

.source-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
}

.source-list span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.page-title {
  position: relative;
  padding: 70px 0 36px;
}

.deep-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
  gap: 28px;
  align-items: end;
}

.estimate-box {
  display: grid;
  min-width: 0;
  gap: 8px;
  padding: 22px;
}

.decision-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
  gap: 28px;
  align-items: end;
}

.decision-summary-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(140deg, rgba(0, 109, 103, 0.12), transparent 42%),
    rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow);
}

.estimate-box span,
.summary-card span,
.profile-kicker,
.cost-list dt,
.decision-summary-panel span,
.priority-strip span,
.decision-link-band span,
.score-panel-head span,
.score-editor-head span,
.risk-card span,
.visit-notes span {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estimate-box strong,
.decision-summary-panel strong {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 0.95;
}

.decision-summary-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.estimate-box small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.compact-section {
  padding-top: 48px;
}

.summary-card {
  min-height: 200px;
}

.summary-card strong {
  display: block;
  margin-top: 15px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 780;
  line-height: 0.98;
}

.summary-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 600;
  overflow-wrap: anywhere;
}

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

.priority-strip article,
.decision-link-band,
.score-results-panel,
.score-editor-card,
.risk-card,
.visit-panel,
.visit-notes article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.91);
  box-shadow: var(--tight-shadow);
}

.priority-strip article {
  min-width: 0;
  padding: 18px;
}

.priority-strip strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 0.98;
}

.priority-strip p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.decision-link-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(0, 109, 103, 0.1), transparent 58%),
    rgba(255, 253, 247, 0.92);
}

.decision-link-band strong {
  display: block;
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 0.98;
}

.decision-link-band p {
  max-width: 690px;
  margin: 9px 0 0;
  color: var(--muted);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.inline-next-step {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 18px;
  background: rgba(255, 253, 247, 0.72);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.inline-next-step span {
  color: var(--faint);
  font-size: 12px;
  text-transform: uppercase;
}

.inline-next-step a {
  font-weight: 900;
}

.score-workbench {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.76fr);
  gap: 16px;
  align-items: start;
}

.score-results-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 18px;
}

.score-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.score-results,
.score-matrix,
.score-controls,
.visit-notes {
  display: grid;
  gap: 12px;
}

.rank-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.68);
}

.rank-card > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
}

.rank-card strong {
  font-size: 15px;
  font-weight: 900;
}

.rank-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.rank-card b {
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.score-editor-card {
  min-width: 0;
  overflow: hidden;
  padding: 20px;
}

.score-editor-head h3 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 0.98;
}

.score-editor-head p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.score-control {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(130px, 180px) 30px;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.score-control span {
  display: grid;
  gap: 3px;
  font-size: 14px;
  font-weight: 900;
}

.score-control small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.score-control input {
  width: 100%;
  accent-color: var(--teal);
}

.score-control output {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 850;
  text-align: right;
}

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

.risk-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
}

.risk-card.important {
  border-color: rgba(189, 77, 55, 0.38);
  background:
    linear-gradient(135deg, rgba(189, 77, 55, 0.09), transparent 44%),
    rgba(255, 253, 247, 0.94);
}

.risk-card h3 {
  margin: 11px 0 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 0.98;
}

.risk-card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.risk-card a {
  display: inline-flex;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 900;
}

.visit-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
  gap: 16px;
  align-items: start;
}

.visit-panel {
  min-width: 0;
  padding: 20px;
}

.checklist-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.checklist-progress span {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(0, 109, 103, 0.1);
  padding: 7px 10px;
  color: var(--teal-dark);
  font-weight: 900;
}

.checklist-progress strong {
  color: var(--ink);
  font-weight: 900;
}

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

.checklist-grid label {
  display: flex;
  min-width: 0;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
}

.checklist-grid input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.visit-notes article {
  padding: 18px;
}

.visit-notes strong {
  display: block;
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: 29px;
  line-height: 0.98;
}

.visit-notes p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 16px;
  align-items: stretch;
}

.osm-map {
  height: 590px;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.leaflet-container {
  font-family: var(--font-body);
}

.leaflet-popup-content-wrapper {
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(16, 33, 40, 0.25);
}

.map-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.map-note {
  min-width: 0;
  padding: 18px;
  background: var(--ink);
  color: var(--paper);
}

.map-note p {
  margin: 8px 0 0;
  color: rgba(255, 253, 247, 0.74);
  font-size: 14px;
  font-weight: 600;
}

.map-list {
  display: grid;
  gap: 10px;
}

.map-list-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.map-list-item:hover,
.map-list-item:focus-visible,
.map-list-item.is-selected {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.96);
  outline: none;
  transform: translateX(-3px);
}

.map-list-item span {
  display: grid;
  gap: 2px;
}

.map-list-item strong {
  font-weight: 900;
}

.map-list-item small {
  color: var(--muted);
  font-weight: 600;
}

.map-list-item b {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.origin-map-pin,
.campus-map-pin {
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.origin-map-pin {
  width: 30px !important;
  height: 30px !important;
  margin: -15px 0 0 -15px !important;
  background: var(--ink);
  box-shadow: 0 0 0 7px rgba(16, 33, 40, 0.14);
}

.origin-map-pin span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--paper);
}

.campus-map-pin {
  width: 28px !important;
  height: 28px !important;
  margin: -28px 0 0 -14px !important;
  border: 3px solid var(--paper);
  background: var(--teal);
  box-shadow: 0 10px 20px rgba(16, 33, 40, 0.24);
}

.campus-map-pin::after {
  position: absolute;
  bottom: -8px;
  width: 10px;
  height: 10px;
  background: inherit;
  content: "";
  transform: rotate(45deg);
}

.campus-map-pin.medium {
  background: var(--amber);
}

.campus-map-pin.conditional {
  background: var(--red);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  counter-reset: campus-card;
}

.profile-card {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 18px;
  overflow: hidden;
  padding: 24px;
}

.profile-card::before {
  position: absolute;
  top: 18px;
  right: 20px;
  counter-increment: campus-card;
  content: "0" counter(campus-card);
  color: rgba(16, 33, 40, 0.1);
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 900;
  line-height: 0.8;
}

.profile-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.profile-card h3 {
  margin: 7px 0 0;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 790;
  line-height: 0.98;
}

.profile-card-head p {
  margin: 9px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.profile-card-head > strong {
  flex: 0 0 auto;
  border: 1px solid rgba(0, 109, 103, 0.2);
  border-radius: 999px;
  background: rgba(0, 109, 103, 0.1);
  padding: 9px 11px;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.cost-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
}

.cost-list div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
}

.cost-list dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.source-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.source-chips > span {
  flex: 0 0 auto;
  color: var(--faint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(0, 109, 103, 0.22);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(0, 109, 103, 0.08);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: normal;
}

.source-chip:hover {
  border-color: rgba(0, 109, 103, 0.5);
  background: rgba(0, 109, 103, 0.13);
  text-decoration: none;
}

.table-sources {
  margin-top: 9px;
  border-top: 0;
  padding-top: 0;
}

.profile-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.profile-footer a {
  font-weight: 900;
}

.table-caption {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.footer {
  width: min(1180px, calc(100% - 36px));
  max-width: calc(100vw - 36px);
  margin: 0 auto;
  padding: 40px 0 58px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

@media (prefers-reduced-motion: no-preference) {
  .hero h1,
  .page-title h1,
  .hero-panel,
  .card,
  .summary-card,
  .score-editor-card,
  .score-results-panel,
  .risk-card,
  .visit-panel,
  .visit-notes article,
  .profile-card,
  .table-shell,
  .osm-map {
    animation: rise-in 680ms ease both;
  }

  .hero-panel,
  .summary-card:nth-child(2),
  .profile-card:nth-child(2) {
    animation-delay: 90ms;
  }

  .summary-card:nth-child(3),
  .profile-card:nth-child(3) {
    animation-delay: 160ms;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  .map-card {
    min-height: 390px;
  }

  .grid,
  .deep-title,
  .decision-title,
  .map-layout,
  .profile-grid,
  .summary-grid,
  .assumption-grid,
  .priority-strip,
  .score-workbench,
  .visit-board,
  .section-header {
    grid-template-columns: 1fr;
  }

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

  .score-results-panel {
    position: static;
  }

  .section-header {
    align-items: flex-start;
  }

  .section-header p,
  .page-title p {
    width: 100%;
    max-width: 640px;
  }

  .osm-map {
    height: 470px;
    min-height: 470px;
  }
}

@media (max-width: 560px) {
  body {
    width: 100vw;
    max-width: 100vw;
  }

  .hero,
  .section,
  .page-title,
  .footer,
  .nav {
    width: 100vw;
    max-width: 100vw;
    overflow-x: clip;
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-links {
    display: grid;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    flex-wrap: wrap;
    gap: 4px;
    overflow-x: visible;
    font-size: 12px;
    white-space: normal;
  }

  .nav-links a {
    padding: 7px 8px;
    text-align: center;
  }

  .hero h1,
  .page-title h1 {
    font-size: 34px;
    line-height: 0.94;
  }

  .deep-title h1 {
    font-size: 35px;
  }

  .lead {
    font-size: 16px;
  }

  .hero {
    padding: 44px 14px 46px;
  }

  .section {
    padding: 54px 14px;
  }

  .page-title {
    padding: 48px 14px 24px;
  }

  .section-header {
    gap: 14px;
  }

  .section h2,
  .page-title h2 {
    font-size: 32px;
    line-height: 1;
  }

  .section-header p,
  .page-title p,
  .summary-card p,
  .card p,
  .estimate-box small {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .hero > div,
  .page-title > div,
  .section-header,
  .hero-panel,
  .estimate-box,
  .decision-summary-panel,
  .summary-grid,
  .grid,
  .priority-strip,
  .score-workbench,
  .risk-grid,
  .visit-board,
  .profile-grid,
  .map-layout {
    width: 100%;
    max-width: calc(100vw - 28px);
  }

  .decision-summary-panel p,
  .priority-strip p,
  .decision-link-band p,
  .rank-card p,
  .score-editor-head p,
  .risk-card p,
  .visit-notes p {
    width: auto;
    max-width: 100%;
  }

  .summary-card,
  .card,
  .priority-strip article,
  .decision-summary-panel,
  .decision-link-band,
  .score-results-panel,
  .score-editor-card,
  .risk-card,
  .visit-panel,
  .visit-notes article,
  .estimate-box,
  .profile-card,
  .map-note,
  .map-list-item,
  .hero-panel,
  .table-shell,
  .osm-map {
    width: 100%;
    max-width: 100%;
  }

  .decision-link-band,
  .score-panel-head,
  .checklist-progress {
    align-items: flex-start;
    flex-direction: column;
  }

  .score-panel-head {
    align-items: stretch;
  }

  .risk-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .rank-card {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .rank-card b {
    grid-column: 2;
    font-size: 28px;
  }

  .score-control {
    grid-template-columns: 1fr 42px;
  }

  .score-control input {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .score-control output {
    grid-column: 2;
    grid-row: 1;
  }

  .button {
    width: 100%;
  }

  .metric {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hero-panel::before {
    inset: 10px;
  }

  .map-card {
    display: grid;
    min-height: auto;
    gap: 10px;
    padding: 18px;
  }

  .map-line {
    display: none;
  }

  .campus-pin {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 10px;
  }

  .pin-lspr {
    top: auto;
    left: auto;
  }

  .pin-binus {
    top: auto;
    right: auto;
  }

  .pin-umn {
    right: auto;
    bottom: auto;
  }

  .pin-bakrie {
    left: auto;
    bottom: auto;
  }

  .profile-card-head,
  .map-list-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-card-head > strong {
    align-self: flex-start;
  }

  .cost-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .osm-map {
    height: 390px;
    min-height: 390px;
  }
}
