﻿:root {
  --ink: #14213d;
  --text: #334155;
  --muted: #64748b;
  --line: #d9e2ec;
  --soft: #f6f8fb;
  --white: #ffffff;
  --teal: #2f9b95;
  --blue: #2457a6;
  --green: #668f3d;
  --gold: #bd7a2a;
  --red: #a9423a;
  --shadow: 0 18px 45px rgba(20, 33, 61, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--white);
}

body.nav-open { overflow: hidden; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img, iframe, embed, video { max-width: 100%; }
img { height: auto; display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(217, 226, 236, .82);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 148px;
  max-height: 52px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: #edf4ff;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  touch-action: manipulation;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(640px, calc(100vh - 112px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--hero-image) center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 38, .64), rgba(8, 18, 38, .34) 54%, rgba(8, 18, 38, .08)),
    var(--hero-image) center / cover no-repeat;
}

.hero .container {
  position: relative;
  padding: 98px 0 58px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #aee6df;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0 0 18px;
  color: var(--ink);
  line-height: 1.12;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(40px, 5.2vw, 68px);
}

.hero h1 {
  max-width: 680px;
  font-size: 52px;
}

.hero p {
  max-width: 560px;
  margin: 0 0 22px;
  color: #e6edf7;
  font-size: 19px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(36, 87, 166, .22);
}

.button:hover {
  text-decoration: none;
  background: #1d4b91;
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.button.secondary:hover { background: #f8fbff; }

.app-download-note {
  margin: 22px 0 10px;
  color: var(--ink);
}

.market-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.market-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 33, 61, .08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.market-icon:hover {
  color: var(--blue);
  border-color: #b8cbe8;
  box-shadow: 0 14px 28px rgba(20, 33, 61, .12);
  text-decoration: none;
  transform: translateY(-2px);
}

.market-icon svg {
  display: block;
  width: 25px;
  height: 25px;
}

.google-market {
  color: #188038;
}

.section {
  padding: 86px 0;
}

.section.white { background: var(--white); }
.section.soft { background: var(--soft); }
.section.dark { background: #162238; color: #dbe7f5; }
.section.dark h2, .section.dark h3 { color: var(--white); }

.section.photo-band {
  position: relative;
  color: #e8f1fb;
  background: var(--section-image) center / cover no-repeat;
}

.section.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 24, 42, .78), rgba(13, 24, 42, .45));
}

.section.photo-band .container {
  position: relative;
}

.section.photo-band h2,
.section.photo-band h3 {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr);
}

.split.reverse .copy { order: 2; }
.split.reverse .media { order: 1; }

.copy h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.copy p {
  margin: 0 0 16px;
}

.section-takeaway {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 18px;
}

.media img,
.media iframe,
.media embed,
.media video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media img.media-scale-70 {
  display: block;
  width: 70%;
  margin: 0 auto;
}

.cutout-media img {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.credited-media {
  margin: 0;
}

.credited-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.media iframe,
.media video {
  display: block;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  background: #0f172a;
  object-fit: cover;
}

.feature-grid,
.product-grid,
.pdf-grid,
.metric-grid {
  display: grid;
  gap: 20px;
}

.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pdf-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.metric-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20, 33, 61, .07);
}

.card-body { padding: 22px; }

.card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.product-card img,
.application-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card {
  display: block;
  overflow: hidden;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(20, 33, 61, .07);
}

.feature-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  transition: transform .2s ease;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-card a {
  color: inherit;
}

.product-card:hover {
  transform: translateY(-3px);
  transition: transform .2s ease;
}

.kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

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

.list li {
  position: relative;
  padding-left: 28px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.spec-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(20, 33, 61, .08);
}

.spec-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.spec-table caption {
  padding: 16px 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  background: var(--white);
}

.spec-table th,
.spec-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(217, 226, 236, .9);
  vertical-align: middle;
}

.spec-table thead th {
  color: var(--white);
  background: #2f9b95;
}

