:root {
  --canvas: #f4f8f6;
  --paper: #ffffff;
  --paper-soft: #edf7f3;
  --ink: #0f172a;
  --ink-strong: #07111f;
  --muted: #526174;
  --line: #cfe0da;
  --line-strong: #a7c7be;
  --primary: #0d7c73;
  --primary-strong: #0b4f49;
  --primary-soft: #d7f6ee;
  --navy: #17213b;
  --accent: #b86b32;
  --accent-soft: #fff0df;
  --shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--canvas);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: inherit;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header--plain {
  position: static;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink-strong);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary-strong);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 112px 34px 52px;
  background:
    linear-gradient(112deg, rgba(244, 248, 246, 0.96) 0%, rgba(244, 248, 246, 0.86) 40%, rgba(215, 246, 238, 0.52) 67%, rgba(255, 240, 223, 0.72) 100%),
    url("assets/screens/cartera.png") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, var(--canvas), rgba(244, 248, 246, 0));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 5;
  width: min(100%, 1480px);
  margin: 0 auto;
  padding-block: 36px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink-strong);
  font-size: 92px;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero__lead {
  width: min(100%, 610px);
  margin: 24px 0 0;
  color: #28374d;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.32;
  letter-spacing: 0;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(13, 124, 115, 0.26);
  outline-offset: 3px;
}

.button--primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(13, 124, 115, 0.26);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--primary-strong);
}

.button--ghost {
  border-color: rgba(13, 124, 115, 0.28);
  background: rgba(255, 255, 255, 0.76);
  color: var(--primary-strong);
}

.button--small {
  min-height: 40px;
  padding: 10px 13px;
  font-size: 14px;
}

.hero__media {
  position: absolute;
  z-index: 2;
  inset: 0 max(-4vw, -60px) 0 auto;
  width: min(62vw, 900px);
  pointer-events: none;
}

.phone {
  position: absolute;
  width: 245px;
  aspect-ratio: 390 / 844;
  margin: 0;
  overflow: hidden;
  border: 6px solid #ffffff;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.phone::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 9px;
  width: 34%;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  transform: translateX(-50%);
}

.phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.phone--inicio {
  top: 16%;
  right: 42%;
  transform: rotate(-8deg);
}

.phone--cartera {
  top: 8%;
  right: 20%;
  z-index: 2;
  width: 280px;
  transform: rotate(3deg);
}

.phone--ventas {
  top: 24%;
  right: 2%;
  transform: rotate(9deg);
}

.section {
  padding: 64px 34px;
}

.section__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section__intro {
  max-width: 680px;
}

.section h2,
.access-hero h1,
.legal-document h1 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: 0;
}

