.page-home {
  --home-hero-minh: min(92vh, 820px);
  --home-hero-gate: rgba(201, 160, 99, 0.5);
  --home-hero-scan: rgba(201, 160, 99, 0.72);
  --home-grid-line: rgba(74, 93, 110, 0.14);
  background-color: var(--warm-paper);
  color: var(--dark-ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.125rem, 4vw, 2rem);
}

.page-home .section-block {
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.page-home .beacon-strip {
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-red) 0 28%, var(--gold) 28% 66%, var(--grey-blue) 66% 100%);
  opacity: 0.88;
}

.page-home .section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 2.2rem;
}

.page-home .section-index {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.page-home .section-index::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 160, 99, 0));
}

.page-home .section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--dark-ink);
  font-weight: 900;
}

.page-home .section-desc {
  max-width: 42rem;
  margin: 0.75rem 0 0;
  color: var(--grey-blue);
  font-size: 1rem;
  line-height: 1.7;
}

.page-home .card-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-ink);
}

@media (min-width: 760px) {
  .page-home .container {
    max-width: 1280px;
  }
}

.page-home .home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: max(680px, 92vh);
  padding-block: clamp(4rem, 10vh, 7rem) 4rem;
  background-color: var(--dark-ink);
  isolation: isolate;
  overflow: hidden;
}

.page-home .home-hero__bg,
.page-home .home-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-home .home-hero__bg {
  z-index: 0;
}

.page-home .home-hero__image {
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
}

.page-home .home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(112deg, rgba(27, 27, 27, 0.88) 0%, rgba(43, 43, 43, 0.66) 34%, rgba(74, 93, 110, 0.56) 62%, rgba(140, 58, 43, 0.36) 100%);
}

.page-home .home-hero__slash {
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.page-home .home-hero__slash--red {
  top: 0;
  right: -8%;
  width: 34rem;
  height: 112%;
  background: linear-gradient(205deg, rgba(140, 58, 43, 0.88), rgba(140, 58, 43, 0.16));
  clip-path: polygon(62% 0, 100% 0, 86% 100%, 34% 100%);
}

.page-home .home-hero__slash--blue {
  bottom: -12%;
  left: -6%;
  width: 30rem;
  height: 78%;
  background: linear-gradient(28deg, rgba(74, 93, 110, 0.9), rgba(74, 93, 110, 0.16));
  clip-path: polygon(0 0, 52% 0, 34% 100%, 0 100%);
}

.page-home .home-hero__pulse {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 24%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: pageHomeScan 8s ease-in-out infinite;
}

@keyframes pageHomeScan {
  0% { transform: translateX(-24%) scaleX(0.6); opacity: 0.25; }
  50% { transform: translateX(140%) scaleX(1.15); opacity: 0.9; }
  100% { transform: translateX(320%) scaleX(0.6); opacity: 0.25; }
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}

.page-home .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  color: rgba(245, 240, 230, 0.72);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
}

.page-home .breadcrumb-current {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.page-home .breadcrumb-current::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.page-home .home-hero__kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-home .home-hero__kicker-line {
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
}

.page-home .hero-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  line-height: 1.15;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.3);
}

.page-home .hero-lead {
  max-width: 46rem;
  margin: 0 0 1.4rem;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.9);
}

.page-home .home-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.page-home .home-hero__tags .tag-label {
  background: rgba(245, 240, 230, 0.1);
  border: 1px solid rgba(245, 240, 230, 0.2);
  color: rgba(245, 240, 230, 0.88);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.page-home .home-hero__actions .btn-solid {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #fff;
}

.page-home .home-hero__actions .btn-outline {
  border-color: rgba(245, 240, 230, 0.45);
  color: rgba(245, 240, 230, 0.92);
}

.page-home .beacon-wrap {
  position: relative;
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
}

.page-home .beacon-art {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .beacon-console {
  position: absolute;
  top: 26%;
  left: 50%;
  transform: translateX(-50%);
  width: 74%;
  padding: 1.1rem 1.2rem;
  background: rgba(43, 43, 43, 0.89);
  border: 1px solid var(--home-hero-gate);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card), 0 12px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(6px);
  color: var(--warm-paper);
}

.page-home .beacon-console::before,
.page-home .beacon-console::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--gold);
  border-style: solid;
  pointer-events: none;
}

.page-home .beacon-console::before {
  top: 6px;
  left: 6px;
  border-width: 2px 0 0 2px;
}

.page-home .beacon-console::after {
  right: 6px;
  bottom: 6px;
  border-width: 0 2px 2px 0;
}