.spec-table tbody tr:nth-child(odd) { background: #f5fbfa; }
.spec-table tbody tr:nth-child(even) { background: #e7f3f1; }

.spec-table th:first-child,
.spec-table td:first-child {
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.spec-table th:not(:first-child),
.spec-table td:not(:first-child) {
  text-align: center;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.spec-item {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(20, 33, 61, .05);
}

.spec-item strong {
  color: var(--ink);
}

.page-hero {
  position: relative;
  color: var(--white);
  background: #102033;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 25, 45, .9), rgba(12, 25, 45, .54)),
    var(--hero-image) center / cover no-repeat;
}

.page-hero .container {
  position: relative;
  padding: 104px 0 80px;
}

.page-hero p {
  max-width: 710px;
  margin: 0;
  color: #e5edf8;
  font-size: 20px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: #c7d8ea;
  font-size: 14px;
}

.breadcrumb a { color: #e5edf8; }

.cta-band {
  padding: 44px 0;
  color: var(--white);
  background: linear-gradient(90deg, #2457a6, #2f9b95);
}

.cta-band .container {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cta-band h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 30px;
}

.cta-band p { margin: 0; color: #eaf7fb; }

.pdf-card {
  padding: 18px;
}

.pdf-preview {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fbff;
  transition: transform .18s ease, box-shadow .18s ease;
}

.pdf-preview:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 33, 61, .14);
}

.pdf-preview img {
  width: 100%;
  aspect-ratio: 672 / 953;
  object-fit: cover;
  object-position: top center;
}

.pdf-actions {
  margin: 14px 0 0;
}

.pdf-open-link {
  width: 100%;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}

.logo-strip img {
  max-height: 56px;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .78;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 6px;
}

.privacy-policy {
  max-width: 1040px;
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.privacy-policy p {
  margin: 0 0 18px;
}

.privacy-policy .privacy-language-link {
  margin-bottom: 32px;
}

.privacy-policy-language {
  scroll-margin-top: 110px;
}

.privacy-policy-language + .privacy-policy-language {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.privacy-policy h2 {
  margin: 0 0 24px;
  font-size: 24px;
}

.privacy-policy h4 {
  margin: 24px 0 14px;
  font-size: 18px;
}

.privacy-policy ul {
  margin: 0 0 18px;
  padding-left: 24px;
}

.privacy-policy li {
  margin-bottom: 6px;
}

.site-footer {
  padding: 46px 0;
  background: #111827;
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.site-footer a { color: #f8fafc; }

#open_preferences_center {
  display: block;
  padding: 12px 20px;
  color: #dbe7f5;
  font-size: 14px;
  text-align: center;
  background: #0f172a;
}

#open_preferences_center:hover {
  color: var(--white);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #f8fafc;
  background: rgba(255, 255, 255, .04);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.socials svg {
  display: block;
  width: 17px;
  height: 17px;
}

.socials a:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .32);
  text-decoration: none;
  transform: translateY(-2px);
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    z-index: 60;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    max-height: calc(100vh - 76px);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links a { justify-content: center; }
  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .split.reverse .copy,
  .split.reverse .media { order: initial; }
  .feature-grid,
  .product-grid,
  .pdf-grid,
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-band .container,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
  }
  .logo-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero h1 { font-size: 44px; }
  .hero p { font-size: 18px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero .container { padding: 78px 0 46px; }
  .page-hero .container { padding: 72px 0 58px; }
  .section { padding: 58px 0; }
  .feature-grid,
  .product-grid,
  .pdf-grid,
  .metric-grid,
  .spec-grid,
  .logo-strip {
    grid-template-columns: 1fr;
  }
  .spec-table { min-width: 700px; }
  .hero h1 { font-size: 34px; }
  .page-hero h1 { font-size: 40px; }
  .hero p { font-size: 16px; }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 20px;
  align-items: stretch;
}

.video-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-card iframe,
.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  background: #0f172a;
  object-fit: cover;
}

.shorts-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 360px));
  justify-content: center;
}

.shorts-grid .video-card iframe {
  aspect-ratio: 9 / 16;
}

.video-card .card-body {
  box-shadow: none;
  border: 0;
  border-radius: 0;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.detail-list .card-body p:last-child { margin-bottom: 0; }

.phone-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 28px;
}

.phone-shot {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(20, 33, 61, .08);
}

.phone-shot img {
  width: auto;
  max-height: 430px;
  object-fit: contain;
  border-radius: 12px;
}

@media (max-width: 920px) {
  .video-grid,
  .detail-list,
  .phone-shot-grid { grid-template-columns: 1fr; }
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.research-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 28px rgba(20, 33, 61, .08);
}

.research-card h3,
.publication-item h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.28;
}

.research-card p,
.publication-item p { margin-bottom: 0; }

.publication-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.publication-item {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 18px 20px;
}























.pub-topic {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.source-note {










  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .research-grid { grid-template-columns: 1fr; }
}

.emed-story {
  --emed-navy: #061a33;
  --emed-ink: #071f49;
  --emed-blue: #075fc7;
  --emed-sky: #79c9f5;
  --emed-soft: #f3f8fd;
  --emed-line: #d9e7f5;
  color: var(--emed-ink);
  background: var(--white);
}

.emed-story h1,
.emed-story h2,
.emed-story h3 {
  color: var(--emed-ink);
}

.emed-problem {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 36%, rgba(47, 154, 229, .46), transparent 28%),
    linear-gradient(98deg, #03182f 0%, #073258 46%, #dceffb 100%);
}

.emed-problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 18, 38, .96), rgba(5, 30, 56, .68) 46%, rgba(222, 240, 250, .05)),
    linear-gradient(0deg, rgba(1, 20, 42, .28), rgba(1, 20, 42, 0));
}

.emed-problem-selectable {
  min-height: clamp(360px, 33.4vw, 610px);
  background: #061a33;
}

.emed-problem-selectable::before {
  display: none;
}

.emed-problem-selectable::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 19, 39, .99) 0%, rgba(2, 25, 49, .99) 35%, rgba(3, 28, 52, .75) 49%, rgba(3, 28, 52, .12) 66%, rgba(3, 28, 52, 0) 100%),
    linear-gradient(0deg, rgba(1, 20, 42, .22), rgba(1, 20, 42, 0));
  pointer-events: none;
}

.emed-problem-banner {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.emed-problem-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 64px minmax(340px, 640px);
  gap: 24px;
  align-items: start;
  width: min(100% - 96px, 1910px);
  min-height: clamp(360px, 33.4vw, 610px);
  padding: clamp(48px, 5.7vw, 104px) 0 42px;
}

.emed-hero-badge {
  position: absolute;
  top: 50%;
  right: clamp(8px, 2vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(190px, 15.7vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--white);
  background: radial-gradient(circle at 32% 22%, #117de3, #0068d8 64%, #005fca 100%);
  box-shadow: 0 24px 44px rgba(0, 57, 128, .24);
  text-align: center;
  transform: translateY(-42%);
}

.emed-hero-badge strong {
  margin-bottom: clamp(10px, .8vw, 16px);
  color: var(--white);
  font-size: clamp(35px, 3.36vw, 61px);
  font-weight: 800;
  line-height: .88;
}

.emed-hero-badge span {
  color: var(--white);
  font-size: clamp(14px, 1.24vw, 25px);
  line-height: 1.18;
}

.emed-problem-selectable .emed-step-number {
  width: clamp(42px, 3.4vw, 72px);
  height: clamp(42px, 3.4vw, 72px);
  font-size: clamp(20px, 1.45vw, 31px);
}

.emed-problem-selectable .emed-step-label {
  margin: 0 0 clamp(18px, 1.5vw, 32px);
  color: rgba(255, 255, 255, .74);
  font-size: clamp(22px, 1.7vw, 36px);
  font-weight: 600;
}

.emed-problem-selectable h1 {
  max-width: 660px;
  margin-bottom: clamp(22px, 2vw, 42px);
  font-size: clamp(42px, 3.25vw, 70px);
  line-height: 1.18;
}

.emed-problem-selectable p {
  max-width: 760px;
  font-size: clamp(18px, 1.28vw, 28px);
  line-height: 1.42;
}

.emed-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 2.1vw, 42px);
}

.emed-banner-button {
  min-width: 180px;
  border-color: #0b75da;
  background: #006ed8;
  box-shadow: 0 18px 34px rgba(0, 64, 137, .3);
}

.emed-banner-button:hover {
  background: #005fc3;
}

