:root {
  --blue-950: #071b49;
  --blue-900: #003b90;
  --blue-700: #0866c6;
  --blue-100: #eaf7ff;
  --teal: #2aa7a0;
  --cyan: #20d5d2;
  --green: #7bd972;
  --yellow: #ffd44d;
  --orange: #f29c38;
  --purple: #7657b8;
  --pink: #ff6fb1;
  --ink: #152033;
  --muted: #637083;
  --line: #c7d9ea;
  --paper: #f8fbff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #dfeaf5;
  color: var(--ink);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
}

body {
  display: grid;
  place-items: start center;
  padding: 28px;
}

.board {
  position: relative;
  width: min(92vw, 800px);
  aspect-ratio: 8 / 18;
  overflow: hidden;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .98)),
    radial-gradient(circle at 87% 6%, rgba(123, 217, 114, .22), transparent 230px),
    radial-gradient(circle at 8% 8%, rgba(46, 168, 255, .2), transparent 250px),
    #ffffff;
  border: 1px solid rgba(0, 59, 144, .18);
  box-shadow: 0 28px 70px rgba(0, 59, 144, .18);
}

.board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 59, 144, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 59, 144, .055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.board::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: var(--blue-900);
}

.inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 30px 30px 88px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.logo {
  width: 172px;
  height: auto;
}

.board-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.board-tag::before {
  content: "";
  width: 36px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-900), var(--cyan), var(--yellow));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .82fr;
  gap: 16px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(0, 59, 144, .13);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(32, 213, 210, .16), transparent 150px),
    linear-gradient(110deg, rgba(255, 255, 255, .96), rgba(239, 249, 255, .86) 58%, rgba(236, 251, 247, .9)),
    repeating-linear-gradient(90deg, rgba(0, 59, 144, .045) 0 1px, transparent 1px 30px);
}

.hero::before {
  content: "SOCIAL PRESCRIBING · COMMUNITY HEALTH · SOCIAL PRESCRIBING ·";
  position: absolute;
  left: -42px;
  right: -42px;
  bottom: 34px;
  padding: 7px 0;
  color: var(--blue-900);
  background: rgba(255, 212, 77, .88);
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: .08em;
  white-space: nowrap;
  transform: rotate(-3deg);
}

.hero::after {
  content: "";
  position: absolute;
  right: 204px;
  top: 18px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(0, 59, 144, .2);
  box-shadow: 0 0 0 34px rgba(32, 213, 210, .08), 0 0 0 72px rgba(46, 168, 255, .06);
}

.title,
.scene {
  position: relative;
  z-index: 1;
}

.title h1 {
  margin: 10px 0 10px;
  color: var(--blue-950);
  font-size: 48px;
  line-height: .98;
  letter-spacing: 0;
  font-weight: 1000;
  text-shadow: .045em .045em 0 rgba(32, 213, 210, .22);
}

.title h1 span {
  display: block;
  white-space: nowrap;
}

.title h1 span:nth-child(2) {
  color: var(--blue-900);
}

.subtitle {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, #0b6ea8, #32aaa1);
  font-size: 22px;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(0, 59, 144, .16);
}

.scene {
  min-height: 182px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(0, 59, 144, .14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .74)),
    radial-gradient(circle at 66% 30%, rgba(255, 212, 77, .5), transparent 80px),
    linear-gradient(145deg, #dff8ff, #eef7e8);
}

.scene-tile {
  position: relative;
  overflow: hidden;
  min-height: 76px;
  padding: 12px;
  display: grid;
  align-content: end;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .42)),
    radial-gradient(circle at 78% 20%, rgba(0, 59, 144, .12), transparent 70px);
  border: 1px solid rgba(0, 59, 144, .1);
  color: var(--blue-900);
  font-size: 16px;
  font-weight: 1000;
}

.scene-tile::before {
  content: attr(data-icon);
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 32px;
}

.block {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 59, 144, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
}

.block-head {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 59, 144, .15);
  background: linear-gradient(90deg, rgba(234, 247, 255, .98), rgba(255, 255, 255, .9));
}

