.en10-page {
  --en10-header-offset: 5.25rem;
  --en10-cream: #fff8ec;
  --en10-paper: #fffdf8;
  --en10-sand: #ead8bd;
  --en10-ink: #332f2a;
  --en10-muted: #6f675d;
  --en10-green: #0d493c;
  --en10-green-soft: #e1eee7;
  --en10-orange: #cb591d;
  --en10-orange-dark: #9f3d12;
  --en10-violet: #7352ad;
  --en10-blue: #286f9f;
  --en10-shadow: 0 24px 60px rgba(72, 49, 29, 0.1);
  color: var(--en10-ink);
  background:
    radial-gradient(circle at 8% 17%, rgba(203, 89, 29, 0.06), transparent 25rem),
    var(--en10-cream);
  font-family: var(--misti-font-body);
  overflow: hidden;
}

body:has(.en10-page) {
  --en10-header-offset: 5.25rem;
  overflow-x: hidden;
  scroll-padding-top: var(--en10-header-offset);
}

html:has(.en10-page) {
  overflow-x: hidden;
}

body:has(.en10-page) .public-header {
  z-index: 1000;
  background: #fffaf2;
  backdrop-filter: none;
}

body:has(.en10-page) .scroll-top-percentage {
  display: none;
}

.en10-page *,
.en10-page *::before,
.en10-page *::after {
  box-sizing: border-box;
}

.en10-page header {
  position: static;
  z-index: auto;
}

.en10-page h1,
.en10-page h2,
.en10-page h3,
.en10-page p,
.en10-page figure {
  margin-top: 0;
}

.en10-page h1,
.en10-page h2,
.en10-page h3 {
  color: var(--en10-ink);
  font-family: var(--misti-font-display);
}

.en10-page p {
  color: var(--en10-muted);
  line-height: 1.75;
}

.en10-shell {
  width: min(100% - 2.5rem, 1320px);
  margin-inline: auto;
}

.en10-eyebrow,
.en10-module__label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--en10-orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.en10-eyebrow::before {
  width: 1.7rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.en10-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: rgba(51, 47, 42, 0.62);
  font-size: 0.74rem;
}

.en10-breadcrumbs a,
.en10-breadcrumbs a:visited {
  color: var(--en10-green);
  font-weight: 700;
}

.en10-breadcrumbs a:hover,
.en10-breadcrumbs a:focus-visible {
  color: var(--en10-orange-dark) !important;
}