.emed-problem-layout {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(300px, 430px) minmax(420px, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 314px;
  padding: 28px 0;
}

.emed-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #3fa6ea;
  border-radius: 50%;
  color: #06214a;
  background: #a6dcff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .34);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.emed-problem .emed-step-number {
  align-self: start;
  margin-top: 10px;
}

.emed-step-label {
  margin: 0 0 8px;
  color: var(--emed-ink);
  font-size: 17px;
  font-weight: 900;
}

.emed-problem .emed-step-label,
.emed-problem h1,
.emed-problem p {
  color: var(--white);
}

.emed-problem h1 {
  max-width: 390px;
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1.08;
}

.emed-problem p {
  max-width: 430px;
  margin: 0;
  color: #edf7ff;
  font-size: 17px;
  line-height: 1.45;
}

.emed-scroll-cue {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-top: 20px;
}

.emed-scroll-cue::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.emed-scroll-cue:hover {
  text-decoration: none;
}

.emed-hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 260px;
}

.emed-hero-single {
  width: auto;
  max-width: 100%;
  height: 300px;
  max-height: calc(100% - 8px);
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(0 22px 28px rgba(0, 17, 40, .32));
}

.emed-step {
  padding: 28px 0;
  border-bottom: 1px solid var(--emed-line);
}

.emed-step-white {
  background: var(--white);
}

.emed-step-soft {
  background: var(--emed-soft);
}

.emed-copy h2 {
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1.1;
}

.emed-copy p {
  margin: 0 0 12px;
  line-height: 1.48;
}

.emed-copy p:last-child {
  margin-bottom: 0;
}

.emed-explain-layout,
.emed-method-layout,
.emed-comparison-layout,
.emed-evidence-layout,
.emed-app-layout,
.emed-product-layout,
.emed-cta-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.emed-explain-layout {
  grid-template-columns: 48px minmax(260px, .92fr) minmax(250px, .95fr) minmax(230px, .8fr);
}

.emed-map-panel {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 50px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(10, 40, 80, .08);
}

.emed-map-panel img {
  width: 100%;
  max-height: 185px;
  object-fit: contain;
}

.emed-scale {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--emed-ink);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.emed-scale b {
  display: block;
  width: 18px;
  height: 116px;
  border: 1px solid rgba(7, 31, 73, .16);
  border-radius: 4px;
  background: linear-gradient(0deg, #0823b8, #00b7ff 26%, #28c84a 52%, #ffdf00 74%, #f3001d);
}

.emed-insight-box {
  padding: 18px 0;
}

.emed-insight-box h3 {
  margin-bottom: 12px;
  font-size: 17px;
}

.emed-check-list,
.emed-result-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.emed-check-list li {
  position: relative;
  padding-left: 25px;
  color: #22324b;
  font-size: 14px;
  line-height: 1.35;
}

.emed-check-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 7px;
  height: 13px;
  border-right: 2px solid var(--emed-blue);
  border-bottom: 2px solid var(--emed-blue);
  transform: rotate(45deg);
}

.emed-method-layout {
  grid-template-columns: 48px minmax(280px, .72fr) minmax(520px, 1.28fr);
}

.emed-process {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 28px minmax(120px, 1fr) 28px minmax(150px, 1fr);
  gap: 16px;
  align-items: center;
}

.emed-process-card,
.emed-result-card {
  min-height: 156px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--emed-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 40, 80, .07);
}

.emed-process-card img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.emed-pressure-map-card img {
  box-sizing: border-box;
  padding: 9px 20px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.emed-process-card figcaption {
  padding: 9px 12px 12px;
  color: var(--emed-ink);
  font-size: 13px;
  font-weight: 900;
}

.emed-process-arrow {
  color: var(--emed-blue);
  font-size: 32px;
  font-weight: 900;
  text-align: center;
}

.emed-result-card {
  padding: 16px 18px;
}

.emed-result-card h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

.emed-result-card ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  font-size: 13px;
  line-height: 1.25;
}

.emed-comparison-layout,
.emed-evidence-layout,
.emed-app-layout,
.emed-product-layout {
  grid-template-columns: 48px minmax(270px, .7fr) minmax(560px, 1.35fr);
}

.emed-app-layout {
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
}

.emed-evidence-layout {
  align-items: start;
}

.emed-app-layout .emed-copy,
.emed-app-layout .emed-application-detail {
  grid-column: 2;
}

.emed-app-layout .emed-copy {
  max-width: 820px;
}

.emed-method-cards,
.emed-case-grid,
.emed-platform-grid {
  display: grid;
  gap: 18px;
}

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

.emed-method-card,
.emed-case-card,
.emed-platform-card {
  border: 1px solid var(--emed-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(10, 40, 80, .08);
}

.emed-method-card {
  padding: 18px;
}

.emed-method-card h3 {
  margin-bottom: 2px;
  color: var(--emed-blue);
  font-size: 20px;
}

.emed-method-card p {
  min-height: 34px;
  margin: 0 0 10px;
  color: #233653;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.emed-method-card img {
  width: 100%;
  height: 98px;
  object-fit: contain;
}

.emed-force-plate {
  position: relative;
  height: 98px;
}

.emed-force-plate::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 8%;
  top: 28px;
  height: 42px;
  border: 1px solid #a9b4c3;
  border-radius: 4px;
  background: linear-gradient(135deg, #d9dde3, #9da7b3);
  box-shadow: 0 18px 20px rgba(7, 31, 73, .18);
  transform: skewX(-22deg);
}

.emed-method-card .emed-check-list {
  margin-top: 12px;
}

.emed-text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--emed-blue);
  font-size: 14px;
  font-weight: 900;
}

.emed-text-link:hover {
  text-decoration: underline;
}

.emed-outline-button {
  border-color: var(--emed-blue);
  color: var(--emed-blue);
  box-shadow: none;
}

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

.emed-evidence-layout .emed-case-grid {
  grid-column: 2 / 4;
}

.emed-evidence-layout .emed-publications-panel {
  grid-column: 3;
  align-self: start;
}

.emed-case-card {
  overflow: hidden;
}