.num {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--white);
  background: var(--blue-700);
  font-size: 25px;
  font-weight: 1000;
}

.block-head h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: 26px;
  line-height: 1.15;
}

.block-head p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 750;
}

.chip-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px;
}

.chip {
  min-height: 116px;
  padding: 10px;
  display: grid;
  align-content: space-between;
  border-radius: 8px;
  color: var(--blue-900);
  background: #f3fbff;
  border: 1px solid rgba(0, 59, 144, .13);
}

.content.board-one {
  height: 100%;
  grid-template-rows: 1.03fr 1.72fr 1fr;
}

.content.board-two {
  height: 100%;
  grid-template-rows: .92fr 1.55fr .96fr;
}

.content.board-one .chip,
.content.board-two .chip {
  min-height: auto;
}

.content.board-one .table,
.content.board-two .table {
  flex: 1;
  height: 100%;
}

.content.board-one .table tr,
.content.board-two .table tr {
  height: 20%;
}

.content.board-two .table tr {
  height: 19%;
}

.chip:nth-child(2) { background: #fff8d8; }
.chip:nth-child(3) { background: #eefbe8; }
.chip:nth-child(4) { background: #f1efff; }
.chip:nth-child(5) { background: #fff1f7; }

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(0, 59, 144, .1);
}

.chip strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.25;
}

.chip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 650;
}

.table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.table th,
.table td {
  border: 1px solid rgba(0, 59, 144, .14);
  padding: 9px;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.45;
}

.table th {
  color: var(--blue-900);
  background: var(--blue-100);
  font-size: 14px;
  font-weight: 1000;
  text-align: center;
}

.table td {
  background: rgba(255, 255, 255, .8);
  color: #33465d;
  font-weight: 650;
}

.table .course {
  color: var(--blue-900);
  background: #f8fbff;
  font-size: 16px;
  font-weight: 1000;
  text-align: center;
  vertical-align: middle;
}

.psych { background: #f4fce9 !important; }
.social { background: #fff5e7 !important; }
.body { background: #eef8ff !important; }

.content {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
}

.footer img {
  width: 132px;
  filter: brightness(0) invert(1);
}

.note {
  padding: 9px 12px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

/* Refined exhibition-board hero and board-one infographic */
.hero {
  grid-template-columns: 1.08fr .82fr;
  padding: 18px;
  background:
    radial-gradient(circle at 82% 22%, rgba(32, 213, 210, .16), transparent 150px),
    linear-gradient(110deg, rgba(255, 255, 255, .96), rgba(239, 249, 255, .86) 58%, rgba(236, 251, 247, .9)),
    repeating-linear-gradient(90deg, rgba(0, 59, 144, .045) 0 1px, transparent 1px 30px);
}

.hero::before {
  content: "";
  left: 0;
  top: 0;
  right: auto;
  bottom: 0;
  width: 10px;
  padding: 0;
  background: linear-gradient(180deg, var(--blue-900), var(--cyan), var(--yellow));
  transform: none;
}

.hero::after {
  right: 42%;
  top: 22px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(0, 59, 144, .12);
  box-shadow: 0 0 0 38px rgba(32, 213, 210, .06);
}

.title h1 {
  margin: 8px 0 14px;
  font-size: 46px;
  line-height: 1.03;
  text-shadow: .035em .035em 0 rgba(32, 213, 210, .16);
}

.hero-text {
  margin: 12px 0 0;
  max-width: 410px;
  color: #40546b;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 700;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.hero-pills span {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(0, 59, 144, .15);
  font-size: 11px;
  font-weight: 900;
}

.platform-visual {
  position: relative;
  z-index: 1;
  min-height: 205px;
  border-radius: 8px;
  border: 1px solid rgba(0, 59, 144, .14);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .96) 0 58px, rgba(234, 247, 255, .78) 59px 118px, transparent 119px),
    linear-gradient(145deg, rgba(255, 255, 255, .68), rgba(238, 251, 255, .74));
}

.platform-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 128px;
  height: 128px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(0, 59, 144, .16);
  box-shadow: 0 16px 32px rgba(0, 59, 144, .12);
}

.platform-core img {
  width: 102px;
}

.platform-node {
  position: absolute;
  width: 88px;
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 8px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(0, 59, 144, .14);
  text-align: center;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 1000;
  box-shadow: 0 10px 22px rgba(0, 59, 144, .08);
}

.platform-node.n1 { left: 18px; top: 18px; border-top: 5px solid var(--cyan); }
.platform-node.n2 { right: 18px; top: 18px; border-top: 5px solid var(--yellow); }
.platform-node.n3 { left: 18px; bottom: 18px; border-top: 5px solid var(--green); }
.platform-node.n4 { right: 18px; bottom: 18px; border-top: 5px solid var(--pink); }

.content.board-one {
  grid-template-rows: .72fr 1.16fr 1.72fr;
}

.concept-duo {
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  gap: 10px;
  padding: 10px;
  flex: 1;
}

.definition-card {
  padding: 12px;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--blue-900), #0d6bb5);
}

.definition-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
  line-height: 1.25;
}

