/* Suomen tekoälyvalinnat 2027 · design system */

:root {
  /* Tutke palette, refined for cinematic use */
  --bg:           #f1ece2;        /* warm parchment, slightly cooler than brand */
  --bg-alt:       #e6dfd1;
  --bg-deep:      #ddd4c2;
  --ink:          #28291f;        /* deep olive-charcoal */
  --ink-soft:     #4a4d3e;
  --ink-mute:     #7a7768;
  --ink-faint:    #a39e8e;
  --rule:         #c9c2b1;
  --rule-soft:    #d8d2c2;

  /* Dark mode (hero, section breaks, ministry viz) */
  --night:        #1a1c15;
  --night-2:      #232619;
  --night-soft:   #2e3122;
  --night-rule:   #3a3d2c;
  --night-ink:    #d8d4c4;
  --night-mute:   #8a8775;

  /* Accents */
  --teal:         #2d5a5a;
  --teal-bright:  #4a7c7c;
  --teal-glow:    #69a3a3;
  --amber:        #b07a3a;
  --rust:         #a04a2a;
  --indigo:       #3a4a7a;
  --moss:         #4a6a3a;
  --rose:         #a04a5a;

  /* Type */
  --serif: "EB Garamond", "Times New Roman", Georgia, serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --sans:  "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale */
  --max:   1180px;
  --read:  720px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

::selection { background: var(--teal); color: var(--bg); }
em, i { font-style: normal; }

a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .15s ease;
}
a:hover { color: var(--teal-bright); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

button { font-family: inherit; cursor: pointer; }

/* Mono micro-labels */
.mono {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.mono-num {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

/* Container */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}
.read-wrap {
  max-width: var(--read);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Rule */
.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }
.rule-double {
  height: 5px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: transparent;
  margin: 0;
}

/* ======= TOP CHROME ======= */

.chrome {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 14px 2rem;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: linear-gradient(to bottom, rgba(241,236,226,0.96) 0%, rgba(241,236,226,0.85) 70%, rgba(241,236,226,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}
.chrome > * { pointer-events: auto; }

.chrome.over-night {
  color: var(--night-mute);
  background: linear-gradient(to bottom, rgba(26,28,21,0.92) 0%, rgba(26,28,21,0.7) 70%, rgba(26,28,21,0) 100%);
}

.chrome-logo {
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ink);
}
.chrome.over-night .chrome-logo { color: var(--night-ink); }

.chrome-meta { color: var(--ink-faint); }
.chrome.over-night .chrome-meta { color: var(--night-mute); opacity: .7; }

.chrome-spacer { flex: 1; }

.chrome-link {
  color: inherit;
  text-decoration: none;
  border: 1px solid currentColor;
  padding: 6px 12px;
  border-radius: 2px;
  background: transparent;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all .2s ease;
}
.chrome-link:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.chrome.over-night .chrome-link:hover {
  background: var(--night-ink);
  color: var(--night);
  border-color: var(--night-ink);
}

/* Accent variant — used for the primary read-text action */
.chrome-link--accent {
  color: var(--ink);
  border-color: var(--ink);
}
.chrome-link--accent:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.chrome.over-night .chrome-link--accent {
  color: #a8d4d4;
  border-color: #a8d4d4;
}
.chrome.over-night .chrome-link--accent:hover {
  background: #a8d4d4;
  color: var(--night);
  border-color: #a8d4d4;
}

/* Reading-progress bar */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  z-index: 51;
  pointer-events: none;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--teal);
  transition: width .12s linear;
}

/* ======= HERO ======= */

.hero-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--night);
  color: var(--night-ink);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* full-bleed, single continuous field — no mask seams */
  opacity: 1;
}