.emed-case-card img {
  box-sizing: border-box;
  width: 100%;
  height: 142px;
  padding: 8px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.emed-case-card div {
  padding: 16px;
}

.emed-case-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.emed-case-card p {
  margin: 0 0 10px;
  color: #34435a;
  font-size: 14px;
  line-height: 1.35;
}

.emed-case-card a {
  font-size: 14px;
  font-weight: 900;
}

.emed-application-detail {
  display: grid;
  gap: 0;
}

.emed-application-intro,
.emed-publications-panel {
  border: 1px solid var(--emed-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(10, 40, 80, .08);
}

.emed-application-intro {
  padding: 14px 16px;
}

.emed-application-intro h3,
.emed-publications-heading h3 {
  margin: 0 0 8px;
  color: var(--emed-ink);
  font-size: 17px;
}

.emed-application-intro p,
.emed-publications-heading p {
  margin: 0;
  color: #34435a;
  font-size: 13px;
  line-height: 1.42;
}

.emed-application-detail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.emed-application-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 8px;
  row-gap: 6px;
  align-content: start;
  min-height: 112px;
  padding: 10px;
  border: 1px solid #dceafa;
  border-left: 3px solid #0a69c7;
  border-radius: 8px;
  background: #f8fbff;
}

.emed-application-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--emed-blue);
  font-size: 10px;
  font-weight: 900;
  border: 1px solid #bde0fa;
  border-radius: 50%;
  background: #fff;
}

.emed-application-card h3 {
  align-self: center;
  margin: 0;
  color: var(--emed-ink);
  font-size: 13px;
  line-height: 1.2;
}

.emed-application-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: #41516a;
  font-size: 12px;
  line-height: 1.3;
}

.emed-publications-panel {
  grid-column: 2 / 4;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.emed-publication-accordion {
  display: grid;
  gap: 8px;
}

.emed-publication-year {
  border: 1px solid #dceafa;
  border-radius: 8px;
  background: #f8fbff;
  overflow: hidden;
}

.emed-publication-year summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 0 14px;
  color: var(--emed-ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.emed-publication-year summary::-webkit-details-marker {
  display: none;
}

.emed-publication-year summary::after {
  content: "+";
  color: var(--emed-blue);
  font-size: 18px;
  line-height: 1;
}

.emed-publication-year[open] summary::after {
  content: "-";
}

.emed-publication-year summary small {
  margin-left: auto;
  color: #5d6f86;
  font-size: 12px;
  font-weight: 600;
}

.emed-publication-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 14px 14px 34px;
}

.emed-publication-list li {
  padding-left: 2px;
  color: #5d6f86;
  font-size: 12px;
  line-height: 1.35;
}

.emed-publication-list a {
  display: block;
  color: var(--emed-blue);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.32;
}

.emed-publication-list span {
  display: block;
  margin-top: 3px;
  color: #405169;
}

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

.emed-platform-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
}

.emed-platform-card img {
  width: 100%;
  height: 106px;
  object-fit: contain;
}

.emed-platform-card h3 {
  margin-bottom: 8px;
  color: var(--emed-blue);
  font-size: 21px;
}

.emed-spec-list {
  display: grid;
  gap: 6px;
  margin: 0;
}

.emed-spec-list div {
  display: grid;
  grid-template-columns: minmax(90px, .9fr) minmax(110px, 1fr);
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
  line-height: 1.25;
}

.emed-spec-list dt {
  color: #41516a;
  font-weight: 700;
}

.emed-spec-list dd {
  margin: 0;
  color: #182945;
  font-weight: 900;
}

.emed-platform-panel {
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--emed-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(10, 40, 80, .08);
}

.emed-platform-showcase {
  display: grid;
  grid-template-columns: 34% 33% 33%;
  gap: 0;
  align-items: end;
  padding: 8px 0 6px;
  border-bottom: 1px solid var(--emed-line);
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
}

.emed-platform-figure {
  display: grid;
  gap: 6px;
  align-items: end;
  justify-items: center;
  min-height: 190px;
  margin: 0;
  text-align: center;
}

.emed-platform-figure img {
  width: 100%;
  max-width: 150px;
  height: 170px;
  object-fit: contain;
  object-position: center bottom;
}

.emed-platform-figure figcaption {
  color: var(--emed-blue);
  font-size: 14px;
  font-weight: 900;
}

.emed-platform-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--emed-line);
  border-radius: 8px;
  background: #fff;
}

.emed-platform-scroll {
  min-width: 560px;
}

.emed-platform-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.emed-platform-spec-col {
  width: 34%;
}

.emed-platform-data-col {
  width: 33%;
}

.emed-platform-table-title {
  padding: 8px 10px;
  color: var(--emed-ink);
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  background: #fff;
  border-bottom: 1px solid var(--emed-line);
}

.emed-platform-table th,
.emed-platform-table td {
  padding: 7px 9px;
  border-top: 1px solid var(--emed-line);
  vertical-align: middle;
  font-weight: 400;
  line-height: 1.2;
}

.emed-platform-table thead th {
  color: var(--emed-blue);
  background: #eff8ff;
  font-size: 12px;
}

.emed-platform-table tbody tr:nth-child(even) {
  background: #f8fbff;
}

.emed-platform-table th:first-child {
  color: #41516a;
  font-weight: 400;
  text-align: left;
}

.emed-platform-table th:not(:first-child),
.emed-platform-table td {
  color: #182945;
  font-weight: 400;
  text-align: center;
}

.emed-platform-note {
  margin: 0;
  color: #41516a;
  font-size: 12px;
  line-height: 1.35;
}

.emed-final-cta {
  padding: 28px 0 36px;
  border-top: 1px solid var(--emed-line);
  background: #fff;
}

.emed-cta-layout {
  grid-template-columns: 48px minmax(340px, .8fr) minmax(420px, 1.2fr);
}

.emed-cta-actions {
  display: grid;
  grid-template-columns: minmax(180px, 240px);
  gap: 14px;
  margin-top: 20px;
}

.emed-cta-actions .button {
  width: 100%;
}

.emed-flyer-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--emed-line);
  border-radius: 8px;
  background: #f7fbff;
}

.emed-flyer-panel h3 {
  margin: 0;
  color: var(--emed-ink);
  font-size: 16px;
  font-weight: 900;
}

.emed-flyer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.emed-flyer-card {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 7px;
  min-width: 0;
  padding: 8px;
  color: var(--emed-ink);
  text-decoration: none;
  border: 1px solid #dceafa;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(10, 40, 80, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.emed-flyer-card:hover {
  transform: translateY(-2px);
  border-color: #8ac7f6;
  box-shadow: 0 12px 26px rgba(10, 40, 80, .1);
}