.en10-hero {
  position: relative;
  z-index: 0;
  overflow: hidden;
  overflow: clip;
  padding: clamp(7.6rem, 9vw, 8.8rem) 0 clamp(3rem, 4.5vw, 4.5rem);
  border-bottom: 1px solid rgba(126, 91, 51, 0.14);
  background:
    radial-gradient(circle at 84% 12%, rgba(203, 89, 29, 0.14), transparent 19rem),
    linear-gradient(125deg, #fffaf1 0%, #f9eddb 100%);
}

.en10-hero::before,
.en10-hero::after {
  position: absolute;
  border: 1px solid rgba(203, 89, 29, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.en10-hero::before {
  top: 9rem;
  right: 0;
  width: min(22rem, 100%);
  height: auto;
  aspect-ratio: 1;
  clip-path: inset(0 0 0 27%);
}

.en10-hero::after {
  right: 7rem;
  bottom: -8rem;
  width: 14rem;
  height: 14rem;
}

.en10-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(19rem, 0.98fr) minmax(30rem, 1.22fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}

.en10-hero__copy h1 {
  margin: 0.8rem 0 1.25rem;
  font-size: clamp(3.25rem, 5.3vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.en10-hero__lead {
  max-width: 36rem;
  margin-bottom: 1.7rem;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.en10-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.en10-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.en10-button > * {
  color: inherit;
}

.en10-button--primary,
.en10-button--primary:visited {
  color: #fffaf1;
  background: var(--en10-orange);
}

.en10-button--primary:hover,
.en10-button--primary:focus-visible,
.en10-button--primary:active {
  color: #fffaf1 !important;
  background: var(--en10-orange-dark);
}

.en10-button--secondary,
.en10-button--secondary:visited {
  border-color: rgba(13, 73, 60, 0.36);
  color: var(--en10-green);
  background: rgba(255, 253, 248, 0.74);
}

.en10-button--secondary:hover,
.en10-button--secondary:focus-visible,
.en10-button--secondary:active {
  border-color: var(--en10-green);
  color: var(--en10-green) !important;
  background: var(--en10-green-soft);
}

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

.en10-button:focus-visible,
.en10-breadcrumbs a:focus-visible,
.en10-module-navigation a:focus-visible {
  outline: 3px solid rgba(203, 89, 29, 0.38);
  outline-offset: 4px;
}

.en10-hero__highlights {
  display: grid;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

.en10-hero__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #4f4942;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.en10-hero__highlights svg {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--en10-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.en10-hero__media {
  position: relative;
  width: min(100%, 47rem);
  justify-self: end;
  margin-bottom: 0;
  padding: 0;
}

.en10-hero__media::before {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: -12%;
  width: 64%;
  height: 36%;
  border-radius: 50%;
  background: rgba(203, 89, 29, 0.14);
  filter: blur(26px);
  content: "";
}

.en10-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(55, 39, 25, 0.16));
}

.en10-hero__media figcaption,
.en10-module-hero__media figcaption {
  padding: 0.45rem 0.45rem 0;
  color: rgba(51, 47, 42, 0.62);
  font-size: 0.7rem;
  text-align: center;
}

.en10-intro { padding: clamp(3.25rem, 5vw, 5rem) 0; }
.en10-modules { padding: clamp(3.75rem, 5.5vw, 5.75rem) 0; }
.en10-commercial-band { padding: 0 0 clamp(3.75rem, 5.5vw, 5.75rem); }
.en10-gallery { padding: clamp(3.75rem, 5.5vw, 5.5rem) 0; }
.en10-process,
.en10-results { padding: clamp(3.5rem, 5.5vw, 5.5rem) 0; }

.en10-commercial-band__panel {
  align-items: center;
  background: #f1e7d5;
  border: 1px solid rgba(43, 74, 61, 0.12);
  border-radius: 26px;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.en10-commercial-band h2 {
  color: var(--en10-green);
  font-family: var(--misti-font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  line-height: 1.08;
  margin: 0;
  max-width: 760px;
}

.en10-legal-link,
.en10-legal-link:visited {
  color: #f7ead1;
  display: inline-block;
  font-weight: 750;
  margin-top: 0.85rem;
  text-decoration-color: rgba(247, 234, 209, 0.55);
  text-underline-offset: 0.25em;
}

.en10-legal-link:hover,
.en10-legal-link:focus-visible {
  color: #fff;
}

.en10-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.en10-intro__panel {
  display: grid;
  align-items: center;
  padding: clamp(2rem, 3.2vw, 3.25rem);
  border: 1px solid rgba(126, 91, 51, 0.16);
  border-radius: 2rem;
  background: var(--en10-paper);
  box-shadow: 0 18px 48px rgba(72, 49, 29, 0.07);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.en10-intro h2,
.en10-section-heading h2,
.en10-module-study h2,
.en10-toolkit h2,
.en10-final h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(2.25rem, 4vw, 4.15rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.en10-intro__copy p:last-child {
  margin-bottom: 0;
}

.en10-intro h2 {
  max-width: 15ch;
}

.en10-intro__copy {
  max-width: 40rem;
}

.en10-section-heading {
  max-width: 54rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.en10-section-heading h2 {
  margin-bottom: 1rem;
}

.en10-section-heading p {
  max-width: 47rem;
  margin-bottom: 0;
}

#presentacion,
#modulos,
#funciones,
#capturas,
#consulta,
#como-funciona {
  scroll-margin-top: var(--en10-header-offset);
}

.en10-modules .en10-section-heading {
  max-width: 48rem;
}

.en10-modules .en10-section-heading h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
}

.en10-module-list {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.en10-module {
  --module-accent: var(--en10-orange);
  display: grid;
  min-height: 27rem;
  border: 1px solid color-mix(in srgb, var(--module-accent) 25%, var(--en10-sand));
  border-radius: 2rem;
  background:
    linear-gradient(125deg, color-mix(in srgb, var(--module-accent) 7%, transparent), transparent 45%),
    var(--en10-paper);
  box-shadow: 0 20px 55px rgba(72, 49, 29, 0.08);
  overflow: hidden;
  grid-template-columns: minmax(0, 1.07fr) minmax(24rem, 0.93fr);
}

.en10-module--violet { --module-accent: var(--en10-violet); }
.en10-module--green { --module-accent: #21735b; }
.en10-module--blue { --module-accent: var(--en10-blue); }

.en10-module--reverse .en10-module__media {
  order: 2;
}

.en10-module__media {
  display: flex;
  min-height: 100%;
  align-items: center;
  margin-bottom: 0;
  padding: clamp(1rem, 2vw, 1.6rem);
  background: #353535;
}

.en10-module__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 16px 36px rgba(4, 10, 20, 0.28);
}

.en10-module__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 4vw, 2rem);
  flex-direction: column;
}

.en10-module__heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.en10-module__number {
  display: inline-flex;
  width: 3.6rem;
  height: 3.6rem;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--module-accent) 42%, transparent);
  border-radius: 50%;
  color: var(--module-accent);
  background: color-mix(in srgb, var(--module-accent) 8%, var(--en10-paper));
  font-family: var(--misti-font-display);
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.en10-module__label {
  color: var(--module-accent);
}

.en10-module__heading h3 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.65rem, 2.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.08;
}

.en10-module__methodology {
  margin: 1.4rem 0 0.65rem;
  color: var(--module-accent) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.en10-check-list {
  display: grid;
  margin: 0.5rem 0 1.5rem;
  padding: 0;
  list-style: none;
  gap: 0.55rem;
}

.en10-check-list li {
  position: relative;
  padding-left: 1.25rem;
  color: #544d45;
  font-size: 0.84rem;
  line-height: 1.5;
}

.en10-check-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--module-accent);
  content: "";
}

.en10-button--module,
.en10-button--module:visited {
  border-color: var(--module-accent);
  color: var(--module-accent);
  background: transparent;
}

.en10-button--module:hover,
.en10-button--module:focus-visible,
.en10-button--module:active {
  color: #fffaf1 !important;
  background: var(--module-accent);
}

.en10-workflow {
  padding: clamp(1.5rem, 3vw, 3rem) 0 clamp(3.5rem, 5vw, 5rem);
}

.en10-workflow__panel {
  position: relative;
  padding: clamp(2.25rem, 4vw, 4rem);
  border-radius: 2.2rem;
  color: #fff8ec;
  background:
    radial-gradient(circle at 90% 12%, rgba(214, 151, 75, 0.16), transparent 20rem),
    var(--en10-green);
  overflow: hidden;
}

.en10-section-heading--light h2,
.en10-section-heading--light p {
  color: #fff8ec;
}

.en10-section-heading--light .en10-eyebrow {
  color: #efb36e;
}

.en10-feature-grid,
.en10-results__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.en10-feature-grid article {
  padding: 1.5rem;
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.06);
}

.en10-feature-grid article > span {
  color: #efb36e;
  font-family: var(--misti-font-display);
  font-size: 1.45rem;
}

.en10-feature-grid h3 {
  margin: 1rem 0 0.6rem;
  color: #fff8ec;
  font-size: 1.25rem;
}

.en10-feature-grid p {
  margin-bottom: 0;
  color: rgba(255, 248, 236, 0.72);
  font-size: 0.8rem;
}

.en10-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.en10-gallery figure {
  display: flex;
  min-width: 0;
  margin-bottom: 0;
  padding: 0.65rem;
  border: 1px solid rgba(126, 91, 51, 0.16);
  border-radius: 1.4rem;
  background: var(--en10-paper);
  flex-direction: column;
}

.en10-gallery img {
  display: block;
  width: 100%;
  height: 18rem;
  border-radius: 0.95rem;
  background: #0a1526;
  object-fit: contain;
}

.en10-gallery figcaption {
  padding: 0.9rem 0.5rem 0.35rem;
  color: var(--en10-green);
  font-size: 0.76rem;
  font-weight: 800;
}

.en10-final {
  padding: 0 0 clamp(3.5rem, 5vw, 5.5rem);
}

.en10-final__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(126, 91, 51, 0.16);
  border-radius: 2rem;
  background: #f5e7d3;
  gap: 2rem;
}

.en10-final__panel > div:first-child {
  max-width: 48rem;
}

.en10-final h2 {
  max-width: 17ch;
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.en10-final p {
  margin-bottom: 0;
}

/* Module detail */
.en10-module-page {
  --module-accent: var(--en10-orange);
}

.en10-module-page--violet { --module-accent: var(--en10-violet); }
.en10-module-page--green { --module-accent: #21735b; }
.en10-module-page--blue { --module-accent: var(--en10-blue); }

.en10-module-hero {
  position: relative;
  z-index: 0;
  padding: clamp(8.5rem, 11vw, 10rem) 0 clamp(4rem, 7vw, 6.5rem);
  border-bottom: 1px solid rgba(126, 91, 51, 0.14);
  background:
    radial-gradient(circle at 86% 20%, color-mix(in srgb, var(--module-accent) 16%, transparent), transparent 23rem),
    linear-gradient(135deg, #fffaf1, #f7ead6);
}

.en10-module-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(19rem, 0.78fr) minmax(30rem, 1.22fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
}

.en10-module-hero__copy .en10-module__label {
  color: var(--module-accent);
}

.en10-module-hero h1 {
  max-width: 13ch;
  margin: 0.75rem 0 1rem;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.en10-module-hero__methodology {
  margin-bottom: 0.8rem;
  color: var(--module-accent) !important;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.en10-module-hero__lead {
  max-width: 35rem;
  margin-bottom: 1.6rem;
  font-size: 1.05rem;
}

.en10-module-page .en10-button--primary,
.en10-module-page .en10-button--primary:visited {
  background: var(--module-accent);
}

.en10-module-page .en10-button--primary:hover,
.en10-module-page .en10-button--primary:focus-visible,
.en10-module-page .en10-button--primary:active {
  color: #fffaf1 !important;
  background: color-mix(in srgb, var(--module-accent) 80%, #121212);
}

.en10-module-hero__media {
  margin-bottom: 0;
  padding: 0.7rem;
  border: 1px solid color-mix(in srgb, var(--module-accent) 25%, var(--en10-sand));
  border-radius: 1.7rem;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--en10-shadow);
}

.en10-module-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.1rem;
}

.en10-module-study {
  padding: clamp(3.5rem, 6vw, 6rem) 0 0;
}

.en10-module-study__panel {
  position: relative;
  padding: clamp(2.2rem, 4vw, 4rem);
  border-left: 5px solid var(--module-accent);
  border-radius: 0 1.8rem 1.8rem 0;
  background: var(--en10-paper);
  box-shadow: 0 18px 48px rgba(72, 49, 29, 0.07);
}

.en10-module-study h2 {
  margin-bottom: 1rem;
}

.en10-module-study p {
  max-width: 64rem;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.en10-process__steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.en10-process__steps li {
  position: relative;
  display: grid;
  padding-right: 2rem;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
}

.en10-process__steps li:not(:last-child)::after {
  position: absolute;
  top: 1.55rem;
  right: 0.4rem;
  width: 1.2rem;
  height: 1px;
  background: color-mix(in srgb, var(--module-accent) 40%, transparent);
  content: "";
}

.en10-process__steps li > span {
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fffaf1;
  background: var(--module-accent);
  font-family: var(--misti-font-display);
  font-size: 1.1rem;
}

.en10-process__steps h3 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
}

.en10-process__steps p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.en10-toolkit {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background: var(--en10-green);
}

.en10-toolkit__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.en10-toolkit h2,
.en10-toolkit p {
  color: #fff8ec;
}

.en10-toolkit .en10-eyebrow {
  color: #efb36e;
}

.en10-toolkit__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.en10-toolkit__list li {
  display: flex;
  min-height: 4.4rem;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 248, 236, 0.14);
  border-radius: 1rem;
  color: rgba(255, 248, 236, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  line-height: 1.45;
}

.en10-toolkit__list svg {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  fill: none;
  stroke: #efb36e;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.en10-results__grid article {
  padding: 1.6rem;
  border: 1px solid color-mix(in srgb, var(--module-accent) 22%, var(--en10-sand));
  border-radius: 1.25rem;
  background: var(--en10-paper);
}

.en10-results__grid article::before {
  display: block;
  width: 2.3rem;
  height: 0.2rem;
  margin-bottom: 1.2rem;
  border-radius: 1rem;
  background: var(--module-accent);
  content: "";
}

.en10-results__grid h3 {
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.en10-results__grid p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.en10-module-navigation {
  padding: 0 0 clamp(3.5rem, 6vw, 5.5rem);
}

.en10-module-navigation__inner {
  display: grid;
  min-height: 5rem;
  align-items: stretch;
  border: 1px solid rgba(126, 91, 51, 0.16);
  border-radius: 1.35rem;
  background: var(--en10-paper);
  overflow: hidden;
  grid-template-columns: 1fr auto 1fr;
}

.en10-module-navigation a,
.en10-module-navigation a:visited {
  color: var(--en10-green);
  text-decoration: none;
}

.en10-module-navigation a:hover,
.en10-module-navigation a:focus-visible,
.en10-module-navigation a:active {
  color: var(--en10-green) !important;
  background: var(--en10-green-soft);
}

.en10-module-navigation__side {
  display: grid;
  min-height: 5rem;
  align-items: center;
  padding: 0.8rem 1.25rem;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "arrow small"
    "arrow strong";
  column-gap: 0.8rem;
}

.en10-module-navigation__side > span {
  font-size: 1.3rem;
  grid-area: arrow;
}

.en10-module-navigation__side small { grid-area: small; }
.en10-module-navigation__side strong { grid-area: strong; }

.en10-module-navigation__side--next {
  text-align: right;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "small arrow"
    "strong arrow";
}

.en10-module-navigation__home {
  display: inline-flex;
  min-width: 15rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  border-right: 1px solid rgba(126, 91, 51, 0.13);
  border-left: 1px solid rgba(126, 91, 51, 0.13);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

.en10-module-navigation__spacer {
  min-height: 5rem;
}

@media (max-width: 1099.98px) {
  .en10-hero__inner,
  .en10-module-hero__grid {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(25rem, 1.18fr);
    gap: 2rem;
  }

  .en10-module {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .en10-module--reverse .en10-module__media {
    order: initial;
  }

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

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

  .en10-gallery figure:last-child {
    grid-column: 1 / -1;
  }

  .en10-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .en10-process__steps li:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 799.98px) {
  .en10-commercial-band__panel {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .en10-commercial-band__panel .en10-button {
    width: 100%;
  }

  .en10-shell {
    width: min(100% - 1.5rem, 720px);
  }

  .en10-hero,
  .en10-module-hero {
    padding-top: 7rem;
  }

  .en10-hero__inner,
  .en10-module-hero__grid,
  .en10-intro__panel,
  .en10-toolkit__grid {
    grid-template-columns: 1fr;
  }

  .en10-hero__copy h1 {
    max-width: 11ch;
  }

  .en10-hero__media,
  .en10-module-hero__media {
    justify-self: center;
    margin-top: 0.5rem;
  }

  .en10-intro__panel,
  .en10-workflow__panel,
  .en10-final__panel {
    border-radius: 1.5rem;
  }

  .en10-final__panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .en10-toolkit__list {
    grid-template-columns: 1fr;
  }

  .en10-module-navigation__inner {
    grid-template-columns: 1fr 1fr;
  }

  .en10-module-navigation__home {
    min-height: 4rem;
    border-right: 0;
    border-bottom: 1px solid rgba(126, 91, 51, 0.13);
    border-left: 0;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .en10-module-navigation__side,
  .en10-module-navigation__spacer {
    min-height: 4.8rem;
  }

  .en10-module-navigation__side--next {
    border-left: 1px solid rgba(126, 91, 51, 0.13);
  }
}

@media (max-width: 575.98px) {
  .en10-shell {
    width: min(100% - 1rem, 540px);
  }

  .en10-hero,
  .en10-module-hero {
    padding-top: 6.4rem;
  }

  .en10-hero__copy h1,
  .en10-module-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
  }

  .en10-hero__highlights,
  .en10-feature-grid,
  .en10-results__grid,
  .en10-gallery__grid,
  .en10-process__steps {
    grid-template-columns: 1fr;
  }

  .en10-actions,
  .en10-button {
    width: 100%;
  }

  .en10-intro,
  .en10-modules,
  .en10-gallery,
  .en10-process,
  .en10-results {
    padding: 3rem 0;
  }

  .en10-intro__panel,
  .en10-workflow__panel,
  .en10-final__panel,
  .en10-module-study__panel {
    padding: 1.5rem;
  }

  .en10-intro h2,
  .en10-section-heading h2,
  .en10-module-study h2,
  .en10-toolkit h2,
  .en10-final h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .en10-module {
    border-radius: 1.35rem;
  }

  .en10-module__content {
    padding: 1.5rem;
  }

  .en10-module__heading {
    gap: 0.75rem;
  }

  .en10-module__number {
    width: 3rem;
    height: 3rem;
  }

  .en10-gallery figure:last-child {
    grid-column: auto;
  }

  .en10-gallery img {
    height: auto;
    max-height: 23rem;
  }

  .en10-process__steps {
    gap: 1.2rem;
  }

  .en10-process__steps li {
    padding: 1rem;
    border: 1px solid rgba(126, 91, 51, 0.14);
    border-radius: 1rem;
    background: var(--en10-paper);
    grid-template-columns: 3rem 1fr;
  }

  .en10-process__steps li::after {
    display: none;
  }

  .en10-process__steps li > span {
    width: 3rem;
    height: 3rem;
  }

  .en10-module-navigation__side {
    padding: 0.7rem;
  }

  .en10-module-navigation__side strong {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:has(.en10-page),
  body:has(.en10-page) {
    scroll-behavior: auto !important;
  }

  .en10-page *,
  .en10-page *::before,
  .en10-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
