:root {
  --eam-ink: #07131d;
  --eam-muted: #566572;
  --eam-navy: #061827;
  --eam-navy-2: #0a273a;
  --eam-cyan: #22c6e7;
  --eam-teal: #0d887b;
  --eam-amber: #e6ad47;
  --eam-steel: #eef4f6;
  --eam-surface: #ffffff;
  --eam-line: #d7e1e5;
  --eam-shadow: 0 22px 60px rgba(7, 28, 43, .12);
  --eam-shell: 1200px;
  --eam-header: 64px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body.eam-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--eam-ink);
  background: #fff;
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.eam-page img {
  display: block;
  max-width: 100%;
}

body.eam-page a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(var(--eam-shell), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 14px;
  color: #fff;
  background: var(--eam-navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Native header is a direct-file fallback. The shared site shell replaces it in production. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(7, 19, 29, .09);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
}

.nav {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  min-height: var(--eam-header);
}

.brand,
.nav-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  width: fit-content;
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.nav-links {
  justify-content: center;
  gap: 22px;
}

.nav-links a,
.nav-back {
  color: #46525d;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active,
.nav-back:hover {
  color: #0788a2;
}

.nav-actions {
  justify-content: flex-end;
  gap: 10px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 5px;
  color: #fff !important;
  background: var(--eam-navy);
  font-size: 12px;
  font-weight: 800;
}

.mobile-menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--eam-line);
  border-radius: 5px;
  background: linear-gradient(#202a32 0 0) center 11px / 18px 2px no-repeat,
    linear-gradient(#202a32 0 0) center 17px / 18px 2px no-repeat,
    linear-gradient(#202a32 0 0) center 23px / 18px 2px no-repeat,
    #fff;
}

main h1,
main h2,
main h3 {
  max-width: 100%;
  margin: 0;
  overflow: visible;
  line-height: 1.08;
  text-overflow: clip;
  white-space: nowrap;
}

main p {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

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

.button-primary {
  color: #04121b !important;
  background: var(--eam-cyan);
}

.button-primary:hover {
  background: #56d8ee;
}

.button-ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .04);
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .09);
}

.eam-hero {
  position: relative;
  display: grid;
  min-height: 730px;
  overflow: hidden;
  color: #fff;
  background: var(--eam-navy);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  min-height: 730px;
  padding: 96px 0 86px;
}

.hero-content > * {
  max-width: 650px;
}

.hero-overline,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--eam-teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-overline {
  color: #65e6f8;
}

.hero-overline::before,
.section-label::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eam-hero h1 {
  margin-top: 20px;
  font-size: clamp(48px, 5.1vw, 74px);
  font-weight: 900;
}

.hero-statement {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 750;
  line-height: 1.35;
}

.hero-lead {
  max-width: 620px;
  margin-top: 21px;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 31px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 620px;
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(5, 27, 42, .58);
  backdrop-filter: blur(12px);
}

.hero-facts article {
  min-width: 0;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.hero-facts article:last-child {
  border-right: 0;
}

.hero-facts strong,
.hero-facts span,
.hero-facts small {
  display: block;
}

.hero-facts strong {
  color: #fff;
  font-size: 25px;
  font-weight: 850;
}

.hero-facts span {
  margin-top: 5px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  line-height: 1.45;
}

.hero-facts small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  line-height: 1.45;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 18, 31, .98) 0%, rgba(4, 18, 31, .93) 34%, rgba(4, 18, 31, .48) 58%, rgba(4, 18, 31, .08) 82%),
    linear-gradient(0deg, rgba(4, 18, 31, .62), transparent 40%);
  pointer-events: none;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr);
  align-items: end;
  gap: 76px;
  margin-bottom: 52px;
}

.section-intro h2,
.lifecycle h2,
.mobile-field h2,
.differentiator-copy h2,
.faq-copy h2,
.closing h2 {
  margin-top: 14px;
  font-size: clamp(34px, 3.15vw, 50px);
  font-weight: 880;
}