.definition-card p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.value-stack {
  display: grid;
  gap: 7px;
}

.value-mini {
  padding: 8px;
  border-radius: 8px;
  background: #f3fbff;
  border: 1px solid rgba(0, 59, 144, .13);
}

.value-mini b {
  display: block;
  color: var(--blue-900);
  font-size: 14px;
  line-height: 1.25;
}

.value-mini span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.network-map {
  position: relative;
  flex: 1;
  min-height: 275px;
  margin: 10px;
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(0, 59, 144, .08) 0 88px, transparent 89px),
    radial-gradient(circle at center, transparent 0 142px, rgba(32, 213, 210, .13) 143px 146px, transparent 147px),
    linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(239, 249, 255, .7));
  border: 1px solid rgba(0, 59, 144, .12);
}

.network-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 155px;
  height: 155px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(0, 59, 144, .16);
  box-shadow: 0 18px 34px rgba(0, 59, 144, .12);
}

.network-core img {
  width: 120px;
}

.case-node {
  position: absolute;
  width: 170px;
  min-height: 74px;
  padding: 10px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(0, 59, 144, .15);
  box-shadow: 0 12px 26px rgba(0, 59, 144, .1);
}

.case-node i {
  font-style: normal;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef8ff;
  font-size: 21px;
}

.case-node b {
  display: block;
  color: var(--blue-900);
  font-size: 14px;
  line-height: 1.2;
}

.case-node span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.35;
  font-weight: 700;
}

.case-node.c1 { left: 16px; top: 18px; border-top: 5px solid var(--green); }
.case-node.c2 { right: 16px; top: 18px; border-top: 5px solid var(--yellow); }
.case-node.c3 { left: 16px; bottom: 18px; border-top: 5px solid var(--orange); }
.case-node.c4 { right: 16px; bottom: 18px; border-top: 5px solid var(--pink); }

.case-story-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  padding: 10px;
}

.case-story {
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  gap: 7px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 59, 144, .14);
  background: rgba(248, 251, 255, .94);
}

.case-story:nth-child(2) { background: #fffaf0; }
.case-story:nth-child(3) { background: #f3fff0; }
.case-story:nth-child(4) { background: #fff4f9; }

.case-story h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 18px;
  line-height: 1.2;
}

.case-story p {
  margin: 0;
  color: #40546b;
  font-size: 11px;
  line-height: 1.42;
  font-weight: 700;
}

.case-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.case-points span {
  display: block;
  padding: 4px 6px;
  border-radius: 6px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(0, 59, 144, .1);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 850;
}

.case-qr {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
  align-items: center;
  margin-top: 2px;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 59, 144, .12);
}

.case-qr img {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  border: 1px solid rgba(0, 59, 144, .16);
}

.case-qr b {
  display: block;
  color: var(--blue-900);
  font-size: 10.5px;
  line-height: 1.2;
}

.case-qr span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.25;
  font-weight: 750;
}