/* Right-side technical data sheet */
.hero-sheet {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  z-index: 3;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--night-mute);
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--night-rule);
  background: rgba(26, 28, 21, 0.55);
  backdrop-filter: blur(4px);
  min-width: 240px;
  max-width: 280px;
}
.hero-sheet-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(105,163,163,.18);
}
.hero-sheet-row:last-of-type { border-bottom: 0; }
.hero-sheet-row span:last-child { color: var(--night-ink); font-weight: 500; }
.hero-sheet-rule { height: 1px; background: var(--night-rule); margin: 1rem 0; }
.hero-sheet-mark { font-size: 14px; letter-spacing: 0.22em; color: var(--teal-glow); margin-bottom: 4px; }
.hero-sheet-sub {
  font-family: var(--serif);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--night-ink);
  opacity: .8;
}
@media (max-width: 1080px) { .hero-sheet { display: none; } }

.hero-ticker {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: 0 50%;
  z-index: 3;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--night-mute);
  opacity: .55;
  white-space: nowrap;
  padding-left: 2.5rem;
}
@media (max-width: 1080px) { .hero-ticker { display: none; } }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 4rem;
  max-width: 1100px;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--night-mute);
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}
.hero-eyebrow .dot {
  width: 4px; height: 4px;
  background: var(--teal-bright);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 2rem;
  position: relative;
  z-index: 2;
}
/* Italic only — no color — keeps the wordmark legible */
.hero-title .hero-em {
  font-style: normal;
  font-weight: 500;
  color: var(--teal-glow);
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  font-style: normal;
  color: var(--night-ink);
  opacity: .82;
  max-width: 640px;
  margin: 0 auto 3.5rem;
  font-weight: 400;
}

.hero-quote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.4;
  color: var(--night-ink);
  max-width: 720px;
  margin: 0 auto 3rem;
  font-style: normal;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.hero-quote.in { opacity: 1; transform: translateY(0); }
.hero-quote .em-window {
  color: var(--teal-glow);
  font-weight: 500;
  font-style: normal;
  position: relative;
  white-space: nowrap;
}

.hero-foot {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--night-mute);
  opacity: .7;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
  color: var(--night-mute);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.hero-scroll svg { stroke: var(--teal-glow); }

@keyframes scrollPulse {
  0%, 100% { opacity: .6; transform: translateY(0); }
  50%      { opacity: 1;  transform: translateY(4px); }
}

/* ======= INTRO CHAPTER ======= */

.intro {
  background: var(--bg);
  padding: 10rem 0 8rem;
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) {
  .intro-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.intro-marker {
  position: sticky;
  top: 100px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.intro-marker .dash { display: block; width: 32px; height: 1px; background: var(--ink-mute); margin: 8px 0 14px; }

.intro-body {
  max-width: var(--read);
}

.intro-lede {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 2.5rem;
  font-weight: 500;
  text-wrap: balance;
}
.intro-lede .accent { color: var(--teal); font-style: normal; font-weight: 400; }

.intro-body p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.4em;
}

.intro-body p.first::first-letter {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 5rem;
  line-height: .9;
  float: left;
  margin: 6px 12px 0 -2px;
  color: var(--ink);
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  margin: 4rem 0 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.intro-stat {
  background: var(--bg);
  padding: 1.5rem 1rem;
}
.intro-stat .num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.intro-stat .num em { color: var(--teal); font-style: normal; }
.intro-stat .lbl {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.4;
}

/* ======= THEME OVERVIEW ======= */

.themes {
  background: var(--bg-alt);
  padding: 8rem 0;
  position: relative;
}

.themes-head {
  max-width: var(--read);
  margin: 0 auto 4rem;
  text-align: center;
  padding: 0 2rem;
}
.themes-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.themes-head p {
  color: var(--ink-soft);
  font-style: normal;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--ink);
  margin: 0 2rem;
  max-width: calc(var(--max) - 2rem);
  margin: 0 auto;
}
@media (max-width: 900px) { .themes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .themes-grid { grid-template-columns: 1fr; } }

.theme-cell {
  background: var(--bg);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background .3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 280px;
}
.theme-cell:hover { background: var(--bg-deep); }

.theme-cell-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.theme-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.theme-count {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.theme-cell h3 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.15;
  text-wrap: balance;
}
.theme-tag {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: auto;
}

.theme-bar {
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--accent, var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.theme-cell:hover .theme-bar { transform: scaleX(1); }

/* ======= GOAL MAP ======= */

.map {
  background: var(--night);
  color: var(--night-ink);
  padding: 4.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.map-head {
  max-width: var(--read);
  margin: 0 auto 3.5rem;
  text-align: center;
  padding: 0 2rem;
}
.map-head .eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--night-mute);
  margin-bottom: 0.85rem;
}
.map-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--night-ink);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.map-head p {
  color: var(--night-ink);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.map-stage {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  height: 440px;
  padding: 0 2rem;
}
@media (max-width: 800px) {
  .map-stage { height: 560px; }
}

.map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-node {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform .25s ease;
}
.map-node:hover { z-index: 5; }

.map-node-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent, var(--teal-glow));
  border: 1.5px solid var(--night);
  box-shadow: 0 0 0 3px rgba(105, 163, 163, .12);
  transition: all .25s ease;
}
.map-node:hover .map-node-dot,
.map-node.active .map-node-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(105, 163, 163, .25), 0 0 12px var(--accent, var(--teal-glow));
}

