:root {
  --bg: #f6f4ee;
  --paper: #fffdf8;
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: #ffffff;
  --line: rgba(17, 24, 39, 0.1);
  --text: #172033;
  --muted: #5e6676;
  --accent: #0f766e;
  --accent-soft: #d8f1ee;
  --shadow: 0 22px 80px rgba(21, 27, 38, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(73, 161, 145, 0.12), transparent 24rem),
    radial-gradient(circle at top right, rgba(233, 196, 106, 0.12), transparent 26rem),
    linear-gradient(180deg, #f4f8f7 0%, var(--bg) 34%, #f9f7f0 100%);
  font-family: "Avenir Next", "Segoe UI", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
}

.site-shell::before {
  top: 5rem;
  left: -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(70, 149, 187, 0.12);
}

.site-shell::after {
  right: -6rem;
  bottom: 8rem;
  width: 22rem;
  height: 22rem;
  background: rgba(224, 153, 76, 0.1);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(250, 249, 244, 0.84);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand-kicker,
.section-kicker,
.label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b7280;
}

.brand-title {
  margin: 0.3rem 0 0;
  max-width: 44rem;
  font-family: "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  font-size: clamp(1.2rem, 1rem + 1vw, 2rem);
  line-height: 1.05;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--text);
}

.mobile-nav {
  display: none;
  padding: 0 0 1rem;
}

.mobile-nav.is-open {
  display: grid;
  gap: 0.8rem;
}

.hero {
  padding: 5rem 0 3.5rem;
}

.hero-copy-wrap {
  max-width: 64rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: rgba(216, 241, 238, 0.6);
  color: #0f5d57;
  border-radius: 999px;
  padding: 0.6rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero h2,
.section-title {
  margin: 1rem 0 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  font-size: clamp(2.4rem, 1.4rem + 3vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.section-title {
  font-size: clamp(2rem, 1.3rem + 1.4vw, 3.2rem);
}

.hero-copy,
.section-copy,
.stat-body,
.task-card p,
.step-card p,
.resource-card p,
.modal-copy,
.footer-note {
  color: var(--muted);
  line-height: 1.8;
}

.hero-copy {
  max-width: 44rem;
  margin-top: 1.4rem;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, #103d45 0%, #195f62 100%);
  color: white;
  box-shadow: 0 18px 40px rgba(15, 55, 60, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.hero-panel,
.overview-figure-panel {
  position: relative;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.65) 100%);
  box-shadow: var(--shadow);
}

.hero-figure,
.overview-figure {
  display: block;
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(23, 32, 51, 0.08);
}

.overview-figure-panel {
  margin-top: 1.6rem;
  padding: 1rem;
}

.overview-figure {
  max-height: none;
}

.overview-caption {
  padding: 0 0.35rem 0.15rem;
}

.hero-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-caption strong {
  display: block;
  font-size: 1rem;
}

.metrics-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-card,
.task-card,
.resource-card,
.step-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.25rem;
  background: var(--card);
}

.stat-value {
  margin: 0.8rem 0 0;
  font-size: 1rem;
  line-height: 1.55;
}

.section {
  padding: 3.8rem 0;
}

.compact-section {
  padding-top: 2.2rem;
  padding-bottom: 2.8rem;
}

.section.alt {
  background: rgba(255, 255, 255, 0.56);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 52rem;
}

.section-copy {
  margin-top: 1rem;
  font-size: 1rem;
}

.compact-heading {
  max-width: 46rem;
}

.compact-title {
  font-size: clamp(1.35rem, 1rem + 0.8vw, 2rem);
}

.compact-copy {
  font-size: 0.92rem;
}

.tasks-grid,
.extras-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

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

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

.metric-family-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
  align-items: start;
}

.metric-family {
  padding: 1.35rem 1.3rem;
  border-radius: 22px;
  background: var(--family-color);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 8px 24px rgba(21, 27, 38, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-family-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.metric-family-count {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  min-width: 2.4rem;
  font-feature-settings: "tnum" 1;
}

.metric-family-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.metric-family-purpose {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.metric-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.metric-item {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, 0.05);
  font-size: 0.82rem;
  line-height: 1.35;
}

.metric-abbr {
  font-weight: 600;
  color: var(--text);
  font-feature-settings: "tnum" 1;
  min-width: 6.4rem;
  flex-shrink: 0;
}

.metric-full {
  color: var(--muted);
  font-size: 0.78rem;
}

.metric-findings {
  margin-top: 1.8rem;
}

.metric-findings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.85rem;
}

.metric-finding {
  padding: 1.05rem 1.15rem;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(21, 27, 38, 0.03);
}

.metric-finding-title {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.metric-finding p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--muted);
}

.metric-figure-board {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.metric-figure-card {
  margin: 0;
  padding: 1.2rem 1.2rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgba(21, 27, 38, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.metric-figure-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 24, 39, 0.05);
}

.metric-figure-caption {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
  padding: 0 0.15rem;
}

.metric-figure-caption strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 0.25rem;
}

.task-card {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: 1.4rem;
  cursor: pointer;
  background: var(--task-color, #ffffff);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.task-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.task-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(21, 27, 38, 0.13);
}

.task-card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.open-pill {
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  color: #475569;
}

.task-title {
  margin: 0.65rem 0 0;
  font-size: 1.36rem;
}

.task-thumb {
  margin-top: 1rem;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.75);
}

.resource-grid,
.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.4rem;
  align-items: start;
}