.section-intro > p,
.section-lead,
.differentiator-copy > p,
.faq-copy > p,
.closing-inner > div > p:last-child {
  color: var(--eam-muted);
  font-size: 15px;
  line-height: 1.85;
}

.audience-strip {
  display: grid;
  grid-template-columns: auto repeat(6, minmax(0, 1fr));
  align-items: stretch;
  border: 1px solid var(--eam-line);
  background: #fff;
}

.audience-strip > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 16px;
  border-right: 1px solid var(--eam-line);
  color: #35434f;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.audience-strip > span:first-child {
  color: #fff;
  background: var(--eam-navy);
}

.audience-strip > span:last-child {
  border-right: 0;
}

.challenge-board {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.5fr);
  gap: 70px;
  margin-top: 58px;
  padding-top: 54px;
  border-top: 1px solid var(--eam-line);
}

.challenge-lead strong {
  color: var(--eam-teal);
  font-size: 14px;
}

.challenge-lead h3 {
  margin-top: 16px;
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 850;
}

.challenge-lead p {
  margin-top: 19px;
  color: var(--eam-muted);
  font-size: 14px;
  line-height: 1.8;
}

.challenge-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.challenge-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--eam-line);
}

.challenge-list li:nth-child(-n + 2) {
  border-top: 0;
}

.challenge-list li > span {
  color: #9aa9b3;
  font-size: 12px;
  font-weight: 850;
}

.challenge-list strong {
  display: block;
  font-size: 16px;
}

.challenge-list p {
  margin-top: 8px;
  color: var(--eam-muted);
  font-size: 13px;
  line-height: 1.65;
}

.lifecycle {
  background: var(--eam-steel);
}

.lifecycle-layout {
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(0, 1.32fr);
  align-items: center;
  gap: 68px;
}

.lifecycle-copy .section-lead {
  margin-top: 23px;
}

.lifecycle-steps {
  display: grid;
  gap: 0;
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}

.lifecycle-steps li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 52px;
  border-top: 1px solid #cbd8dd;
  font-size: 14px;
  font-weight: 720;
}

.lifecycle-steps li:last-child {
  border-bottom: 1px solid #cbd8dd;
}

.lifecycle-steps span {
  color: var(--eam-teal);
  font-size: 11px;
}

.lifecycle-visual,
.mobile-visual,
.operations-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid #cad8de;
  background: #fff;
  box-shadow: var(--eam-shadow);
}

.lifecycle-visual {
  aspect-ratio: 16 / 10;
}

.lifecycle-visual img,
.mobile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capabilities {
  color: #fff;
  background: var(--eam-navy);
}

.section-intro.light .section-label {
  color: #60d9e7;
}

.section-intro.light > p,
.capabilities .section-intro > p,
.scenarios .section-intro > p {
  color: rgba(255, 255, 255, .58);
}

.capability-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.capability-feature {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: start;
  gap: 22px;
  min-height: 276px;
  padding: 42px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: background .22s ease;
}

.capability-feature:hover {
  background: rgba(34, 198, 231, .07);
}

.capability-code {
  color: #55d7e9;
  font-size: 12px;
  font-weight: 850;
}

.capability-feature h3 {
  color: #fff;
  font-size: clamp(21px, 2vw, 29px);
}

.capability-feature p {
  margin-top: 17px;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  line-height: 1.85;
}

.capability-feature > ul {
  grid-column: 2 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  width: 100%;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  list-style: none;
}

.capability-feature > ul li {
  position: relative;
  min-width: 0;
  padding-left: 15px;
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.capability-feature > ul li::before {
  position: absolute;
  top: .64em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #55d7e9;
  content: "";
  box-shadow: 0 0 0 4px rgba(85, 215, 233, .09);
}

.mobile-field {
  background: #fff;
}

.mobile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .82fr);
  align-items: center;
  gap: 72px;
}

.mobile-visual {
  aspect-ratio: 16 / 11;
}