.map-node-label {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  color: var(--night-ink);
  background: rgba(26, 28, 21, .92);
  border: 1px solid var(--night-rule);
  padding: 6px 10px;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
  max-width: 320px;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
.map-node:hover .map-node-label,
.map-node.active .map-node-label { opacity: 1; }

.map-node-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--night);
  pointer-events: none;
}

.map-cluster-label {
  position: absolute;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--night-mute);
  opacity: .92;
  pointer-events: none;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
  line-height: 1.05;
}
.map-cluster-label > div + div { margin-top: 2px; font-style: normal; opacity: .85; }

/* CENTER NODE */
.map-core {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.map-core-ring {
  position: absolute;
  border: 1px solid var(--teal-glow);
  border-radius: 50%;
  opacity: .25;
  animation: corePulse 4s ease-in-out infinite;
}
.map-core-ring-1 { width: 130px; height: 130px; opacity: .12; animation-delay: 0s; }
.map-core-ring-2 { width: 100px; height: 100px; opacity: .2;  animation-delay: .8s; }
.map-core-ring-3 { width: 76px; height: 76px; opacity: .35; animation-delay: 1.6s; }
@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: var(--o, .25); }
  50%      { transform: scale(1.06); opacity: calc(var(--o, .25) * 1.6); }
}
.map-core-disc {
  position: relative;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #4a7c7c 0%, #2d5a5a 60%, #1a3030 100%);
  border: 1px solid var(--teal-glow);
  box-shadow: 0 0 22px rgba(105,163,163,.35), inset 0 0 16px rgba(0,0,0,.4);
  display: grid;
  place-items: center;
  text-align: center;
}
.map-core-label {
  font-family: var(--serif);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  color: var(--night-ink);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

/* Detail panel — fixed-height slot so layout doesn't jump on hover */
.map-detail {
  max-width: 760px;
  margin: 3rem auto 0;
  padding: 0 2rem;
  min-height: 230px;
}
.map-detail-card {
  background: var(--night-2);
  border: 1px solid var(--night-rule);
  padding: 1.5rem 1.75rem;
  position: relative;
}
.map-detail-num {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--teal-glow);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.map-detail h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--night-ink);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  text-wrap: balance;
}
.map-detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 700px) { .map-detail-body { grid-template-columns: 1fr; gap: 1.5rem; } }

.map-detail-body h4 {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--night-mute);
  font-weight: 500;
  margin-bottom: .8rem;
}
.map-detail-body p {
  color: var(--night-ink);
  opacity: .88;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.map-detail-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--night-rule);
  padding-top: 0.85rem;
  margin-top: 0.85rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ministry-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ministry-chip {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 4px 8px;
  border: 1px solid var(--night-rule);
  color: var(--night-mute);
  background: transparent;
  border-radius: 2px;
}

.share-btn {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--night-mute);
  background: transparent;
  border: 1px solid var(--night-rule);
  padding: 6px 12px;
  border-radius: 2px;
  transition: all .2s ease;
}
.share-btn:hover {
  background: var(--teal);
  color: var(--night-ink);
  border-color: var(--teal);
}
.share-btn-primary {
  background: var(--teal);
  color: var(--night-ink);
  border-color: var(--teal);
}
.share-btn-primary:hover { background: var(--teal-bright); border-color: var(--teal-bright); }