.resource-panels,
.steps {
  display: grid;
  gap: 1rem;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.reference-card {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 14px 40px rgba(21, 27, 38, 0.05);
}

.reference-entry-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.reference-entry {
  padding: 0.8rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.reference-entry-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.4;
}

.reference-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dashed rgba(15, 118, 110, 0.45);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.reference-link:hover,
.reference-link:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.reference-citation {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
}

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

.resource-card {
  padding: 1.3rem;
  background: var(--resource-color, #ffffff);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 24, 39, 0.08);
  font-size: 0.92rem;
}

.pill-link {
  gap: 0.35rem;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(21, 27, 38, 0.04);
  transition: background 0.18s ease, border-color 0.18s ease,
    color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.pill-link::after {
  content: "↗";
  font-size: 0.78rem;
  line-height: 1;
  opacity: 0.45;
  transform: translate(0, 0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.pill-link:hover,
.pill-link:focus-visible {
  background: var(--accent-soft);
  border-color: rgba(15, 118, 110, 0.4);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.15);
}

.pill-link:hover::after,
.pill-link:focus-visible::after {
  opacity: 1;
  transform: translate(2px, -2px);
}

.pill-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(15, 118, 110, 0.18);
  background: rgba(15, 118, 110, 0.18);
}

.pill-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.step-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
}

.step-number {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f766e;
  letter-spacing: 0.12em;
}

.step-title {
  margin: 0.7rem 0 0;
  font-size: 1.08rem;
}

.footer {
  padding: 1.4rem 0 2.4rem;
}

.footer-note {
  margin: 0;
  font-size: 0.96rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
}

.modal-card {
  width: min(1240px, calc(100vw - 24px));
  max-height: min(92vh, 980px);
  overflow: hidden;
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.modal-close {
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  cursor: pointer;
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  max-height: calc(92vh - 94px);
}

.modal-media-wrap {
  display: flex;
  min-height: 0;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
  overflow: auto;
  background: linear-gradient(180deg, rgba(238, 245, 246, 0.9), rgba(248, 247, 241, 0.88));
}

.modal-media-card {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.88);
  padding: 1rem;
  overflow: hidden;
}

.modal-toolbar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.modal-tool,
.modal-zoom-label {
  min-height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.modal-tool {
  padding: 0.55rem 0.95rem;
  cursor: pointer;
}

.modal-zoom-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  padding: 0.55rem 0.95rem;
  color: var(--muted);
}

.modal-canvas {
  flex: 1 1 auto;
  min-height: 0;
  display: block;
  overflow: auto;
  padding: 1rem 0 2rem;
  cursor: grab;
  user-select: none;
}

.modal-canvas.is-dragging {
  cursor: grabbing;
}

.modal-image {
  display: block;
  width: min(100%, 1200px);
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  transition: width 180ms ease;
}

.modal-pdf-canvas {
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.zoomable {
  cursor: inherit;
}

.modal-pdf {
  display: block;
  width: min(100%, 1200px);
  max-width: 1200px;
  margin: 0 auto;
  min-height: 78vh;
  border: 0;
  border-radius: 16px;
  background: white;
  transition: width 180ms ease;
}

.modal-side {
  padding: 1.4rem;
  overflow: auto;
}

.takeaways {
  margin-top: 1.4rem;
  padding: 1.15rem;
  border-radius: 24px;
  background: var(--task-color, #f8fafc);
}

.takeaways-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.takeaway {
  display: flex;
  gap: 0.7rem;
  align-items: start;
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.58rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.54);
  flex: 0 0 auto;
}

.note-card {
  margin-top: 1rem;
  padding: 1.1rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hidden {
  display: none !important;
}

.guidance-board {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  align-items: stretch;
}

.guidance-figure-slot {
  display: grid;
}

.guidance-figure-slot .task-card {
  height: 100%;
}

.guidance-decisions {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.decision-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.decision-item {
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.decision-item:first-child {
  border-top: none;
  padding-top: 0.25rem;
}

.decision-step {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0f766e;
  text-transform: uppercase;
  padding-top: 0.18rem;
}

.decision-title {
  margin: 0;
  font-size: 1rem;
}

.decision-text {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.integration-block {
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.integration-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.integration-title {
  margin: 0.3rem 0 0;
  font-size: 1.3rem;
}

.integration-copy {
  margin: 0.6rem 0 0;
  max-width: 44rem;
  color: var(--muted);
  line-height: 1.7;
}

.integration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

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

.integration-step {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.step-code {
  margin-top: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  color: var(--text);
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 0.5rem;
  padding: 0.45rem 0.6rem;
  word-break: break-word;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .resource-grid,
  .workflow-grid,
  .modal-grid,
  .guidance-board,
  .integration-head {
    grid-template-columns: 1fr;
  }

  .tasks-grid,
  .steps,
  .resource-panels,
  .reference-grid,
  .metric-family-grid,
  .metric-findings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .modal-media-wrap {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    align-items: start;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 3rem;
  }

  .tasks-grid,
  .extras-grid,
  .resource-panels,
  .steps,
  .metrics-strip,
  .reference-grid,
  .metric-family-grid,
  .metric-findings-grid,
  .integration-steps {
    grid-template-columns: 1fr;
  }

  .metric-abbr {
    min-width: 5.6rem;
  }

  .hero h2,
  .section-title {
    line-height: 1;
  }

  .modal-card {
    max-height: 94vh;
    border-radius: 24px;
  }

  .modal-pdf {
    min-height: 62vh;
  }
}