.mobile-copy .section-lead {
  margin-top: 23px;
}

.mobile-path {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 33px;
  border-top: 1px solid var(--eam-line);
  border-left: 1px solid var(--eam-line);
}

.mobile-path > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 4px 11px;
  padding: 18px;
  border-right: 1px solid var(--eam-line);
  border-bottom: 1px solid var(--eam-line);
}

.mobile-path span {
  grid-row: 1 / 3;
  color: var(--eam-teal);
  font-size: 11px;
  font-weight: 850;
}

.mobile-path strong {
  font-size: 14px;
}

.mobile-path small {
  color: var(--eam-muted);
  font-size: 11px;
  line-height: 1.45;
}

.mobile-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.mobile-notes span {
  padding: 7px 10px;
  border: 1px solid #c8d8dd;
  border-radius: 999px;
  color: #34505c;
  font-size: 11px;
  font-weight: 750;
}

.operations {
  background: var(--eam-steel);
}

.operations .section-intro {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 52px;
  margin-bottom: 38px;
}

.operations-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: stretch;
  background: var(--eam-navy-2);
}

.operations-visual > img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.operations-visual figcaption {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, .13);
  color: #fff;
  background: var(--eam-navy);
}

.operations-visual figcaption div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.operations-visual figcaption div:last-child {
  border-bottom: 0;
}

.operations-visual figcaption span,
.operations-visual figcaption strong {
  display: block;
}

.operations-visual figcaption span {
  color: #64dbea;
  font-size: 11px;
  font-weight: 800;
}

.operations-visual figcaption strong {
  margin-top: 6px;
  font-size: 13px;
}

.differentiators {
  padding-bottom: 0;
}

.differentiator-layout {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.35fr);
  gap: 90px;
}

.differentiator-copy > p {
  margin-top: 23px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  color: var(--eam-teal) !important;
  font-size: 14px;
  font-weight: 800;
}

.text-link i {
  font-size: 18px;
  font-style: normal;
  transition: transform .2s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

.differentiator-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--eam-line);
  border-left: 1px solid var(--eam-line);
}

.differentiator-list article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 15px;
  min-height: 175px;
  padding: 29px;
  border-right: 1px solid var(--eam-line);
  border-bottom: 1px solid var(--eam-line);
}

.differentiator-list article > span {
  color: var(--eam-teal);
  font-size: 11px;
  font-weight: 850;
}

.differentiator-list h3 {
  font-size: 18px;
}

.differentiator-list p {
  margin-top: 12px;
  color: var(--eam-muted);
  font-size: 13px;
  line-height: 1.72;
}

.integration-rail {
  display: grid;
  grid-template-columns: minmax(200px, 1.7fr) repeat(7, minmax(70px, .5fr));
  align-items: center;
  gap: 0;
  margin-top: 76px;
  border-top: 1px solid var(--eam-line);
  border-bottom: 1px solid var(--eam-line);
}

.integration-rail > * {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 18px;
  border-right: 1px solid var(--eam-line);
  font-size: 11px;
  white-space: nowrap;
}

.integration-rail > *:last-child {
  border-right: 0;
}

.integration-rail > span {
  color: var(--eam-muted);
}

.integration-rail strong {
  justify-content: center;
  color: #243844;
}

.scenarios {
  color: #fff;
  background: #0c2a2d;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.scenario-grid article {
  min-height: 210px;
  padding: 31px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: background .2s ease;
}

.scenario-grid article:hover {
  background: rgba(255, 255, 255, .055);
}

.scenario-grid span {
  color: #6dd7d0;
  font-size: 11px;
  font-weight: 850;
}

.scenario-grid h3 {
  margin-top: 28px;
  font-size: 22px;
}

.scenario-grid p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .57);
  font-size: 13px;
  line-height: 1.75;
}

.faq {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.3fr);
  gap: 96px;
}

.faq-copy > p {
  margin-top: 23px;
}