.map-back {
  display: block;
  margin: 0.75rem auto 0;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--night-mute);
  background: transparent;
  border: 1px solid var(--night-rule);
  padding: 6px 12px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .2s ease;
}
.map-back:hover { color: var(--night-ink); border-color: var(--teal-glow); }

.map-cta-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-glow);
  text-decoration: none;
  border-bottom: 1px solid var(--teal-glow);
  padding-bottom: 2px;
}
.map-cta-link:hover { color: var(--night-ink); border-color: var(--night-ink); }

.map-detail-empty {
  text-align: center;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--night-mute);
  opacity: .55;
  padding: 4rem 1rem;
}

.map-prompt {
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--night-mute);
  opacity: .55;
  margin-top: 1rem;
}

/* ======= CHAPTER SCROLLER ======= */

.chapters { background: var(--bg); }

/* Goal head as toggle button */
.goal-head-toggle {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.4rem 0 0.8rem 0;
  text-align: left;
  cursor: pointer;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-family: inherit;
  color: inherit;
}
.goal-head-toggle:hover { background: rgba(0,0,0,0.02); }
.goal-head-toggle .goal-title { flex: 1; margin: 0; }
.goal-toggle-indicator {
  font-size: 1.6rem;
  font-weight: 300;
  color: rgb(var(--accent));
  width: 1.5rem;
  text-align: center;
  flex-shrink: 0;
}

.goal.is-open .goal-head-toggle { border-bottom: 0; }

.goal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  flex-wrap: wrap;
}

.goal-readmore {
  background: transparent;
  border: 1px solid rgb(var(--accent));
  color: rgb(var(--accent));
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .2s ease;
}
.goal-readmore:hover {
  background: rgb(var(--accent));
  color: var(--bg);
}
.goal-readmore-close {
  border-color: rgba(0,0,0,0.3);
  color: var(--ink);
}
.goal-readmore-close:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.goal-expand {
  animation: goalExpand .35s ease-out;
}
@keyframes goalExpand {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chapter-back {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}
.chapter-back-btn {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .2s ease;
}
.chapter-back-btn:hover {
  background: var(--ink);
  color: var(--bg);
}

.chapter-lede strong {
  font-weight: 600;
  color: rgb(var(--accent));
}

.chapter {
  position: relative;
  padding: 10rem 0;
  border-top: 1px solid var(--rule);
}
.chapter:first-child { border-top: 0; }

.chapter-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  align-items: start;
}
@media (max-width: 900px) { .chapter-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

.chapter-side {
  position: sticky;
  top: 100px;
  font-family: var(--mono);
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.chapter-side-id { color: var(--accent, var(--teal)); font-weight: 600; letter-spacing: 0.22em; }
.chapter-side-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink);
  margin-top: 6px;
  line-height: 1.2;
}
.chapter-side-rule { width: 32px; height: 1px; background: var(--ink-mute); margin: 14px 0; }
.chapter-side-toc-label { color: var(--ink-faint); margin-bottom: 10px; }
.chapter-side-toc {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.chapter-side-toc li { margin-bottom: 10px; }
.chapter-side-toc button {
  display: flex;
  gap: 8px;
  align-items: baseline;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: var(--ink-soft);
  transition: color .15s ease;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
}
.chapter-side-toc button:hover { color: var(--accent, var(--teal)); }
.chapter-side-toc .toc-num {
  font-family: var(--mono);
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--accent, var(--teal));
  flex-shrink: 0;
  font-weight: 500;
}
.chapter-side-toc .toc-title { font-style: normal; }
.chapter-side .dash { display: block; width: 32px; height: 1px; background: var(--ink-mute); margin: 10px 0 16px; }

.chapter-body { max-width: var(--read); }

.chapter-eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent, var(--teal));
  margin-bottom: 1.5rem;
}

.chapter-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0 0 1.5rem;
  text-wrap: balance;
}