.hero {
  min-height: 245px;
}

.title h1 {
  font-size: 42px;
}

.hero-text {
  margin-top: 10px;
  font-size: 12.2px;
  line-height: 1.55;
}

.platform-visual {
  min-height: 230px;
}

.scene-tile {
  padding: 42px 10px 10px;
  text-align: center;
}

.scene-tile::before {
  left: 50%;
  top: 8px;
  right: auto;
  transform: translateX(-50%);
  font-size: 28px;
}

/* Final hero polish: remove decorative circles, use clean geometric paneling. */
.hero {
  background:
    linear-gradient(128deg, rgba(255, 255, 255, .98) 0 48%, rgba(232, 248, 255, .92) 48% 72%, rgba(231, 251, 246, .94) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .74)),
    repeating-linear-gradient(90deg, rgba(0, 59, 144, .045) 0 1px, transparent 1px 30px);
}

.hero::after {
  right: 35%;
  top: 18px;
  width: 2px;
  height: 210px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 59, 144, .16), transparent);
  box-shadow:
    26px 22px 0 rgba(32, 213, 210, .14),
    -30px 64px 0 rgba(255, 212, 77, .24);
}

.platform-visual {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(238, 251, 255, .7)),
    repeating-linear-gradient(0deg, rgba(0, 59, 144, .05) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(0, 59, 144, .05) 0 1px, transparent 1px 24px);
}

.platform-core {
  box-shadow:
    0 16px 32px rgba(0, 59, 144, .12),
    0 -7px 0 rgba(32, 213, 210, .8),
    0 7px 0 rgba(255, 212, 77, .75);
}

/* Board 01 V2: denser website-to-poster layout */
.content.board-one-v2 {
  height: 100%;
  grid-template-rows: .58fr .9fr 2.55fr;
}

.v2-concept-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10px;
  padding: 10px;
}

.v2-lead {
  padding: 12px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(0, 59, 144, .96), rgba(8, 102, 198, .92)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px 26px);
}

.v2-lead b {
  display: block;
  margin-bottom: 7px;
  font-size: 20px;
  line-height: 1.2;
}

.v2-lead p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 12.2px;
  line-height: 1.55;
  font-weight: 700;
}

.v2-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.v2-principle {
  padding: 8px;
  border-radius: 8px;
  background: #f3fbff;
  border: 1px solid rgba(0, 59, 144, .13);
}

.v2-principle:nth-child(2) { background: #fff8d8; }
.v2-principle:nth-child(3) { background: #eefbe8; }
.v2-principle:nth-child(4) { background: #f1efff; }

.v2-principle b {
  display: block;
  color: var(--blue-900);
  font-size: 13px;
  line-height: 1.25;
}

.v2-principle span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10.4px;
  line-height: 1.35;
  font-weight: 700;
}

.v2-network {
  position: relative;
  flex: 1;
  min-height: 230px;
  margin: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 59, 144, .13);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(237,250,255,.78)),
    repeating-linear-gradient(0deg, rgba(0,59,144,.045) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(0,59,144,.045) 0 1px, transparent 1px 24px);
}

.v2-network::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 310px;
  height: 150px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(32, 213, 210, .22);
  border-radius: 50%;
}

.v2-network-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 135px;
  height: 135px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(0, 59, 144, .16);
  box-shadow: 0 16px 32px rgba(0, 59, 144, .12);
}

.v2-network-core img {
  width: 108px;
}

.v2-node {
  position: absolute;
  width: 180px;
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(0, 59, 144, .14);
  box-shadow: 0 10px 22px rgba(0, 59, 144, .09);
}

.v2-node i {
  font-style: normal;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef8ff;
  font-size: 20px;
}

.v2-node b {
  display: block;
  color: var(--blue-900);
  font-size: 14px;
  line-height: 1.2;
}

.v2-node span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
  font-weight: 750;
}