.faq-list {
  border-top: 1px solid var(--eam-line);
}

.faq-item {
  border-bottom: 1px solid var(--eam-line);
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 72px;
  padding: 0;
  border: 0;
  color: var(--eam-ink);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--eam-line);
  border-radius: 50%;
  color: var(--eam-teal);
  font-size: 18px;
  font-style: normal;
  transition: transform .2s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .26s ease;
}

.faq-answer > p {
  min-height: 0;
  overflow: hidden;
  color: var(--eam-muted);
  font-size: 13px;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding: 0 50px 23px 0;
}

.closing {
  padding: 68px 0;
  color: #fff;
  background: linear-gradient(110deg, #061827 0%, #0b3541 58%, #126b61 100%);
}

.closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 72px;
}

.closing .section-label {
  color: #68dce8;
}

.closing h2 {
  max-width: 790px;
}

.closing-inner > div > p:last-child {
  max-width: 720px;
  margin-top: 17px;
  color: rgba(255, 255, 255, .6);
}

.closing-actions {
  display: flex;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links.open,
  body.nav-open .nav-links {
    position: fixed;
    top: var(--eam-header);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 24px 18px;
    border-top: 1px solid var(--eam-line);
    border-bottom: 1px solid var(--eam-line);
    background: #fff;
    box-shadow: 0 18px 38px rgba(5, 25, 38, .12);
  }

  .nav-links.open a {
    display: flex;
    align-items: center;
    min-height: 44px;
    border-bottom: 1px solid #edf1f3;
    font-size: 14px;
  }

  .hero-content > * {
    max-width: 590px;
  }

  .section-intro {
    gap: 44px;
  }

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

  .audience-strip > span {
    border-bottom: 1px solid var(--eam-line);
  }

  .audience-strip > span:nth-child(3n) {
    border-right: 0;
  }

  .audience-strip > span:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .lifecycle-layout,
  .mobile-layout,
  .differentiator-layout,
  .faq-layout {
    gap: 48px;
  }

  .operations-visual {
    grid-template-columns: 1fr;
  }

  .operations-visual > img {
    height: auto;
  }

  .operations-visual figcaption {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-left: 0;
  }

  .operations-visual figcaption div {
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .operations-visual figcaption div:nth-child(3n) {
    border-right: 0;
  }

  .operations-visual figcaption div:nth-child(n + 4) {
    border-bottom: 0;
  }

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

  .integration-rail > span {
    grid-column: 1 / -1;
    justify-content: center;
    border-right: 0;
    border-bottom: 1px solid var(--eam-line);
  }
}

@media (max-width: 860px) {
  .operations .section-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 30px;
  }

  .section {
    padding: 72px 0;
  }

  .section-intro,
  .lifecycle-layout,
  .mobile-layout,
  .differentiator-layout,
  .faq-layout,
  .challenge-board,
  .closing-inner {
    grid-template-columns: 1fr;
  }

  .section-intro,
  .challenge-board,
  .lifecycle-layout,
  .mobile-layout,
  .differentiator-layout,
  .faq-layout {
    gap: 38px;
  }

  .section-intro {
    align-items: start;
    margin-bottom: 38px;
  }

  .challenge-board {
    margin-top: 42px;
    padding-top: 38px;
  }

  .lifecycle-copy,
  .mobile-copy {
    order: 1;
  }

  .lifecycle-visual,
  .mobile-visual {
    order: 2;
  }

  .capability-feature {
    min-height: 250px;
    padding: 32px;
  }

  .faq-copy {
    max-width: 680px;
  }

  .closing-inner {
    gap: 28px;
  }

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

@media (max-width: 760px) {
  :root {
    --eam-header: 58px;
  }

  html {
    scroll-padding-top: 100px;
  }

  .shell {
    width: calc(100% - 30px);
  }

  .nav {
    gap: 8px;
    min-height: var(--eam-header);
  }

  .brand {
    font-size: 13px;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .nav-back,
  .nav-cta {
    display: none;
  }

  .eam-hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .hero-content {
    min-height: 0;
    padding: 54px 0 34px;
  }

  .hero-content > * {
    max-width: 100%;
  }

  .hero-overline {
    font-size: 10px;
  }

  .eam-hero h1 {
    margin-top: 15px;
    font-size: 38px;
  }

  .hero-statement {
    margin-top: 15px;
    font-size: 21px;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 24px;
  }

  .button {
    min-height: 46px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-facts {
    width: 100%;
    margin-top: 26px;
  }

  .hero-facts article {
    padding: 14px 9px;
  }

  .hero-facts strong {
    font-size: 20px;
  }

  .hero-facts span {
    font-size: 9px;
  }

  .hero-media {
    position: relative;
    z-index: 2;
    inset: auto;
    aspect-ratio: 16 / 10;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(4, 18, 31, .08) 0%, rgba(4, 18, 31, .32) 100%);
  }

  .section {
    padding: 54px 0;
  }

  .section-label {
    font-size: 10px;
  }

  .section-intro h2,
  .lifecycle h2,
  .mobile-field h2,
  .differentiator-copy h2,
  .faq-copy h2,
  .closing h2 {
    margin-top: 11px;
    font-size: 30px;
  }

  .section-intro > p,
  .section-lead,
  .differentiator-copy > p,
  .faq-copy > p,
  .closing-inner > div > p:last-child {
    font-size: 14px;
    line-height: 1.72;
  }

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

  .audience-strip > span {
    min-height: 48px;
    padding: 0 8px;
    font-size: 11px;
  }

  .audience-strip > span:nth-child(3n) {
    border-right: 1px solid var(--eam-line);
  }

  .audience-strip > span:nth-child(2n) {
    border-right: 0;
  }

  .challenge-lead h3 {
    font-size: 27px;
  }

  .challenge-list {
    grid-template-columns: 1fr;
  }

  .challenge-list li:nth-child(2) {
    border-top: 1px solid var(--eam-line);
  }

  .challenge-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 16px 0;
  }

  .lifecycle-visual,
  .mobile-visual {
    aspect-ratio: 4 / 3;
  }

  .lifecycle-visual img,
  .mobile-visual img {
    object-position: center;
  }

  .capability-matrix,
  .differentiator-list,
  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .capability-feature {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 26px 22px;
  }

  .capability-feature h3 {
    font-size: 21px;
  }

  .capability-feature p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.72;
  }

  .capability-feature > ul {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 16px;
  }

  .mobile-path {
    grid-template-columns: 1fr;
  }

  .mobile-path > div {
    padding: 15px;
  }

  .operations-visual > img {
    aspect-ratio: 4 / 3;
  }

  .operations-visual figcaption {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .operations-visual figcaption div:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, .12);
  }

  .operations-visual figcaption div:nth-child(2n) {
    border-right: 0;
  }

  .operations-visual figcaption div:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .operations-visual figcaption div:nth-child(n + 5) {
    border-bottom: 0;
  }

  .differentiator-list article {
    min-height: 0;
    padding: 23px 20px;
  }

  .integration-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 48px;
  }

  .integration-rail > * {
    min-height: 50px;
    padding: 0 8px;
    font-size: 10px;
  }

  .scenario-grid article {
    min-height: 0;
    padding: 24px 22px;
  }

  .scenario-grid h3 {
    margin-top: 18px;
    font-size: 20px;
  }

  .faq-question {
    min-height: 64px;
    font-size: 14px;
  }

  .closing {
    padding: 52px 0;
  }

  .closing-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width: 390px) {
  .shell {
    width: calc(100% - 24px);
  }

  .eam-hero h1 {
    font-size: 34px;
  }

  .hero-statement {
    font-size: 19px;
  }

  .section-intro h2,
  .lifecycle h2,
  .mobile-field h2,
  .differentiator-copy h2,
  .faq-copy h2,
  .closing h2 {
    font-size: 27px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