.chapter-tag {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0 0 2.5rem;
  max-width: 600px;
  text-wrap: balance;
}

.chapter-lede {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 3rem;
}

/* Risk → solution diagram */
.flow {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}
@media (max-width: 700px) { .flow { grid-template-columns: 1fr; } }

.flow-cell {
  padding: 2rem 1.5rem;
}
.flow-cell + .flow-cell { border-left: 1px solid var(--rule); }
@media (max-width: 700px) {
  .flow-cell + .flow-cell { border-left: 0; border-top: 1px solid var(--rule); }
}

.flow-cell .lbl {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.flow-cell.risk .lbl { color: var(--rust); }
.flow-cell.sol .lbl { color: var(--accent, var(--teal)); }

.flow-cell p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  color: var(--ink-mute);
  border-left: 1px solid var(--rule);
}
@media (max-width: 700px) {
  .flow-arrow { border-left: 0; border-top: 1px solid var(--rule); padding: .5rem 0; transform: rotate(90deg); }
}

/* Goals list inside chapter */
.goals-list { margin-top: 3rem; }

.goal {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0;
  position: relative;
}
.goal:last-child { border-bottom: 1px solid var(--rule); }

.goal-head {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  margin-bottom: 1.5rem;
}
.goal-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  font-style: normal;
  color: var(--accent, var(--teal));
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 80px;
}

.goal-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

.goal-body-single {
  padding-left: calc(80px + 1.5rem);
}
@media (max-width: 700px) { .goal-body-single { padding-left: 0; } }
.goal-body-single p {
  font-size: 17px;
  line-height: 1.75;
  text-align: justify;
  hyphens: auto;
  color: var(--ink-soft);
  margin: 0;
}

.map-detail-body-single p {
  color: var(--night-ink);
  opacity: .9;
  margin: 0 0 0.6rem;
  font-size: 17px;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .goal-body { grid-template-columns: 1fr; padding-left: 0; gap: 1.2rem; }
}

.goal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-left: calc(80px + 1.5rem);
}

.goal-body h4 {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0 0 .6rem;
}
.goal-body p { margin: 0; font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); }

.goal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-left: calc(80px + 1.5rem);
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 700px) { .goal-foot { padding-left: 0; } }

.goal-foot .ministry-chips .ministry-chip {
  border-color: var(--rule);
  color: var(--ink-mute);
  background: var(--bg-alt);
}

.goal-share {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: transparent;
  border: 1px solid var(--rule);
  padding: 6px 10px;
  border-radius: 2px;
  transition: all .15s ease;
}
.goal-share:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.goal-cta {
  margin-top: 1.5rem;
  padding-left: calc(80px + 1.5rem);
}
@media (max-width: 700px) { .goal-cta { padding-left: 0; } }

.goal-cta-card {
  background: var(--bg-alt);
  border-left: 3px solid var(--teal);
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.goal-cta-card .lbl {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.goal-cta-card .ttl { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }
.goal-cta-card a {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--bg);
  padding: 10px 16px;
  text-decoration: none;
  transition: background .15s ease;
}
.goal-cta-card a:hover { background: var(--teal-bright); }

/* ======= MINISTRY VIZ ======= */

.ministry {
  background: var(--night);
  color: var(--night-ink);
  padding: 9rem 0;
  position: relative;
}

.ministry-head {
  max-width: var(--read);
  margin: 0 auto 4rem;
  text-align: center;
  padding: 0 2rem;
}
.ministry-head .eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--night-mute);
  margin-bottom: 1.5rem;
}
.ministry-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--night-ink);
  text-wrap: balance;
}
.ministry-head p {
  color: var(--night-ink);
  max-width: 580px;
  margin: 0 auto;
}

.ministry-stage {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.ministry-svg {
  width: 100%;
  height: auto;
  max-height: 700px;
  display: block;
  overflow: visible;
}

.ministry-legend {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--night-mute);
}
.ministry-legend .item { display: flex; align-items: center; gap: 8px; }
.ministry-legend .swatch-line {
  width: 14px;
  height: 1px;
  border-radius: 0;
  background: #69a3a3;
}
.ministry-legend-active { color: var(--night-ink) !important; font-style: normal; text-transform: none; letter-spacing: 0; font-family: var(--serif); font-size: 13px; }