.v2-node.a { left: 18px; top: 18px; border-top: 5px solid var(--green); }
.v2-node.b { right: 18px; top: 18px; border-top: 5px solid var(--yellow); }
.v2-node.c { left: 18px; bottom: 18px; border-top: 5px solid var(--orange); }
.v2-node.d { right: 18px; bottom: 18px; border-top: 5px solid var(--pink); }

.v2-case-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 10px;
}

.v2-case {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 6px;
  padding: 9px;
  border-radius: 8px;
  border: 1px solid rgba(0, 59, 144, .14);
  background: #f8fbff;
}

.v2-case:nth-child(2) { background: #fffaf0; }
.v2-case:nth-child(3) { background: #f4fff1; }
.v2-case:nth-child(4) { background: #fff4f9; }

.v2-case h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 17px;
  line-height: 1.18;
}

.v2-case p {
  margin: 0;
  color: #40546b;
  font-size: 10.7px;
  line-height: 1.38;
  font-weight: 700;
}

.v2-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.v2-mini-grid span {
  display: block;
  padding: 4px 5px;
  border-radius: 6px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(0, 59, 144, .1);
  font-size: 9.5px;
  line-height: 1.28;
  font-weight: 850;
}

.v2-impact {
  color: #31435d;
  font-size: 10.2px;
  line-height: 1.32;
  font-weight: 850;
}

.v2-case-foot {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px;
  align-items: center;
  padding-top: 5px;
  border-top: 1px solid rgba(0, 59, 144, .1);
}

.v2-case-foot img {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 59, 144, .14);
  border-radius: 4px;
}

.v2-case-foot span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.2;
  font-weight: 800;
}

/* Board 01 V3: poster version of the original website layout */
.board.v3 .inner {
  grid-template-rows: auto 1fr auto;
  gap: 14px;
}

.v3-poster {
  min-height: 0;
  display: grid;
  grid-template-rows: .82fr .68fr 1.9fr .72fr;
  gap: 12px;
}

.v3-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(0, 59, 144, .13);
  background:
    radial-gradient(circle at 86% 15%, rgba(32, 213, 210, .16), transparent 180px),
    linear-gradient(130deg, rgba(255,255,255,.98) 0 52%, rgba(232,248,255,.92) 52% 76%, rgba(236,251,247,.94) 76%);
}

.v3-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(180deg, var(--blue-900), var(--cyan), var(--yellow));
}

.v3-title {
  position: relative;
  z-index: 1;
}

.v3-title h1 {
  margin: 6px 0 10px;
  color: var(--blue-950);
  font-size: 43px;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 1000;
  text-shadow: .035em .035em 0 rgba(32, 213, 210, .15);
}

.v3-title h1 span {
  display: block;
  white-space: nowrap;
}

.v3-subtitle {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, #0b6ea8, #32aaa1);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 950;
}

.v3-title p {
  margin: 10px 0 0;
  max-width: 410px;
  color: #40546b;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 720;
}

.v3-orbit {
  position: relative;
  z-index: 1;
  min-height: 245px;
  border-radius: 8px;
  border: 1px solid rgba(0, 59, 144, .14);
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(238,251,255,.72)),
    repeating-linear-gradient(0deg, rgba(0,59,144,.05) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(0,59,144,.05) 0 1px, transparent 1px 24px);
}

.v3-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 128px;
  height: 128px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(0, 59, 144, .15);
  box-shadow: 0 16px 32px rgba(0,59,144,.12);
}

.v3-orbit-core img {
  width: 104px;
}

.v3-orbit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 285px;
  height: 138px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(32, 213, 210, .22);
  border-radius: 50%;
}

.v3-node {
  position: absolute;
  width: 94px;
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(0,59,144,.14);
  color: var(--blue-900);
  text-align: center;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 1000;
  box-shadow: 0 10px 22px rgba(0,59,144,.08);
}