.proof-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-item,
.access-card,
.legal-document {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.proof-item {
  min-height: 210px;
  padding: 22px;
}

.proof-item__mark,
.access-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 5px 8px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.proof-item h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.proof-item p,
.access-band p,
.access-hero p,
.access-card span,
.legal-document p,
.access-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

.section--access {
  padding-top: 28px;
}

.access-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.site-footer {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 32px 34px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer a {
  text-decoration: none;
}

.access-page,
.legal-page {
  background:
    linear-gradient(150deg, rgba(244, 248, 246, 0.96), rgba(237, 247, 243, 0.92) 52%, rgba(255, 240, 223, 0.66)),
    var(--canvas);
}

.access-shell,
.legal-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 42px 34px 64px;
}

.access-hero {
  max-width: 760px;
  padding-top: 42px;
}

.access-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.access-grid--single {
  max-width: 600px;
  grid-template-columns: 1fr;
}

.access-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.access-card:hover,
.access-card:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.access-card:focus-visible {
  outline: 3px solid rgba(13, 124, 115, 0.22);
  outline-offset: 3px;
}

.access-card--primary {
  border-color: rgba(13, 124, 115, 0.34);
  background: linear-gradient(145deg, #ffffff, #effbf8);
}

.access-card strong {
  color: var(--ink-strong);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0;
}

.access-note {
  max-width: 840px;
  margin-top: 20px;
}

.legal-shell {
  display: grid;
  gap: 28px;
}

.legal-document {
  padding: 28px;
}

.legal-document {
  max-width: 820px;
}

.legal-document a {
  color: var(--primary-strong);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .hero__media {
    width: 58vw;
    opacity: 0.64;
  }

  .phone {
    width: 210px;
  }

  .phone--cartera {
    width: 238px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    padding: 20px;
  }

  .hero {
    min-height: auto;
    padding: 28px 20px 24px;
    align-items: start;
  }

  .hero__content {
    padding-block: 18px 124px;
  }

  .hero h1 {
    font-size: 66px;
  }

  .hero__lead {
    font-size: 20px;
  }

  .hero__media {
    inset: auto -60px 0 auto;
    width: 470px;
    height: 238px;
    opacity: 0.78;
  }

  .phone {
    width: 126px;
    border-width: 4px;
    border-radius: 22px;
  }

  .phone--inicio {
    top: 30px;
    right: 226px;
  }

  .phone--cartera {
    top: 8px;
    right: 124px;
    width: 146px;
  }

  .phone--ventas {
    top: 42px;
    right: 34px;
  }

  .section,
  .access-shell,
  .legal-shell {
    padding-inline: 20px;
  }

  .section--proof {
    padding-top: 22px;
  }

  .proof-grid,
  .access-grid,
  .access-band {
    grid-template-columns: 1fr;
  }

  .access-band {
    justify-items: start;
  }

  .site-footer {
    padding-inline: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-header--plain {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .section h2,
  .access-hero h1,
  .legal-document h1 {
    font-size: 31px;
  }

  .access-card strong {
    font-size: 22px;
  }
}

/* -------------------------------------------------------------------------
   Public landing v2
   The downloaded mec-landing.html supplied the visual direction. These
   classes keep the shared legal/access pages backwards-compatible while the
   public homepage uses its own responsive, content-first layout.
   ------------------------------------------------------------------------- */
body.landing-v2 {
  --mec-ink: #10231f;
  --mec-ink-soft: #3d5a54;
  --mec-muted: #6f8982;
  --mec-accent: #12a17c;
  --mec-accent-deep: #0a6b52;
  --mec-mint: #d8f1e7;
  --mec-mint-soft: #eefaf5;
  --mec-wash: #f5fbf8;
  --mec-line: #dfede7;
  --mec-white: #ffffff;
  --mec-shadow: 0 14px 40px rgba(16, 35, 31, 0.07);
  --mec-shadow-lg: 0 26px 70px rgba(16, 35, 31, 0.11);
  min-width: 320px;
  background: var(--mec-white);
  color: var(--mec-ink);
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
}

body.landing-v2 a {
  color: inherit;
}

.landing-v2 .skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--mec-ink);
  color: var(--mec-white);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.mec-wrap {
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
}

.mec-narrow {
  max-width: 760px;
}

.mec-site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(223, 237, 231, 0.92);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

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

.mec-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mec-ink) !important;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.mec-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.mec-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.mec-nav-links a:not(.mec-button) {
  color: var(--mec-ink-soft);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.mec-nav-links a:not(.mec-button):hover,
.mec-nav-links a:not(.mec-button):focus-visible {
  color: var(--mec-accent-deep);
}

.mec-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 13px 20px;
  color: var(--mec-ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.mec-button:hover,
.mec-button:focus-visible {
  transform: translateY(-1px);
}

.mec-button:focus-visible,
.mec-nav-links a:focus-visible,
.mec-footer a:focus-visible {
  outline: 3px solid rgba(18, 161, 124, 0.3);
  outline-offset: 3px;
}

.mec-button--small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 13px;
}

.mec-button--primary {
  background: var(--mec-accent);
  color: var(--mec-white) !important;
  box-shadow: 0 9px 22px rgba(18, 161, 124, 0.22);
}

.mec-button--primary:hover,
.mec-button--primary:focus-visible {
  background: var(--mec-accent-deep);
}

.mec-button--ghost {
  border-color: var(--mec-line);
  background: var(--mec-white);
  color: var(--mec-ink) !important;
  box-shadow: var(--mec-shadow);
}

.mec-button--ghost:hover,
.mec-button--ghost:focus-visible {
  border-color: var(--mec-accent);
  color: var(--mec-accent-deep) !important;
}

.mec-button--dark {
  background: var(--mec-ink);
  color: var(--mec-white) !important;
}

.mec-button--dark:hover,
.mec-button--dark:focus-visible {
  background: var(--mec-accent-deep);
}

.mec-hero {
  overflow: hidden;
  padding: 76px 0 86px;
  background:
    radial-gradient(720px 430px at 86% 0%, var(--mec-mint-soft) 0%, rgba(238, 250, 245, 0) 68%),
    linear-gradient(180deg, var(--mec-wash) 0%, var(--mec-white) 82%);
}

.mec-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: 44px;
}

.mec-hero-copy {
  position: relative;
  z-index: 2;
}

.mec-eyebrow {
  margin: 0 0 15px;
  color: var(--mec-accent-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mec-acronym {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 16px;
  color: var(--mec-ink);
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.05;
}

.mec-acronym-rotator {
  display: inline-block;
  position: relative;
  min-inline-size: 5ch;
  color: var(--mec-ink);
  font-weight: 700;
}

.mec-acronym-word {
  display: inline-block;
  animation: mec-acronym-swap 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes mec-acronym-swap {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mec-acronym strong {
  color: var(--mec-accent);
  font-weight: 800;
}

.mec-acronym-note {
  margin: 16px 0 0;
  color: var(--mec-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mec-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;
}

.mec-kicker {
  margin: 23px 0 0;
  color: var(--mec-accent-deep);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.mec-hero h1 {
  max-width: 620px;
  margin: 15px 0 0;
  color: var(--mec-ink);
  font-size: clamp(38px, 5vw, 67px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.01;
  text-wrap: balance;
}

.mec-lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--mec-ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

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

.mec-hero .mec-actions {
  margin-top: 30px;
}

.mec-note {
  max-width: 52ch;
  margin: 18px 0 0;
  color: var(--mec-muted);
  font-size: 13px;
}

.mec-hero-visual {
  position: relative;
  min-height: 510px;
}

.mec-device {
  position: absolute;
  width: min(42%, 238px);
  margin: 0;
  overflow: hidden;
  border: 6px solid var(--mec-white);
  border-radius: 30px;
  background: var(--mec-white);
  box-shadow: var(--mec-shadow-lg);
}

.mec-device::after {
  content: "";
  position: absolute;
  right: 25%;
  bottom: 8px;
  left: 25%;
  height: 4px;
  border-radius: 999px;
  background: rgba(16, 35, 31, 0.82);
}

.mec-device img {
  display: block;
  width: 100%;
  height: auto;
}

.mec-device--back {
  top: 20%;
  left: 5%;
  transform: rotate(-9deg) scale(0.82);
}

.mec-device--main {
  top: 4%;
  left: 29%;
  z-index: 2;
  width: min(47%, 280px);
  transform: rotate(3deg);
}

.mec-device--front {
  top: 17%;
  right: 1%;
  transform: rotate(9deg) scale(0.82);
}

.mec-section {
  padding: 92px 0;
}

.mec-section--center {
  text-align: center;
}

.mec-section--soft {
  border-top: 1px solid var(--mec-line);
  border-bottom: 1px solid var(--mec-line);
  background: var(--mec-wash);
}

.mec-section h2,
.mec-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--mec-ink);
  font-size: clamp(31px, 4vw, 52px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

.mec-section--center h2 {
  margin-inline: auto;
}

.mec-section-lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--mec-ink-soft);
  font-size: 17px;
}

.mec-section--center .mec-section-lead {
  margin-inline: auto;
}

.mec-connected-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 64px;
}

.mec-check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mec-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--mec-line);
  color: var(--mec-ink-soft);
  font-size: 16px;
}

.mec-check-list li:first-child {
  padding-top: 0;
}

.mec-check-list li:last-child {
  border-bottom: 0;
}

.mec-check-list li > span:first-child {
  display: grid;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--mec-mint);
  color: var(--mec-accent-deep);
  font-weight: 900;
}

.mec-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.mec-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.mec-capability-card {
  min-height: 200px;
  padding: 23px;
  border: 1px solid var(--mec-line);
  border-radius: 16px;
  background: var(--mec-white);
  box-shadow: var(--mec-shadow);
}

.mec-card-index {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--mec-mint-soft);
  color: var(--mec-accent-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.mec-capability-card h3,
.mec-surface-card h3 {
  margin: 0;
  color: var(--mec-ink);
  font-size: 20px;
  font-weight: 740;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.mec-capability-card p {
  margin: 10px 0 0;
  color: var(--mec-muted);
  font-size: 14px;
  line-height: 1.5;
}

.mec-surface-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mec-surface-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--mec-line);
  border-radius: 20px;
  background: var(--mec-white);
  box-shadow: var(--mec-shadow);
}

.mec-surface-card--dark {
  border-color: var(--mec-ink);
  background: var(--mec-ink);
}

.mec-surface-label {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--mec-accent-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mec-surface-card--dark .mec-surface-label {
  color: #7fe3c2;
}

.mec-surface-card--dark h3 {
  color: var(--mec-white);
}

.mec-surface-card ul {
  display: grid;
  gap: 12px;
  margin: 25px 0 0;
  padding-left: 20px;
  color: var(--mec-ink-soft);
  font-size: 15px;
}

.mec-surface-card--dark ul {
  color: rgba(255, 255, 255, 0.72);
}

.mec-offline {
  overflow: hidden;
  color: var(--mec-white);
  background: linear-gradient(145deg, #0d2a24, #123f34 58%, #0f5341);
}

.mec-offline .mec-eyebrow {
  color: #7fe3c2;
}

.mec-offline h2 {
  color: var(--mec-white);
}

.mec-offline-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: 70px;
}

.mec-offline-lead,
.mec-offline-limit {
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.mec-offline-limit {
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
}

.mec-sync-card {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.mec-sync-header,
.mec-sync-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mec-sync-header {
  justify-content: space-between;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mec-sync-header strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffc9c9;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.mec-sync-header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff8b8b;
}

.mec-sync-row {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.mec-sync-row strong {
  margin-left: auto;
  color: #7fe3c2;
  font-size: 11px;
  white-space: nowrap;
}

.mec-sync-icon {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(127, 227, 194, 0.15);
  color: #7fe3c2;
  font-weight: 900;
}

.mec-sync-icon--pending {
  background: rgba(255, 219, 138, 0.16);
  color: #ffdb8a;
}

.mec-sync-icon--review {
  background: rgba(255, 139, 139, 0.16);
  color: #ffb1b1;
}

.mec-sync-foot {
  margin: 15px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.mec-faq-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 60px;
}

.mec-faq-list {
  display: grid;
  gap: 10px;
}

.mec-faq-list details {
  margin: 0;
  border: 1px solid var(--mec-line);
  border-radius: 14px;
  background: var(--mec-white);
  box-shadow: var(--mec-shadow);
}

.mec-faq-list details[open] {
  border-color: #b9dfd1;
}

.mec-faq-list summary {
  padding: 18px 20px;
  color: var(--mec-ink);
  font-size: 16px;
  font-weight: 700;
}

.mec-faq-list summary span {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--mec-mint-soft);
  color: var(--mec-accent-deep);
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  transition: transform 160ms ease;
}

.mec-faq-list details[open] summary span {
  transform: rotate(45deg);
  background: var(--mec-mint);
}

.mec-faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--mec-ink-soft);
  font-size: 14px;
}

.mec-cta {
  padding: 78px 0;
  border-top: 1px solid var(--mec-line);
  background:
    radial-gradient(550px 260px at 52% 100%, var(--mec-mint-soft), transparent 72%),
    var(--mec-wash);
}

.mec-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.mec-cta p:not(.mec-eyebrow) {
  max-width: 580px;
  margin: 16px 0 0;
  color: var(--mec-ink-soft);
  font-size: 16px;
}

.mec-footer {
  border-top: 1px solid var(--mec-line);
  background: var(--mec-white);
}

.mec-footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mec-footer nav {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  color: var(--mec-muted);
  font-size: 13px;
}

.mec-footer nav a {
  text-decoration: none;
}

.mec-footer nav a:hover {
  color: var(--mec-accent-deep);
}

.mec-footer small {
  color: var(--mec-muted);
  font-size: 12px;
}

@media (max-width: 1020px) {
  .mec-nav-links {
    gap: 13px;
  }

  .mec-nav-links a:not(.mec-button) {
    display: none;
  }

  .mec-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(370px, 1.1fr);
    gap: 22px;
  }

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

@media (max-width: 820px) {
  .mec-wrap {
    width: min(100% - 40px, 680px);
  }

  .mec-nav {
    min-height: 66px;
  }

  .mec-hero {
    padding: 58px 0 62px;
  }

  .mec-hero-grid,
  .mec-connected-grid,
  .mec-offline-grid,
  .mec-faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .mec-hero-visual {
    min-height: 390px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .mec-device {
    width: min(32%, 190px);
  }

  .mec-device--main {
    width: min(38%, 225px);
  }

  .mec-device--back {
    left: 10%;
  }

  .mec-device--main {
    left: 31%;
  }

  .mec-device--front {
    right: 8%;
  }

  .mec-section {
    padding: 70px 0;
  }

  .mec-surface-grid {
    grid-template-columns: 1fr;
  }

  .mec-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .mec-wrap {
    width: min(100% - 32px, 480px);
  }

  .mec-brand {
    font-size: 18px;
  }

  .mec-brand img {
    width: 36px;
    height: 36px;
  }

  .mec-button {
    width: 100%;
  }

  .mec-nav-links .mec-button {
    width: auto;
  }

  .mec-acronym {
    font-size: 29px;
  }

  .mec-hero h1 {
    font-size: 39px;
  }

  .mec-lead {
    font-size: 16px;
  }

  .mec-hero-visual {
    min-height: 320px;
  }

  .mec-device {
    width: 31%;
    border-width: 4px;
    border-radius: 21px;
  }

  .mec-device--back {
    left: 3%;
  }

  .mec-device--main {
    left: 29%;
    width: 38%;
  }

  .mec-device--front {
    right: 1%;
  }

  .mec-capability-grid {
    grid-template-columns: 1fr;
  }

  .mec-capability-card,
  .mec-surface-card {
    min-height: auto;
    padding: 22px;
  }

  .mec-sync-card {
    padding: 19px;
  }

  .mec-sync-row {
    align-items: flex-start;
    font-size: 13px;
  }

  .mec-sync-row strong {
    white-space: normal;
    text-align: right;
  }

  .mec-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-v2 *,
  .landing-v2 *::before,
  .landing-v2 *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Public contact form */
.contact-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(220, 164, 88, 0.14), transparent 30rem),
    #f5f0e8;
}

.contact-document {
  max-width: 860px;
}

.contact-document > p:not(.eyebrow) {
  max-width: 720px;
}

.contact-form {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 9px 18px;
  align-items: center;
}

.contact-form label,
.contact-form legend {
  color: #1c2c29;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input[type='text'],
.contact-form input[type='email'],
.contact-form input[type='tel'],
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(28, 44, 41, 0.22);
  border-radius: 12px;
  background: #fffdfa;
  color: #17221f;
  font: inherit;
  padding: 12px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.contact-submit:focus-visible,
.contact-cancel:focus-visible {
  outline: 3px solid rgba(217, 143, 62, 0.35);
  outline-offset: 2px;
  border-color: #bf6f2e;
}

.contact-form [aria-invalid='true'] {
  border-color: #b74332;
}

.contact-field-error {
  color: #a33428;
  display: block;
  font-size: 0.8rem;
  grid-column: 2;
  min-height: 1.1em;
}

.contact-form fieldset {
  border: 1px solid rgba(28, 44, 41, 0.16);
  border-radius: 16px;
  margin: 0;
  padding: 18px;
}

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

.contact-check-grid label,
.contact-consent {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.contact-check-grid input,
.contact-consent input {
  accent-color: #b7652e;
  flex: 0 0 auto;
  margin-top: 3px;
}

.contact-form fieldset .contact-field-error {
  grid-column: auto;
  margin-top: 10px;
}

.contact-consent {
  color: #44514d;
}

.contact-consent a,
.contact-back-link,
.contact-cancel {
  color: #9c5129;
  text-underline-offset: 3px;
}

.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-submit {
  border: 0;
  border-radius: 999px;
  background: #c36f30;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 13px 22px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-form-note,
.contact-noscript {
  color: #65706c;
  font-size: 0.86rem;
  line-height: 1.5;
}

.contact-errors,
.contact-success,
.contact-noscript {
  border-radius: 14px;
  margin-top: 22px;
  padding: 16px 18px;
}

.contact-errors {
  background: #fff0ed;
  border: 1px solid #e3a59b;
  color: #8e2c22;
}

.contact-success {
  background: #e9f3e9;
  border: 1px solid #9fc7a1;
  color: #1f4c2a;
}

.contact-success h2 {
  margin-top: 0;
}

.contact-reference {
  margin-block: 18px;
}

.contact-reference code {
  background: rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  color: #173d24;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 8px 12px;
}

.contact-noscript {
  background: #fff8e7;
  border: 1px solid #e3c88b;
  display: grid;
  gap: 6px;
}

.contact-honeypot {
  height: 1px;
  left: -9999px;
  opacity: 0;
  position: absolute;
  top: -9999px;
  width: 1px;
}

@media (max-width: 680px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-field-error {
    grid-column: auto;
  }

  .contact-check-grid {
    grid-template-columns: 1fr;
  }
}