/* ======= CLOSING / CTA ======= */

.closing {
  background: var(--bg);
  padding: 9rem 0 7rem;
  text-align: center;
}
.closing-eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2rem;
}
.closing h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin: 0 auto 2rem;
  max-width: 900px;
  text-wrap: balance;
}
.closing h2 em { color: var(--teal); font-style: normal; }
.closing p {
  font-size: 1.15rem;
  font-style: normal;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 3rem;
}
.closing-actions {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary, .btn-secondary {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 22px;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: all .2s ease;
  border: 1px solid var(--ink);
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--teal); border-color: var(--teal); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bg); }

/* ======= FOOTER ======= */

.foot {
  background: var(--night);
  color: var(--night-mute);
  padding: 4rem 0 2.5rem;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 0 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.foot-mark {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--night-ink);
  margin-bottom: 1rem;
}
.foot-mark + .desc {
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: 0;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--night-mute);
  font-style: normal;
}

.foot h4 {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--night-ink);
  margin: 0 0 1rem;
  font-weight: 500;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: .6rem; }
.foot a { color: var(--night-mute); text-decoration: none; transition: color .15s ease; }
.foot a:hover { color: var(--night-ink); }

.foot-bot {
  border-top: 1px solid var(--night-rule);
  margin: 3rem auto 0;
  padding: 1.5rem 2rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--night-mute);
  opacity: .6;
  max-width: var(--max);
  flex-wrap: wrap;
  text-align: center;
}

/* ======= READER MODE ======= */

.reader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  overflow-y: auto;
  padding: 5rem 0 6rem;
}

.reader-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  z-index: 105;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 2px;
}

.reader-content {
  max-width: var(--read);
  margin: 0 auto;
  padding: 0 2rem;
}

.reader h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  margin: 0 0 .5rem;
}
.reader .reader-org {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.reader h2 {
  font-size: 1.85rem;
  font-weight: 500;
  margin: 4rem 0 1rem;
  letter-spacing: -0.012em;
}
.reader h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2.5rem 0 .8rem;
  letter-spacing: -0.005em;
}
.reader h3 .num {
  color: var(--teal);
  font-style: normal;
  margin-right: .5rem;
}
.reader p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.2em;
}
.reader .reader-ministries {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}

/* ======= TWEAKS panel position adjust ======= */

/* ======= MOBILE-ONLY ELEMENTS (default hidden, shown ≤700px) ======= */
.map-mobile-list,
.ministry-mobile-list { display: none; }

/* ======= TABLET (≤900px) — un-stick the side rails ======= */
@media (max-width: 900px) {
  .chapter-side { position: relative; top: auto; }
  .intro-marker { position: relative; top: auto; }
}