.v3-node:nth-child(2) { left: 18px; top: 20px; border-top: 5px solid var(--cyan); }
.v3-node:nth-child(3) { right: 18px; top: 20px; border-top: 5px solid var(--yellow); }
.v3-node:nth-child(4) { left: 18px; bottom: 20px; border-top: 5px solid var(--green); }
.v3-node:nth-child(5) { right: 18px; bottom: 20px; border-top: 5px solid var(--pink); }

.v3-concept {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 9px;
}

.v3-concept-card {
  padding: 11px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(0,59,144,.15);
}

.v3-concept-card:first-child {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-900), #0d6bb5);
}

.v3-concept-card b {
  display: block;
  color: var(--blue-900);
  font-size: 15px;
  line-height: 1.25;
}

.v3-concept-card:first-child b {
  color: var(--white);
}

.v3-concept-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10.8px;
  line-height: 1.42;
  font-weight: 720;
}

.v3-concept-card:first-child span {
  color: rgba(255,255,255,.84);
}

.v3-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  min-height: 0;
}

.v3-case {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0,59,144,.14);
  background: var(--white);
}

.v3-case:nth-child(2) { background: #fffaf0; }
.v3-case:nth-child(3) { background: #f4fff1; }
.v3-case:nth-child(4) { background: #fff4f9; }

.v3-case-mark {
  min-height: 100%;
  display: grid;
  align-content: space-between;
  padding: 8px;
  border-radius: 8px;
  color: var(--blue-900);
  background:
    linear-gradient(145deg, rgba(255,255,255,.74), rgba(255,255,255,.34)),
    linear-gradient(180deg, #e7f7ff, #ffffff);
  border-top: 6px solid var(--cyan);
  font-weight: 1000;
}

.v3-case:nth-child(2) .v3-case-mark { border-top-color: var(--yellow); background: linear-gradient(180deg, #fff4c7, #ffffff); }
.v3-case:nth-child(3) .v3-case-mark { border-top-color: var(--green); background: linear-gradient(180deg, #e4ffd9, #ffffff); }
.v3-case:nth-child(4) .v3-case-mark { border-top-color: var(--pink); background: linear-gradient(180deg, #ffe2ef, #ffffff); }

.v3-case-mark i {
  font-style: normal;
  font-size: 26px;
}

.v3-case-mark span {
  display: block;
  font-size: 13px;
  line-height: 1.05;
}

.v3-case-body {
  min-width: 0;
}

.v3-case-body h3 {
  margin: 0 0 4px;
  color: var(--blue-900);
  font-size: 17px;
  line-height: 1.2;
}

.v3-case-body p {
  margin: 0 0 7px;
  color: #40546b;
  font-size: 10.5px;
  line-height: 1.38;
  font-weight: 720;
}

.v3-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.v3-mini span {
  display: block;
  padding: 4px 5px;
  border-radius: 6px;
  color: var(--blue-900);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,59,144,.1);
  font-size: 9.4px;
  line-height: 1.25;
  font-weight: 850;
}

.v3-impact {
  margin-top: 6px;
  padding-left: 7px;
  border-left: 3px solid var(--blue-700);
  color: #31435d;
  font-size: 10px;
  line-height: 1.32;
  font-weight: 850;
}

.v3-supplement {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 7px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0,59,144,.14);
  background: rgba(255,255,255,.9);
}

.v3-supplement-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px;
  align-items: center;
  padding: 7px;
  border-radius: 8px;
  background: #f8fbff;
  border: 1px solid rgba(0,59,144,.1);
}

.v3-supplement-card img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.v3-supplement-card b {
  display: block;
  color: var(--blue-900);
  font-size: 11px;
  line-height: 1.2;
}

.v3-supplement-card span {
  display: block;
  color: var(--muted);
  font-size: 8.8px;
  line-height: 1.2;
  font-weight: 760;
}

@page {
  size: 80cm 180cm;
  margin: 0;
}

@media print {
  html,
  body {
    width: 80cm;
    height: 180cm;
    padding: 0;
    background: #ffffff;
  }

  .board {
    width: 80cm;
    height: 180cm;
    aspect-ratio: auto;
    border: 0;
    box-shadow: none;
  }
}