.page-home .beacon-console__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.65rem;
  margin-bottom: 0.65rem;
  border-bottom: 1px solid rgba(201, 160, 99, 0.28);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 230, 0.88);
}

.page-home .beacon-console .status-dot.is-live {
  animation: pageHomeBreath 3.2s ease-in-out infinite;
}

@keyframes pageHomeBreath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(92, 184, 92, 0.62); }
  50% { box-shadow: 0 0 0 6px rgba(92, 184, 92, 0); }
}

.page-home .beacon-console__list {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .beacon-item {
  display: grid;
  grid-template-columns: 2rem 1fr auto auto;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.5rem 0.6rem;
  background: rgba(245, 240, 230, 0.06);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
}

.page-home .beacon-index {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.75rem;
}

.page-home .beacon-name {
  color: rgba(245, 240, 230, 0.82);
}

.page-home .beacon-num {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.page-home .beacon-unit {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(245, 240, 230, 0.6);
}

.page-home .beacon-console__foot {
  margin-top: 0.7rem;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(201, 160, 99, 0.35);
  font-size: 0.6875rem;
  line-height: 1.5;
  color: rgba(245, 240, 230, 0.66);
}

.page-home .beacon-console__tooltip {
  position: absolute;
  right: -4%;
  bottom: -22%;
  width: 82%;
  padding: 0.9rem 1rem;
  background: var(--warm-paper);
  border-left: 4px solid var(--gold);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  color: var(--dark-ink);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.page-home .beacon-wrap:hover .beacon-console__tooltip,
.page-home .beacon-wrap:focus-within .beacon-console__tooltip {
  opacity: 1;
  transform: translateY(0);
}

.page-home .beacon-console__tooltip-title {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
}

.page-home .beacon-console__tooltip span:last-child {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--grey-blue);
}

.page-home .schedule-toggle {
  position: absolute;
  left: 50%;
  bottom: -2.6rem;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--gold);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  color: var(--dark-ink);
}

.page-home .schedule-toggle__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.page-home .schedule-toggle__summary::-webkit-details-marker {
  display: none;
}

.page-home .schedule-toggle__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-mono);
  transition: transform 0.2s ease;
}

.page-home .schedule-toggle[open] .schedule-toggle__mark {
  transform: rotate(45deg);
}

.page-home .schedule-week {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}

.page-home .schedule-day {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.55rem 0.65rem;
  background: var(--card-bg);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
}

.page-home .schedule-day__week {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--grey-blue);
}

.page-home .preview-section {
  background: var(--warm-paper);
}

.page-home .bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-home .bento-cell {
  background: var(--card-bg);
  border: 1px solid var(--home-grid-line);
  border-radius: var(--radius-card);
  padding: 1.1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.page-home .bento-cell:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(140, 58, 43, 0.36);
}

.page-home .preview-visual {
  padding: 0;
  overflow: hidden;
}

.page-home .image-frame {
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--card-bg);
  border-radius: calc(var(--radius-card) - 4px);
}

.page-home .image-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-home .preview-point {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.page-home .preview-point__num {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-red);
}

.page-home .preview-point .card-title {
  font-size: 1.25rem;
}

.page-home .preview-point p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--grey-blue);
}

.page-home .preview-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .injury-section {
  background: linear-gradient(180deg, rgba(234, 226, 208, 0.32), rgba(234, 226, 208, 0.82));
}

.page-home .injury-panel {
  display: grid;
  gap: 1.2rem;
}

.page-home .injury-panel__visual {
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.page-home .injury-panel__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.page-home .injury-board {
  padding: 1.4rem;
  background: var(--card-bg);
  border-left: 6px solid var(--alert-red);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.page-home .injury-board__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(43, 43, 43, 0.12);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--dark-ink);
}

.page-home .injury-list {
  display: grid;
  gap: 1.05rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.page-home .injury-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
}

.page-home .injury-label {
  color: var(--grey-blue);
  font-weight: 500;
}

.page-home .injury-number {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--dark-ink);
}

.page-home .injury-track {
  height: 0.55rem;
  overflow: hidden;
  background: rgba(74, 93, 110, 0.12);
  border-radius: 999px;
}

.page-home .injury-track__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.page-home .injury-track__fill--safe {
  background: var(--success-green);
}

.page-home .injury-track__fill--warn {
  background: var(--gold);
}

.page-home .injury-track__fill--danger {
  background: var(--alert-red);
}

.page-home .injury-note {
  margin: 0.5rem 0 1rem;
  font-size: 0.8125rem;
  color: var(--grey-blue);
}