/* ======= MOBILE PASS (≤700px) ======= */
@media (max-width: 700px) {
  /* Top chrome — tighten so logo + reader button fit */
  .chrome { gap: 0.8rem; padding: 10px 1rem; font-size: 13px; }
  .chrome-logo { letter-spacing: 0.18em; }
  .chrome-link { padding: 5px 10px; font-size: 13px; letter-spacing: 0.12em; }

  /* Hero */
  .hero-title { font-size: clamp(2.6rem, 13vw, 4.5rem); }
  .hero-content { padding: 5rem 1.25rem 4rem; }
  .hero-eyebrow { gap: 0.7rem; flex-wrap: wrap; margin-bottom: 2rem; }
  .hero-sub { margin-bottom: 2.5rem; }
  .hero-quote { margin-bottom: 2rem; }
  .hero-quote .em-window { white-space: normal; }
  .hero-foot { padding: 0 1rem; bottom: 1rem; gap: 0.5rem; flex-wrap: wrap; justify-content: center; text-align: center; }

  /* Intro */
  .intro { padding: 5rem 0 3.5rem; }
  .intro-grid { padding: 0 1.25rem; }
  .intro-body p { font-size: 17px; line-height: 1.7; }
  .intro-body p.first::first-letter { font-size: 3.6rem; margin: 4px 8px 0 -1px; }
  .intro-stats { grid-template-columns: 1fr; }

  /* Themes */
  .themes { padding: 4.5rem 0; }
  .themes-head { margin-bottom: 2.5rem; padding: 0 1.25rem; }
  .themes-grid { margin: 0 1.25rem; }
  .theme-cell { padding: 1.6rem 1.4rem; min-height: auto; }

  /* Goal map — full-bleed black "mental break" section between Themes and Chapters */
  .map {
    padding: 4rem 0;
    min-height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .map-head { padding: 0 1.25rem; margin-bottom: 0; }
  .map-head h2 { margin-bottom: 0; }
  .map-head p,
  .map-mobile-list,
  .map-stage,
  .map-detail,
  .map-prompt { display: none; }

  /* Chapter scroller — hide redundant side rail, the body already shows everything */
  .chapter { padding: 4rem 0; }
  .chapter-grid { padding: 0 1.25rem; gap: 0; }
  .chapter-side { display: none; }
  .chapter-eyebrow { margin-bottom: 1rem; }
  .chapter-tag { margin-bottom: 1.75rem; font-size: 1.1rem; }
  .chapter-lede { margin-bottom: 2rem; font-size: 17px; }
  .goal { padding: 1.75rem 0; }
  .goal-head-toggle { padding: 1rem 0 0.6rem 0; gap: 0.65rem; }
  .goal-num { font-size: 14px; }
  .goal-title { font-size: 1.1rem; line-height: 1.25; }
  .goal-meta { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .goal-readmore { padding: 8px 14px; font-size: 14px; }
  .chapter-back { margin-top: 2.5rem; padding-top: 1.5rem; }

  /* Ministry — hide radial, show stacked list */
  .ministry { padding: 4.5rem 0; }
  .ministry-head { padding: 0 1.25rem; margin-bottom: 2.5rem; }
  .ministry-svg,
  .ministry-legend { display: none; }
  .ministry-mobile-list {
    display: block;
    max-width: 540px;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  .ministry-mobile-item {
    border-top: 1px solid var(--night-rule);
    padding: 0.85rem 0;
  }
  .ministry-mobile-item:last-child { border-bottom: 1px solid var(--night-rule); }
  .ministry-mobile-name {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--night-ink);
    line-height: 1.3;
    margin-bottom: 0.3rem;
  }
  .ministry-mobile-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--night-mute);
  }
  .ministry-mobile-meta .count { color: var(--teal-glow); }

  /* Closing */
  .closing { padding: 4.5rem 0 3.5rem; }
  .closing h2 { padding: 0 1.25rem; }
  .closing p { padding: 0 1.5rem; margin-bottom: 2.5rem; }
  .closing-actions { flex-direction: column; gap: 0.6rem; padding: 0 1.5rem; align-items: stretch; }
  .closing-actions a { width: 100%; text-align: center; }

  /* Footer */
  .foot { padding: 3rem 0 2rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.5rem; }
  .foot-bot { margin: 2rem 1.5rem 0; flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  /* Reader mode */
  .reader { padding: 4rem 0 4rem; }
  .reader-close { top: 1rem; right: 1rem; }
  .reader-content { padding: 0 1.25rem; }
  .reader h2 { font-size: 1.5rem; margin: 3rem 0 1rem; }
  .reader h3 { font-size: 1.05rem; }
  .reader p { font-size: 17px; }
}

@media print {
  .chrome, .progress, .hero-foot, .hero-scroll, .closing-actions, .goal-share, .share-btn, .reader-close, [data-edit-overlay] { display: none !important; }
  body { background: white; color: black; }
  .hero, .map, .ministry, .foot { background: white; color: black; padding: 2rem 0; page-break-after: always; }
  .hero-title, .map-head h2, .ministry-head h2, .closing h2 { color: black !important; }
  .map-stage { display: none; }
  .ministry-stage { display: none; }
  .chapter { padding: 2rem 0; page-break-inside: avoid; }
  .goal { page-break-inside: avoid; }
  a { color: black !important; }
}