.emed-flyer-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border: 1px solid #e3edf8;
  border-radius: 6px;
  background: #fff;
}

.emed-flyer-card span {
  color: var(--emed-blue);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.emed-flyer-card small {
  color: #53677f;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
}

.manugraphy-flyers,
.pliance-flyers {
  --emed-ink: var(--ink);
  --emed-blue: var(--blue);
}

.manugraphy-flyers .emed-flyer-card {
  width: min(100%, 240px);
}

.manugraphy-flyers .emed-flyer-card img,
.pliance-flyers .emed-flyer-card img {
  aspect-ratio: 508 / 720;
  object-fit: contain;
}

.manugraphy-flyers .emed-flyer-card:focus-visible,
.pliance-flyers .emed-flyer-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.pliance-flyers .emed-flyer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1000px;
}

.pliance-flyers .emed-flyer-card {
  min-width: 0;
}

.pliance-flyers .emed-flyer-card span {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .pliance-flyers .emed-flyer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 500px;
  }
}

@media (max-width: 380px) {
  .pliance-flyers .emed-flyer-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 240px;
  }
}

.manugraphy-publications,
.pliance-publications {
  --emed-ink: var(--ink);
  --emed-blue: var(--blue);
  margin-top: 28px;
  scroll-margin-top: 96px;
}

.manugraphy-publications h3,
.pliance-publications h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

.manugraphy-publications summary,
.pliance-publications summary {
  padding-block: 12px;
}

.manugraphy-publications summary > span,
.manugraphy-publications summary small,
.pliance-publications summary > span,
.pliance-publications summary small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.manugraphy-publications summary::after,
.pliance-publications summary::after {
  flex-shrink: 0;
}

.manugraphy-publications .emed-publication-list,
.pliance-publications .emed-publication-list {
  gap: 16px;
}

.manugraphy-publications li,
.pliance-publications li {
  overflow-wrap: anywhere;
}

.manugraphy-publications a:focus-visible,
.manugraphy-publications summary:focus-visible,
.pliance-publications a:focus-visible,
.pliance-publications summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -3px;
}

.pliance-applications {
  scroll-margin-top: 96px;
}

.pliance-applications-banner {
  display: block;
  margin: 28px 0 32px;
}

.pliance-applications-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
}

.pliance-applications .feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pliance-applications .card-body {
  min-width: 0;
  padding: 20px;
  border-top: 3px solid #f79028;
  box-shadow: none;
}