.page-home .coverage-grid {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.page-home .coverage-map {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: linear-gradient(45deg, rgba(74, 93, 110, 0.34) 1px, transparent 1px), linear-gradient(-45deg, rgba(74, 93, 110, 0.34) 1px, transparent 1px), linear-gradient(135deg, var(--primary-red), var(--grey-blue));
  background-size: 28px 28px, 28px 28px, cover;
  box-shadow: var(--shadow-card);
  color: #fff;
}

.page-home .coverage-map__grid {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(245, 240, 230, 0.08) 1px, transparent 1px), linear-gradient(25deg, rgba(245, 240, 230, 0.08) 1px, transparent 1px);
  background-size: 54px 54px, 54px 54px;
  z-index: 0;
}

.page-home .coverage-map__beacon-dot {
  position: absolute;
  top: 26%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(201, 160, 99, 0.25), 0 0 28px rgba(201, 160, 99, 0.8);
  z-index: 1;
}

.page-home .coverage-map__center {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.page-home .coverage-map__num {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.page-home .coverage-map__unit {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.82);
}

.page-home .coverage-map__note {
  position: relative;
  z-index: 2;
  margin: 0.55rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .coverage-list {
  display: grid;
  gap: 1rem;
}

.page-home .coverage-card {
  padding: 1.1rem;
  background: var(--warm-paper);
  border: 1px solid var(--home-grid-line);
  border-radius: var(--radius-card);
}

.page-home .coverage-card .card-title {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.page-home .coverage-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .coverage-card li {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.6rem;
  background: var(--card-bg);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--dark-ink);
}

.page-home .coverage-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.page-home .coverage-metric {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  background: var(--card-bg);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-card);
}

.page-home .coverage-metric__num {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-red);
}

.page-home .coverage-metric__label {
  font-size: 0.8125rem;
  color: var(--grey-blue);
}

.page-home .export-section {
  background: var(--warm-paper);
}

.page-home .export-panel {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  padding: 1.4rem;
  background: var(--dark-ink);
  border-radius: calc(var(--radius-card) * 1.4);
  box-shadow: var(--shadow-card);
  color: var(--warm-paper);
}

.page-home .export-seal {
  position: relative;
  transition: transform 0.3s ease;
}

.page-home .export-panel:hover .export-seal {
  transform: rotate(-3deg) scale(1.02);
}

.page-home .export-seal img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: calc(var(--radius-card) * 1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-home .export-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.page-home .export-step-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .export-step-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: start;
  gap: 0.8rem;
}

.page-home .export-step-list__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gold);
}

.page-home .export-step-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--warm-paper);
}

.page-home .export-step-list p {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.72);
}

.page-home .export-steps .btn-solid {
  align-self: flex-start;
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #fff;
}

.page-home .story-section {
  background: linear-gradient(180deg, rgba(234, 226, 208, 0.36), rgba(245, 240, 230, 1));
}

.page-home .story-grid {
  display: grid;
  gap: 1.2rem;
}

.page-home .story-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey-blue);
}

.page-home .story-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.page-home .story-timeline,
.page-home .story-credential {
  padding: 1.2rem;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.page-home .story-timeline .card-title,
.page-home .story-credential .card-title {
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

.page-home .story-timeline__list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .story-timeline__list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: baseline;
  gap: 0.6rem;
}

.page-home .story-timeline__list span {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-red);
}

.page-home .story-timeline__list p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--dark-ink);
}

.page-home .credential-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .credential-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--dark-ink);
}

.page-home .credential-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.page-home .home-trust {
  margin-top: 0.5rem;
  padding-bottom: 3rem;
}

.page-home .trust-note {
  padding: 0.9rem 1.1rem;
  background: var(--card-bg);
  border-left: 4px solid var(--gold);
  border-radius: 0.6rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--grey-blue);
}

@media (min-width: 720px) {
  .page-home .bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-home .preview-visual {
    grid-column: span 3;
    grid-row: span 2;
  }

  .page-home .preview-visual .image-frame,
  .page-home .preview-visual .image-frame img {
    height: 100%;
    min-height: 260px;
  }

  .page-home .preview-point--a {
    grid-column: span 3;
  }

  .page-home .preview-point--b {
    grid-column: span 2;
  }

  .page-home .preview-point--c {
    grid-column: span 2;
  }

  .page-home .preview-cta {
    grid-column: span 2;
  }

  .page-home .injury-panel {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }

  .page-home .coverage-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 860px) {
  .page-home .home-hero__inner {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 3rem;
  }

  .page-home .hero-title {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
  }

  .page-home .coverage-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

@media (min-width: 1000px) {
  .page-home .story-grid {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }

  .page-home .export-panel {
    grid-template-columns: 1fr 1.1fr;
    padding: 2rem;
  }
}