.pliance-applications .card h3 {
  font-size: 18px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.pliance-applications .card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .pliance-applications .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pliance-applications-banner img {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 620px) {
  .pliance-applications .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pliance-story {
  --pliance-accent: #f79028;
}

.pliance-story .pliance-problem.site-banner {
  height: var(--site-banner-height, auto);
  min-height: var(--site-banner-height, clamp(360px, 33.4vw, 610px));
}

.pliance-story .pliance-problem::after {
  background: none;
}

.pliance-banner-scene {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
}

.pliance-banner-scene picture {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.pliance-banner-photo {
  position: absolute;
  right: 0;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .7) 18%, #000 32%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .7) 18%, #000 32%);
}

.pliance-banner-display {
  position: absolute;
  z-index: 2;
  left: 40%;
  bottom: 28px;
  width: min(22%, 360px);
}

.pliance-banner-display img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.pliance-story .pliance-banner-content {
  display: block;
  width: min(1400px, calc(100% - 64px));
  height: 100%;
  min-height: 0;
  padding: 46px 0 26px;
}

.pliance-banner-copy {
  width: min(36%, 430px);
  min-width: 0;
}

.pliance-story .pliance-banner-label {
  margin: 0 0 14px;
  color: #dfeaf5;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.pliance-story .pliance-banner-copy h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 42px;
  line-height: 1.12;
}

.pliance-story .pliance-banner-description {
  margin: 0;
  color: #f1f5fa;
  font-size: 17px;
  line-height: 1.5;
}

.pliance-story .emed-banner-actions {
  margin-top: 24px;
}

.pliance-story .emed-banner-button {
  color: #061a33;
  border-color: var(--pliance-accent);
  background: var(--pliance-accent);
  box-shadow: 0 10px 24px rgba(247, 144, 40, .2);
}

.pliance-story .emed-banner-button:hover {
  border-color: #ffa447;
  background: #ffa447;
}

.pliance-story .emed-banner-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.pliance-story .emed-hero-badge {
  top: auto;
  right: 0;
  bottom: 22px;
  width: 192px;
  flex-shrink: 0;
  color: #061a33;
  background: var(--pliance-accent);
  box-shadow: 0 18px 40px rgba(26, 32, 42, .2);
  transform: none;
}

.pliance-story .emed-hero-badge h1 {
  margin: 0 0 12px;
  color: inherit;
  font-size: 38px;
  line-height: 1;
}

.pliance-story .emed-hero-badge span {
  color: inherit;
  font-size: 15px;
  line-height: 1.2;
}

@media (max-width: 1060px) {
  .pliance-story .pliance-problem.site-banner {
    min-height: var(--site-banner-height, 520px);
  }

  .pliance-story .pliance-problem::after {
    background: linear-gradient(180deg, #061a33 0%, #061a33 calc(100% - 200px), transparent calc(100% - 178px));
  }

  .pliance-story .pliance-banner-content {
    width: calc(100% - 40px);
    padding: 32px 0 218px;
  }

  .pliance-banner-copy {
    width: min(calc(100% - 200px), 600px);
  }

  .pliance-banner-scene {
    width: min(52%, 258px);
    height: 200px;
  }

  .pliance-banner-photo {
    object-position: right bottom;
  }

  .pliance-banner-display {
    left: 20px;
    bottom: 22px;
    width: min(38%, 280px);
  }

  .pliance-story .pliance-banner-copy h2 {
    font-size: 36px;
  }

  .pliance-story .emed-hero-badge {
    top: 32px;
    bottom: auto;
    width: 168px;
  }

  .pliance-story .emed-hero-badge h1 {
    font-size: 34px;
  }

  .pliance-story .emed-hero-badge span {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .pliance-story .pliance-problem.site-banner {
    min-height: var(--site-banner-height, 560px);
  }

  .pliance-story .pliance-banner-content {
    padding: 24px 0 176px;
  }

  .pliance-banner-copy {
    width: 100%;
  }

  .pliance-story .pliance-banner-label {
    font-size: 16px;
  }

  .pliance-story .pliance-banner-copy h2 {
    margin-bottom: 18px;
    font-size: 32px;
  }

  .pliance-story .pliance-banner-description {
    font-size: 15px;
  }

  .pliance-story .emed-banner-actions {
    margin-top: 20px;
  }

  .pliance-story .emed-banner-button {
    min-height: 44px;
    font-size: 14px;
  }

  .pliance-story .emed-hero-badge {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 128px;
    margin: 12px 0 0 auto;
  }

  .pliance-story .emed-hero-badge h1 {
    margin-bottom: 8px;
    font-size: 28px;
  }

  .pliance-story .emed-hero-badge span {
    font-size: 12px;
  }
}

/* Reuse the emed story layout while keeping pedar-specific changes scoped. */
.pedar-story {
  --pedar-accent: #7a2f61;
  letter-spacing: 0;
}

.pedar-story section[id],
.pedar-story [id="pedar-specifications"],
.pedar-story [id="pedar-publications"] {
  scroll-margin-top: 96px;
}

.pedar-story .pedar-problem {
  min-height: 480px;
  background: #061a33;
}

.pedar-story .pedar-problem::after {
  background: linear-gradient(90deg, #021a30 0%, #06243c 28%, rgba(5, 32, 53, .92) 38%, rgba(5, 32, 53, .08) 55%, transparent 65%);
}

.pedar-banner-scene {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  aspect-ratio: 1942 / 809;
}

.pedar-story .emed-problem-banner {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Align the unmodified screenshot with the monitor in the photographic scene. */
.pedar-banner-screen {
  position: absolute;
  left: 63.35%;
  top: 4.75%;
  width: 32.55%;
  height: 49.12%;
  object-fit: fill;
}

.pedar-story .emed-problem-content {
  grid-template-columns: 48px minmax(0, 430px);
  gap: 20px;
  width: min(1400px, calc(100% - 64px));
  min-height: 480px;
  padding: 46px 0 26px;
}

.pedar-story .pedar-problem .emed-step-number {
  width: 42px;
  height: 42px;
  font-size: 20px;
}

.pedar-story .pedar-problem .emed-step-label {
  margin-bottom: 18px;
  font-size: 20px;
}

.pedar-story .pedar-problem-heading {
  margin: 0 0 20px;
  color: #fff;
  font-size: 42px;
  line-height: 1.12;
}

.pedar-story .pedar-problem p {
  font-size: 17px;
  line-height: 1.5;
}

.pedar-story .emed-banner-actions {
  margin-top: 24px;
}

.pedar-story .button {
  border-color: var(--pedar-accent);
  background: var(--pedar-accent);
  box-shadow: 0 10px 24px rgba(122, 47, 97, .22);
}

.pedar-story .button:hover {
  border-color: #652750;
  background: #652750;
}

.pedar-story .button:focus-visible {
  outline-color: var(--pedar-accent);
}

.pedar-story .emed-hero-badge {
  top: auto;
  right: 0;
  bottom: 18px;
  width: 192px;
  background: var(--pedar-accent);
  box-shadow: 0 24px 44px rgba(122, 47, 97, .24);
  transform: none;
}

.pedar-story .emed-hero-badge h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 40px;
  line-height: 1;
}

.pedar-story .emed-hero-badge span {
  font-size: 16px;
  line-height: 1.2;
}

.pedar-story .emed-problem-copy,
.pedar-story .emed-copy,
.pedar-story .emed-process,
.pedar-story .emed-method-cards,
.pedar-story .emed-case-grid,
.pedar-story .emed-application-detail,
.pedar-specifications {
  min-width: 0;
}

.pedar-sensor-figure {
  margin: 0;
}

.pedar-sensor-figure img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.pedar-sensor-figure figcaption {
  margin-top: 8px;
  color: #41516a;
  font-size: 13px;
  text-align: center;
}

.pedar-story .emed-process {
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
}

.pedar-story .emed-process-card img {
  height: 140px;
  padding: 10px;
  object-fit: contain;
}

.pedar-story .emed-process-card figcaption {
  min-height: 48px;
}

.pedar-story .emed-result-card {
  padding: 14px;
}

.pedar-story .emed-method-card {
  padding: 14px;
  box-shadow: none;
}

.emed-story .emed-selected-method,
.pedar-story .pedar-selected-method {
  border-color: #579fdf;
  background: #f2f8ff;
}

.pedar-story .pedar-wide-layout {
  grid-template-columns: 48px minmax(0, 1fr);
}

.pedar-story .pedar-wide-layout > :not(.emed-step-number) {
  grid-column: 2;
}

.pedar-story .pedar-wide-layout .emed-copy {
  max-width: 820px;
}

.pedar-story .emed-publications-panel,
.pedar-story .emed-flyer-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pedar-story .emed-case-card {
  box-shadow: none;
}

.pedar-story .emed-case-card img {
  height: 160px;
}

.pedar-story .emed-application-card {
  min-height: 120px;
  border-left-color: var(--pedar-accent);
}

.pedar-specifications {
  display: grid;
  gap: 14px;
}

.pedar-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pedar-spec-column {
  min-width: 0;
}

.pedar-spec-column figure {
  display: grid;
  justify-items: center;
  margin: 0 0 12px;
}

.pedar-spec-column img {
  width: 100%;
  height: 138px;
  object-fit: contain;
}

.pedar-spec-column figcaption {
  margin-top: 8px;
  color: var(--emed-blue);
  font-size: 14px;
  font-weight: 700;
}

.pedar-spec-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 12px;
  line-height: 1.35;
}

.pedar-spec-table caption {
  padding: 8px;
  color: var(--emed-ink);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  background: #e9f3fc;
}

.pedar-spec-table th,
.pedar-spec-table td {
  padding: 8px;
  border-bottom: 1px solid var(--emed-line);
  font-weight: 400;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.pedar-spec-table th {
  width: 48%;
  color: #41516a;
}

.pedar-spec-table tr:nth-child(even) {
  background: #fff;
}

.pedar-story .pedar-product-note {
  margin-top: 18px;
  font-size: 14px;
}

.emed-video,
.pedar-video {
  grid-column: 2 / -1;
  min-width: 0;
}

.emed-video > h3,
.pedar-video > h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.emed-video-grid,
.pedar-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.emed-video-card,
.pedar-video-card {
  min-width: 0;
  margin: 0;
}

.emed-video-card figcaption,
.pedar-video-card figcaption {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.emed-video iframe,
.pedar-video iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
}

.pedar-video iframe {
  /* Ten percent taller than a 16:9 player; YouTube preserves video proportions. */
  aspect-ratio: 160 / 99;
}

.pedar-product-details {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--emed-line);
}

.pedar-product-detail {
  min-width: 0;
}

.pedar-product-detail h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.pedar-product-detail-content {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: start;
}

.pedar-product-detail-content > div {
  min-width: 0;
}

.pedar-product-detail-content img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.pedar-product-detail-content p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.5;
}

.pedar-story .emed-flyer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pedar-story .emed-flyer-card img {
  aspect-ratio: 1 / 1.414;
  object-fit: contain;
}

.pedar-story a:focus-visible,
.pedar-story summary:focus-visible {
  outline: 3px solid #1681df;
  outline-offset: 4px;
}

@media (max-width: 1060px) {
  .emed-problem-layout,
  .emed-explain-layout,
  .emed-method-layout,
  .emed-comparison-layout,
  .emed-evidence-layout,
  .emed-app-layout,
  .emed-product-layout,
  .emed-cta-layout {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .emed-hero-stage,
  .emed-map-panel,
  .emed-insight-box,
  .emed-process,
  .emed-method-cards,
  .emed-case-grid,
  .emed-application-detail,
  .emed-publications-panel,
  .emed-platform-grid,
  .emed-flyer-panel {
    grid-column: 2;
  }

  .emed-evidence-layout .emed-publications-panel,
  .emed-evidence-layout .emed-case-grid {
    grid-column: 2;
  }

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

  .emed-problem-layout {
    min-height: 0;
  }

  .emed-problem-selectable {
    min-height: 520px;
  }

  .emed-problem-selectable::after {
    background:
      linear-gradient(90deg, rgba(1, 19, 39, .99) 0%, rgba(2, 25, 49, .97) 52%, rgba(3, 28, 52, .4) 78%, rgba(3, 28, 52, 0) 100%),
      linear-gradient(0deg, rgba(1, 20, 42, .26), rgba(1, 20, 42, 0));
  }

  .emed-problem-banner {
    object-position: 58% center;
  }

  .emed-problem-content {
    grid-template-columns: 48px minmax(0, 1fr);
    width: min(100% - 40px, 960px);
    min-height: 520px;
    padding: 44px 0 34px;
  }

  .emed-problem-selectable .emed-step-number {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .emed-problem-selectable .emed-step-label {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .emed-hero-badge {
    right: 24px;
    bottom: 28px;
    top: auto;
    width: 168px;
    transform: none;
  }

  .emed-hero-stage {
    min-height: 285px;
  }

  .emed-hero-single {
    height: 282px;
  }
}

@media (max-width: 760px) {
  .emed-problem-layout,
  .emed-explain-layout,
  .emed-method-layout,
  .emed-comparison-layout,
  .emed-evidence-layout,
  .emed-app-layout,
  .emed-product-layout,
  .emed-cta-layout {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
  }

  .emed-step-number {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .emed-problem-selectable {
    min-height: 560px;
  }

  .emed-problem-selectable::after {
    background:
      linear-gradient(90deg, rgba(1, 19, 39, .99) 0%, rgba(2, 25, 49, .98) 63%, rgba(3, 28, 52, .62) 100%),
      linear-gradient(0deg, rgba(1, 20, 42, .26), rgba(1, 20, 42, 0));
  }

  .emed-problem-content {
    grid-template-columns: 40px minmax(0, 1fr);
    width: min(100% - 28px, 1160px);
    min-height: 560px;
    padding: 34px 0 150px;
  }

  .emed-problem-selectable .emed-step-number {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .emed-problem-selectable .emed-step-label {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .emed-hero-badge {
    right: 14px;
    bottom: 22px;
    width: 128px;
  }

  .emed-hero-badge strong {
    margin-bottom: 8px;
    font-size: 27px;
  }

  .emed-hero-badge span {
    font-size: 12px;
    line-height: 1.16;
  }

  .emed-problem h1 {
    font-size: 32px;
  }

  .emed-copy h2 {
    font-size: 26px;
  }

  .emed-hero-stage {
    min-height: 235px;
  }

  .emed-hero-stage {
    justify-content: center;
  }

  .emed-hero-single {
    width: 100%;
    height: 226px;
    object-position: center;
  }

  .emed-process,
  .emed-method-cards,
  .emed-case-grid,
  .emed-application-detail-grid,
  .emed-platform-grid,
  .emed-cta-actions,
  .emed-flyer-grid {
    grid-template-columns: 1fr;
  }

  .emed-process-arrow {
    transform: rotate(90deg);
  }

  .emed-map-panel {
    grid-template-columns: 1fr;
  }

  .emed-scale {
    grid-template-columns: 1fr minmax(120px, 1fr) 1fr;
  }

  .emed-scale b {
    width: 100%;
    height: 16px;
    background: linear-gradient(90deg, #0823b8, #00b7ff 26%, #28c84a 52%, #ffdf00 74%, #f3001d);
  }

  .emed-platform-card {
    grid-template-columns: 1fr;
  }

  .emed-platform-panel {
    padding: 10px;
  }

  .emed-platform-showcase {
    grid-template-columns: 34% 33% 33%;
  }

  .emed-platform-figure {
    min-height: 165px;
  }

  .emed-platform-figure img {
    max-width: 130px;
    height: 145px;
  }

  .emed-platform-scroll {
    min-width: 520px;
  }

}

@media (max-width: 1200px) {
  .pedar-story .emed-problem-content {
    grid-template-columns: 42px minmax(0, 370px);
    width: calc(100% - 40px);
  }

  .pedar-story .emed-hero-badge {
    width: 160px;
  }

  .pedar-story .emed-hero-badge h1 {
    font-size: 34px;
  }

  .pedar-story .emed-hero-badge span {
    font-size: 14px;
  }

  .pedar-story .pedar-problem-heading {
    font-size: 38px;
  }
}

@media (max-width: 1060px) {
  .pedar-sensor-figure,
  .pedar-video,
  .pedar-specifications {
    grid-column: 2;
  }

  .pedar-sensor-figure img {
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 1060px) {
  .pedar-story .pedar-problem {
    min-height: 0;
    background: #061a33;
  }

  .pedar-banner-scene {
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
  }

  .pedar-story .pedar-problem::after {
    background: linear-gradient(180deg, #061a33 0%, #061a33 calc(100% - 41.66vw), transparent calc(100% - 36vw));
  }

  .pedar-story .emed-problem-content {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    width: calc(100% - 28px);
    min-height: 0;
    padding: 28px 0 max(200px, 41.66vw);
  }

  .pedar-story .pedar-problem .emed-step-number {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .pedar-story .pedar-problem .emed-step-label {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .pedar-story .pedar-problem-heading {
    font-size: 32px;
  }

  .pedar-story .pedar-problem p {
    font-size: 16px;
  }

  .pedar-story .emed-hero-badge {
    top: auto;
    right: auto;
    left: 0;
    bottom: 18px;
    width: 168px;
    transform: none;
  }

  .pedar-story .emed-hero-badge h1 {
    margin-bottom: 10px;
    font-size: 35px;
  }

  .pedar-story .emed-hero-badge span {
    font-size: 14px;
    line-height: 1.18;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .pedar-story .emed-hero-badge {
    width: 128px;
  }

  .pedar-story .emed-hero-badge h1 {
    margin-bottom: 8px;
    font-size: 27px;
  }

  .pedar-story .emed-hero-badge span {
    font-size: 12px;
    line-height: 1.16;
  }

  .pedar-story .pedar-wide-layout {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .pedar-story .emed-process {
    grid-template-columns: minmax(0, 1fr);
  }

  .pedar-story .emed-process-card img {
    height: 170px;
  }

  .pedar-spec-grid,
  .pedar-product-details,
  .pedar-product-detail-content,
  .emed-video-grid,
  .pedar-video-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pedar-story .emed-flyer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .pedar-story .emed-flyer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.home-hero {
  color: var(--ink);
  background: #eef1f3;
}

.home-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(246, 248, 250, .98) 0%, rgba(246, 248, 250, .92) 27%, rgba(246, 248, 250, .25) 40%, transparent 48%);
  pointer-events: none;
}

.home-hero > .container {
  z-index: 2;
  width: min(1664px, calc(100% - 96px));
}

.home-hero-copy {
  width: min(39%, 430px);
  min-width: 0;
}

.home-hero h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.12;
  overflow-wrap: break-word;
}

.home-hero .home-hero-eyebrow {
  margin-bottom: 14px;
  color: #2457a6;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.home-hero .home-hero-description {
  margin-bottom: 24px;
  color: #334155;
  font-size: 17px;
  line-height: 1.55;
}

.home-hero .button {
  padding-inline: 18px;
  font-size: 14px;
}

/* Emed remains the natural-height reference for every top banner. */
.hero.site-banner,
.page-hero.site-banner,
.pedar-story .pedar-problem.site-banner {
  width: 100%;
  height: var(--site-banner-height, auto);
  min-height: var(--site-banner-height, clamp(360px, 33.4vw, 610px));
}

.hero.site-banner > .container,
.page-hero.site-banner > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-block: 44px;
}

.hero.site-banner > .container > *,
.page-hero.site-banner > .container > * {
  flex-shrink: 0;
}

.pedar-story .pedar-problem.site-banner > .emed-problem-content {
  height: 100%;
  min-height: 0;
}

.banner-size-reference {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 1060px) {
  .hero.site-banner,
  .page-hero.site-banner,
  .pedar-story .pedar-problem.site-banner {
    min-height: var(--site-banner-height, 520px);
  }

  .pedar-story .pedar-problem.site-banner > .emed-problem-content {
    padding-bottom: 200px;
  }

  .pedar-problem.site-banner .pedar-banner-scene {
    width: min(100%, 480px);
  }

  .pedar-story .pedar-problem.site-banner::after {
    background: linear-gradient(180deg, #061a33 0%, #061a33 calc(100% - 200px), transparent calc(100% - 172px));
  }
}

@media (max-width: 760px) {
  .hero.site-banner,
  .page-hero.site-banner,
  .pedar-story .pedar-problem.site-banner {
    min-height: var(--site-banner-height, 560px);
  }

  .hero.site-banner > .container,
  .page-hero.site-banner > .container {
    padding-block: 34px;
  }

  .page-hero.site-banner h1 {
    font-size: 32px;
  }

  .pedar-story .pedar-problem.site-banner > .emed-problem-content {
    padding-bottom: 150px;
  }

  .pedar-problem.site-banner .pedar-banner-scene {
    width: min(100%, 360px);
  }

  .pedar-story .pedar-problem.site-banner::after {
    background: linear-gradient(180deg, #061a33 0%, #061a33 calc(100% - 150px), transparent calc(100% - 128px));
  }
}

@media (max-width: 1060px) {
  .home-hero.site-banner > .container {
    justify-content: flex-start;
    width: calc(100% - 40px);
    padding-block: 24px 208px;
  }

  .home-hero-copy {
    width: min(100%, 700px);
  }

  .home-hero-image {
    top: auto;
    height: 200px;
    object-position: right center;
  }

  .home-hero::before {
    background: linear-gradient(180deg, #eef1f3 0%, #eef1f3 calc(100% - 200px), transparent calc(100% - 180px));
  }

  .home-hero h1 {
    max-width: 660px;
    margin-bottom: 12px;
    font-size: 32px;
  }

  .home-hero .home-hero-eyebrow {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .home-hero .home-hero-description {
    max-width: 620px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 760px) {
  .home-hero.site-banner > .container {
    padding-bottom: 188px;
  }

  .home-hero-image {
    height: 180px;
  }

  .home-hero::before {
    background: linear-gradient(180deg, #eef1f3 0%, #eef1f3 calc(100% - 180px), transparent calc(100% - 166px));
  }

  .home-hero .hero-actions {
    gap: 10px;
  }

  .home-hero .button {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 13px;
  }
}
