:root {
  --bg: #0d0e0f;
  --surface: #151719;
  --surface-2: #1d2023;
  --paper: #f7f4ef;
  --paper-2: #ede7de;
  --text: #f3efe7;
  --text-dark: #18191a;
  --muted: #b9b1a7;
  --muted-dark: #5f635f;
  --line: rgba(255, 255, 255, .12);
  --line-dark: rgba(0, 0, 0, .12);
  --copper: #ad735b;
  --green: #6f8b76;
  --blue: #607f9b;
  --gold: #c2a15c;
  --container: 1180px;
  --radius: 8px;
}

/* Catalog cleanup: automation, audio and video products */
.site-body--product,
.catalog-page {
  background:
    linear-gradient(180deg,
      #dce9e6 0%,
      var(--mi-light-blue) 24rem,
      var(--mi-light-1) 48rem,
      #fff 72%,
      var(--mi-light-2) 100%);
}

.catalog-hero,
.catalog-product-hero {
  position: relative;
  overflow: hidden;
  padding: 142px 0 86px;
}

.catalog-hero__background {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  opacity: .12;
  filter: saturate(.85) contrast(.95);
}

.catalog-hero::after,
.catalog-product-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(244, 247, 246, .92) 100%);
}

.catalog-hero__grid,
.catalog-product-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
}

.catalog-hero h1,
.catalog-product-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--mi-ink);
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: .96;
  letter-spacing: 0;
  text-wrap: balance;
}

.catalog-hero .lede,
.catalog-product-hero .lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--mi-copy);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.62;
}

.catalog-hero__media,
.catalog-product-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 8px;
  background: rgba(255, 255, 255, .48);
  box-shadow: var(--mi-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.catalog-hero__media img,
.catalog-product-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: clamp(18px, 2.5vw, 34px);
  background: rgba(255, 255, 255, .74);
}

.catalog-hero__media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(12, 31, 27, .88);
  color: #fff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.catalog-hero__media figcaption span,
.catalog-product-card span,
.catalog-category-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(217, 198, 173, .96);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.catalog-hero__media figcaption strong {
  display: block;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.14;
  letter-spacing: 0;
}

.catalog-category-grid,
.catalog-grid {
  display: grid;
  gap: 18px;
}

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

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

.catalog-category-card,
.catalog-product-card,
.catalog-product-aside,
.catalog-product-body .product-detail__body {
  border: 1px solid rgba(24, 34, 31, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 20px 50px rgba(38, 67, 60, .1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.catalog-category-card,
.catalog-product-card {
  display: flex;
  min-width: 0;
  color: var(--mi-ink);
  text-decoration: none;
}

.catalog-category-card {
  min-height: 144px;
  padding: 22px;
  flex-direction: column;
  justify-content: space-between;
}

.catalog-category-card strong {
  display: block;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: 0;
}

.catalog-category-card small,
.catalog-product-card small {
  color: var(--mi-copy);
  font-size: 14px;
  line-height: 1.55;
}

.catalog-product-card {
  overflow: hidden;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.catalog-category-card:hover,
.catalog-product-card:hover,
.catalog-category-card:focus-visible,
.catalog-product-card:focus-visible {
  border-color: rgba(169, 88, 64, .28);
  box-shadow: 0 24px 64px rgba(38, 67, 60, .16);
  transform: translateY(-2px);
  outline: none;
}

.catalog-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  background: rgba(255, 255, 255, .8);
}

.catalog-product-card span,
.catalog-product-card strong,
.catalog-product-card small {
  margin-left: 18px;
  margin-right: 18px;
}

.catalog-product-card span {
  margin-top: 18px;
  color: var(--mi-terra);
}

.catalog-product-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--mi-ink);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.catalog-product-card small {
  display: block;
  margin-bottom: 20px;
}

.catalog-page:not(.catalog-page--product) .catalog-products {
  padding-top: clamp(44px, 6vw, 72px);
}

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

.catalog-grid--featured .catalog-product-card small {
  display: none;
}

.catalog-product-body {
  padding: 24px 0 clamp(88px, 10vw, 140px);
}

.catalog-product-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 28px;
  align-items: start;
}

.catalog-product-body .product-detail__body {
  padding: clamp(26px, 4vw, 48px);
}

.catalog-product-aside {
  position: sticky;
  top: 120px;
  padding: 28px;
}

.catalog-product-aside h2 {
  margin: 0 0 14px;
  color: var(--mi-ink);
  font-size: 28px;
  letter-spacing: 0;
}

.catalog-product-aside p {
  color: var(--mi-copy);
  line-height: 1.62;
}

.catalog-product-body .product-detail__body .button {
  display: none;
}

@media (max-width: 1180px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .catalog-hero__grid,
  .catalog-product-hero__grid,
  .catalog-product-body__grid {
    grid-template-columns: 1fr;
  }

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

  .catalog-product-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .catalog-hero,
  .catalog-product-hero {
    padding: 112px 0 62px;
  }

  .catalog-hero__grid,
  .catalog-product-hero__grid,
  .catalog-category-grid,
  .catalog-grid,
  .catalog-product-body__grid {
    width: calc(100% - 28px);
  }

  .catalog-hero h1,
  .catalog-product-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .catalog-category-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-page:not(.catalog-page--product) .catalog-category-grid,
  .catalog-page:not(.catalog-page--product) .catalog-grid--featured {
    width: 100%;
    grid-auto-flow: column;
    grid-auto-columns: minmax(264px, 82vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding-left: max(14px, calc((100vw - var(--container)) / 2));
    padding-right: 14px;
    padding-bottom: 14px;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .catalog-page:not(.catalog-page--product) .catalog-category-card,
  .catalog-page:not(.catalog-page--product) .catalog-grid--featured .catalog-product-card {
    scroll-snap-align: start;
  }

  .catalog-page:not(.catalog-page--product) .catalog-category-card {
    min-height: 138px;
  }

  .catalog-hero__media figcaption {
    position: static;
    border-radius: 0;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p { margin: 0 0 1rem; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 10px clamp(14px, 3vw, 32px);
  background: rgba(13, 14, 15, .95);
  color: var(--text);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.08);
}

.site-header__inner {
  position: relative;
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, .58fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  min-height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand__logos {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  min-width: 0;
}

.brand__logo {
  width: clamp(150px, 15vw, 196px);
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
}

.brand__apple {
  width: clamp(118px, 11vw, 164px);
  max-height: 40px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 20px);
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(243, 239, 231, .86);
  font-size: .9rem;
  font-weight: 650;
  white-space: nowrap;
}

.site-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: #fff;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 17px;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1;
  border: 1px solid transparent;
}

.header-action {
  background: var(--green);
  color: #fff;
  white-space: nowrap;
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 760;
  list-style: none;
  cursor: pointer;
  background: rgba(255, 255, 255, .08);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu__icon {
  display: grid;
  gap: 4px;
}

.mobile-menu__icon span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(16, 17, 18, .98);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}

.mobile-menu__panel a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
}

.mobile-menu__panel a:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.mobile-menu__action {
  margin-top: 6px;
  justify-content: center;
  background: var(--green);
  color: #fff !important;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button-row--end { justify-content: flex-end; }

.button--primary {
  background: var(--copper);
  color: #fff !important;
}

.button--secondary {
  background: var(--surface-2);
  color: #fff !important;
}

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

.home-hero {
  position: relative;
  min-height: clamp(620px, 82vh, 760px);
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.home-hero__image,
.home-hero__overlay {
  position: absolute;
  inset: 0;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 8, 9, .92) 0%, rgba(7, 8, 9, .62) 48%, rgba(7, 8, 9, .16) 100%),
    linear-gradient(0deg, rgba(7, 8, 9, .72), rgba(7, 8, 9, .04) 48%, rgba(7, 8, 9, .68));
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding: 90px 0 56px;
}

.home-hero h1 {
  max-width: 790px;
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: .98;
  font-weight: 830;
  color: #fff;
}

.home-hero__lede {
  max-width: 720px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  margin-bottom: 28px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 820;
}

.trust-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-strip span {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .22);
  color: rgba(255, 255, 255, .88);
  font-size: .9rem;
}

.section {
  padding: clamp(54px, 8vw, 96px) 0;
}

.section--tight { padding-top: clamp(44px, 6vw, 72px); }
.section--muted { background: var(--paper-2); }

.section-heading,
.split-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.split-heading h2,
.feature-grid h2,
.cta-grid h2 {
  max-width: 790px;
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.section-heading h2,
.split-heading h2,
.page-hero__copy h1,
.visual-card strong,
.content-card strong,
.product-card strong,
.podcast-card h3 {
  color: var(--text-dark);
}

.feature-grid h2,
.cta-grid h2 {
  color: var(--text);
}

.section-heading p,
.split-heading p,
.feature-grid p,
.cta-grid p {
  max-width: 760px;
  color: var(--muted-dark);
}

.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.text-link {
  color: var(--copper);
  font-weight: 780;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.visual-card,
.content-card,
.product-card,
.podcast-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 18px 44px rgba(24, 25, 26, .08);
}

.visual-card {
  min-height: 360px;
  display: grid;
  grid-template-rows: 190px 1fr;
}

.visual-card img,
.content-card img,
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--surface);
}

.visual-card__body,
.content-card,
.product-card {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.visual-card__body {
  padding: 18px;
}

.visual-card strong,
.content-card strong,
.product-card strong,
.podcast-card h3 {
  font-size: 1.04rem;
  line-height: 1.25;
}

.visual-card span,
.content-card span,
.product-card span,
.podcast-card p {
  color: var(--muted-dark);
}

.feature-band,
.cta-band {
  background: var(--bg);
  color: var(--text);
}

.feature-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 8vw, 94px) 0;
}

.feature-grid p,
.cta-grid p {
  color: var(--muted);
}

.feature-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.content-card {
  padding-bottom: 18px;
}

.content-card img {
  aspect-ratio: 16 / 10;
}

.content-card > :not(img) {
  margin-left: 18px;
  margin-right: 18px;
}

.content-card__meta {
  color: var(--blue);
  font-size: .82rem;
  font-weight: 760;
}

.podcast-list {
  display: grid;
  gap: 14px;
}

.podcast-card {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.podcast-card h3 {
  margin: 5px 0 8px;
}

audio {
  width: 100%;
}

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

.product-card {
  padding-bottom: 16px;
  min-height: 280px;
}

.product-card img {
  aspect-ratio: 1;
  object-fit: contain;
  padding: 18px;
  background: #f3f0ea;
}

.product-card strong,
.product-card span {
  margin-left: 16px;
  margin-right: 16px;
}

.page-hero {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 8vw, 88px) 0 30px;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.page-hero--text-only {
  grid-template-columns: minmax(0, 900px);
  align-items: start;
  padding-top: clamp(58px, 9vw, 118px);
  padding-bottom: clamp(42px, 6vw, 76px);
}

.page-hero--text-only .page-hero__copy {
  max-width: 900px;
}

.page-hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-hero__media--contain {
  padding: clamp(20px, 5vw, 44px);
  background: #101112;
}

.page-hero__media--contain img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.page-hero__copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.05;
}

.lede {
  color: var(--muted-dark);
  font-size: 1.08rem;
}

.wp-content,
.product-detail,
.podcast-player {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 clamp(58px, 8vw, 92px);
}

.wp-content {
  font-size: 1.03rem;
}

.wp-content :is(p, ul, ol, blockquote, table, figure) {
  max-width: 820px;
}

.wp-content :is(h2, h3, h4) {
  max-width: 860px;
  margin: 2.1rem 0 1rem;
  line-height: 1.18;
}

.wp-content p {
  color: #2f3433;
}

.wp-content a {
  color: #805240;
  font-weight: 720;
}

.wp-content img {
  border-radius: var(--radius);
  margin: 12px 0;
}

.wp-content figure {
  margin: 22px 0;
}

.wp-content ul,
.wp-content ol {
  padding-left: 1.35rem;
}

.wp-content li + li {
  margin-top: .4rem;
}

.wp-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
}

.wp-content th,
.wp-content td {
  padding: 12px;
  border: 1px solid var(--line-dark);
}

.archive-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  max-width: none !important;
  padding: 0 !important;
  list-style: none !important;
}

.archive-list a {
  display: block;
  min-height: 96px;
  padding: 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 12px 28px rgba(24, 25, 26, .06);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  width: min(var(--container), calc(100% - 40px));
}

.product-detail__image {
  margin: 0;
  position: sticky;
  top: 100px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 24px;
}

.product-detail__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.product-detail__body {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 36px);
}

.product-detail__body img {
  max-height: 520px;
  object-fit: contain;
}

.podcast-player {
  padding-bottom: 20px;
}

.podcast-player audio {
  padding: 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(160px, .55fr));
  gap: 28px;
  padding: 44px clamp(18px, 4vw, 48px) 24px;
  background: #080909;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 10px;
}

.site-footer a,
.site-footer span,
.site-footer p {
  display: block;
  color: var(--muted);
  margin: 0 0 8px;
}

.site-footer__brand img {
  width: min(390px, 100%);
  max-height: 74px;
  object-fit: contain;
  margin-bottom: 14px;
  object-position: left center;
}

.site-footer__logo-card {
  display: inline-flex;
  width: min(390px, 100%);
  margin-bottom: 14px;
}

.site-footer__bottom {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 62px;
  }

  .site-nav--desktop,
  .header-action--desktop {
    display: none;
  }

  .mobile-menu {
    display: block;
    justify-self: end;
  }

  .brand__logos {
    gap: 12px;
  }

  .brand__logo {
    width: clamp(130px, 31vw, 180px);
    max-height: 42px;
  }

  .brand__apple {
    width: clamp(90px, 23vw, 126px);
    max-height: 32px;
  }

  .card-grid--four,
  .card-grid--three,
  .product-grid,
  .feature-grid,
  .cta-grid,
  .page-hero,
  .product-detail,
  .podcast-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .button-row--end {
    justify-content: start;
  }

  .product-detail__image {
    position: static;
  }
}

@media (max-width: 640px) {
  .container,
  .page-hero,
  .wp-content,
  .product-detail,
  .podcast-player {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 9px 12px;
  }

  .brand__logos {
    gap: 10px;
  }

  .brand__logo {
    width: clamp(118px, 31vw, 136px);
    max-height: 34px;
  }

  .brand__apple {
    width: clamp(82px, 22vw, 96px);
    max-height: 24px;
  }

  .mobile-menu summary {
    min-height: 40px;
    padding: 0 11px;
    font-size: .9rem;
  }

  .site-nav a,
  .header-action,
  .mobile-menu__panel a {
    font-size: .86rem;
  }

  .home-hero {
    min-height: 640px;
  }

  .home-hero__overlay {
    background: linear-gradient(90deg, rgba(7, 8, 9, .92), rgba(7, 8, 9, .72));
  }

  .home-hero__content {
    padding-top: 58px;
  }

  .split-heading {
    display: block;
  }
}

/* Official Micro Import visual alignment */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0;
  background: #0d0d0d;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px) saturate(1.08);
}

.site-header__topline {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 0;
  color: rgba(255, 255, 255, .48);
  font-size: .96rem;
  text-align: center;
}

.site-header__brandbar {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12px 0 22px;
}

.brand--official {
  display: block;
  width: 100%;
}

.brand--official img {
  width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.site-nav-shell {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 60px;
  background: rgba(18, 18, 18, .96);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.site-nav__item {
  position: relative;
}

.site-nav__item > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 60px;
  padding: 0 20px;
  color: rgba(255, 255, 255, .92);
  font-size: .95rem;
  font-weight: 760;
  white-space: nowrap;
}

.site-nav__item > a:hover,
.site-nav__item:focus-within > a {
  color: #fff;
  background: rgba(255, 255, 255, .045);
}

.site-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  display: none;
  min-width: 260px;
  max-height: min(68vh, 620px);
  overflow: auto;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: rgba(12, 12, 12, .98);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
}

.site-nav__item:hover .site-submenu,
.site-nav__item:focus-within .site-submenu {
  display: grid;
}

.site-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  font-weight: 650;
  white-space: nowrap;
}

.site-submenu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.site-nav-shell .mobile-menu {
  display: none;
  align-self: center;
}

.mobile-menu__group {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu__group summary {
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: .94rem;
}

.mobile-menu__group summary::after {
  content: "+";
  color: rgba(255, 255, 255, .58);
}

.mobile-menu__group[open] summary::after {
  content: "-";
}

.mobile-menu__primary {
  color: #fff !important;
  background: rgba(255, 255, 255, .08);
}

.home-hero {
  min-height: clamp(540px, 72vh, 660px);
  background: #151515;
  color: #fff;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .9fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  min-height: inherit;
  padding: clamp(42px, 7vw, 76px) 0;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding: 0;
  text-align: center;
}

.home-hero h1 {
  max-width: 620px;
  margin: 0 auto 34px;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.28;
  font-weight: 760;
}

.home-hero .button--primary {
  min-width: min(275px, 100%);
  min-height: 58px;
  border-radius: 999px;
  background: #f10000;
  color: #fff !important;
  font-size: 1.22rem;
  box-shadow: 0 14px 40px rgba(241, 0, 0, .22);
}

.home-hero__person {
  align-self: end;
  justify-self: center;
  margin: 0;
}

.home-hero__person img {
  width: min(350px, 32vw);
  max-height: 473px;
  object-fit: contain;
}

.site-footer {
  display: block;
  padding: 0;
  background: #080909;
  color: var(--muted);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(180px, .75fr));
  gap: clamp(28px, 5vw, 72px);
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 72px) 0 38px;
}

.site-footer__brand {
  max-width: 390px;
}

.site-footer__brand img {
  width: min(340px, 100%);
  max-height: none;
  object-fit: contain;
  object-position: left center;
}

.site-footer__logo-card {
  display: block;
  width: min(340px, 100%);
  margin-bottom: 22px;
}

.site-footer nav,
.site-footer address {
  font-style: normal;
}

.site-footer strong {
  color: #fff;
  font-size: .98rem;
  margin-bottom: 14px;
}

.site-footer a,
.site-footer span,
.site-footer p {
  display: block;
  color: rgba(243, 239, 231, .68);
  margin: 0 0 9px;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__contact-button {
  display: inline-flex !important;
  justify-content: center;
  width: 100%;
  margin-top: 14px !important;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: #ad735b;
  color: #fff !important;
  font-weight: 780;
}

.site-footer__bottom {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(243, 239, 231, .52);
  font-size: .9rem;
}

@media (max-width: 1120px) {
  .site-nav__item > a {
    padding: 0 13px;
    font-size: .9rem;
  }
}

@media (max-width: 980px) {
  .site-header__topline {
    width: min(100% - 40px, 520px);
    padding-top: 22px;
    font-size: .92rem;
    line-height: 1.45;
  }

  .site-header__brandbar {
    padding: 24px 0 18px;
  }

  .brand--official img {
    width: min(350px, calc(100vw - 40px));
    margin: 0 auto;
  }

  .site-nav-shell {
    min-height: 60px;
  }

  .site-nav--desktop {
    display: none;
  }

  .site-nav-shell .mobile-menu {
    display: block;
  }

  .site-nav-shell .mobile-menu > summary {
    min-width: 48px;
    min-height: 48px;
    padding: 0 13px;
    font-size: 0;
    border: 0;
    background: transparent;
  }

  .site-nav-shell .mobile-menu > summary .mobile-menu__icon span {
    width: 18px;
  }

  .site-nav-shell .mobile-menu > summary span:last-child {
    display: none;
  }

  .mobile-menu__panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 220px);
    overflow: auto;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 22px 0 40px;
  }

  .home-hero__person {
    order: -1;
    align-self: center;
  }

  .home-hero__person img {
    width: min(240px, 72vw);
    max-height: 324px;
  }

  .home-hero h1 {
    max-width: 340px;
    font-size: clamp(1.65rem, 8vw, 2rem);
    line-height: 1.45;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header__topline {
    width: min(100% - 36px, 360px);
    font-size: .96rem;
  }

  .site-header__brandbar {
    width: min(100% - 40px, 350px);
  }

  .site-nav-shell .mobile-menu > summary {
    min-height: 46px;
  }

  .home-hero .button--primary {
    min-width: min(300px, 100%);
    min-height: 82px;
    font-size: 1.48rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 390px);
  }

  .site-footer__bottom {
    width: min(100% - 36px, 390px);
  }
}

/* Podcast premium */
.podcast-archive-hero,
.podcast-detail-hero {
  background: #0b0c0c;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.podcast-archive-hero__grid,
.podcast-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(54px, 8vw, 96px) 0;
}

.podcast-archive-hero h1,
.podcast-detail-hero h1 {
  margin: 0 0 18px;
  max-width: 780px;
  font-size: clamp(2.25rem, 5vw, 4.85rem);
  line-height: 1.02;
}

.podcast-archive-hero p,
.podcast-detail-hero p {
  max-width: 720px;
  color: #cfc8c0;
}

.podcast-archive-hero img,
.podcast-detail-hero figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.podcast-detail-hero figure {
  margin: 0;
}

.podcast-topic-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.podcast-topic-list a {
  display: grid;
  gap: 7px;
  min-height: 108px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 14px 34px rgba(24, 25, 26, .06);
}

.podcast-topic-list strong {
  color: #151616;
  line-height: 1.12;
}

.podcast-topic-list span {
  color: #805240;
  font-weight: 760;
}

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

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

.podcast-episode-card {
  display: grid;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
  overflow-wrap: break-word;
  box-shadow: 0 16px 38px rgba(24, 25, 26, .07);
}

.podcast-episode-card__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.podcast-episode-card__body {
  display: grid;
  min-width: 0;
  gap: 12px;
  padding: 18px;
}

.podcast-episode-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.18;
}

.podcast-episode-card h3 a {
  color: #151616;
}

.podcast-episode-card p {
  margin: 0;
  color: #4d5352;
}

.podcast-mini-player,
.podcast-controls {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  gap: 8px;
  align-items: center;
}

.podcast-mini-player audio {
  width: 100%;
  min-width: 0;
}

.podcast-mini-player button,
.podcast-controls button {
  min-width: 0;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: #151616;
  color: #fff;
  font: inherit;
  font-size: .88rem;
  font-weight: 760;
  cursor: pointer;
}

.podcast-mini-player button[data-podcast-share],
.podcast-controls button[data-podcast-share] {
  background: #fff;
  color: #805240;
}

.podcast-player--premium {
  display: grid;
  gap: 16px;
  margin-top: clamp(28px, 5vw, 58px);
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 18px 46px rgba(24, 25, 26, .08);
}

.podcast-player--premium h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.12;
}

.podcast-player--premium p {
  margin: 0;
  color: #4d5352;
}

.podcast-transcript {
  padding-top: clamp(28px, 4vw, 48px);
}

@media (max-width: 1180px) {
  .podcast-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .podcast-topic-list,
  .podcast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .podcast-archive-hero__grid,
  .podcast-detail-hero__grid {
    grid-template-columns: 1fr;
    padding: 38px 0;
  }

  .podcast-archive-hero__grid > img,
  .podcast-detail-hero figure {
    order: -1;
  }

  .podcast-archive-hero h1,
  .podcast-detail-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .podcast-topic-list,
  .podcast-grid,
  .podcast-grid--home {
    grid-template-columns: 1fr;
  }

  .podcast-mini-player button,
  .podcast-controls button {
    flex: 1 1 calc(50% - 8px);
    min-height: 48px;
  }
}

/* Micro Import alinhada ao sistema visual da M.I. Automacao */
.site-body {
  background: #0e0e0e;
  color: #f7f2ea;
}

html,
body {
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

.container {
  padding-inline: 0;
}

.content-page {
  background: #f7f4ef;
  color: #18191a;
}

.content-page--media .page-hero__copy .lede,
.content-page--archive .page-hero__copy .lede {
  max-width: 680px;
}

.page-hero {
  width: min(1180px, calc(100% - 48px));
  padding: clamp(36px, 6vw, 78px) 0 clamp(28px, 5vw, 54px);
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
}

.page-hero__media {
  position: relative;
  min-height: clamp(240px, 30vw, 390px);
  border-radius: 8px;
  background: #121212;
  border: 1px solid rgba(25, 25, 23, .10);
  box-shadow: 0 24px 70px rgba(24, 25, 26, .13);
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.page-hero__copy {
  min-width: 0;
}

.page-hero__copy h1 {
  max-width: 780px;
  color: #18191a;
  font-size: clamp(2.15rem, 4.6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero__copy .eyebrow {
  color: #8a5540;
}

.page-hero__copy .lede {
  max-width: 720px;
  color: #4d5352;
  font-size: clamp(1rem, 1.45vw, 1.17rem);
}

.wp-content,
.product-detail {
  color: #252928;
}

.wp-content {
  width: min(920px, calc(100% - 48px));
  padding-top: 8px;
}

.wp-content > * {
  min-width: 0;
}

.wp-content :is(h1, h2, h3, h4) {
  color: #18191a;
  letter-spacing: 0;
  text-wrap: balance;
}

.wp-content h1 {
  font-size: clamp(1.8rem, 3.1vw, 2.8rem);
}

.wp-content h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.wp-content h3 {
  font-size: clamp(1.18rem, 1.9vw, 1.55rem);
}

.wp-content p,
.wp-content li,
.product-detail__body p,
.product-detail__body li {
  color: #2f3433;
  font-size: clamp(1rem, 1.05vw, 1.06rem);
  line-height: 1.72;
}

.wp-content :is(p, ul, ol, blockquote, table, figure, div),
.product-detail__body :is(p, ul, ol, blockquote, table, figure, div) {
  max-width: 100%;
}

.wp-content img,
.product-detail__body img {
  width: auto;
  max-width: 100%;
  max-height: min(620px, 76vh);
  object-fit: contain;
}

.wp-content svg,
.product-detail__body svg {
  display: inline-block;
  width: 1.15em !important;
  max-width: 1.15em !important;
  height: 1.15em !important;
  max-height: 1.15em !important;
  vertical-align: -.18em;
  fill: currentColor;
}

.wp-content :is(.elementor-icon, .elementor-button-icon, .e-font-icon-svg),
.product-detail__body :is(.elementor-icon, .elementor-button-icon, .e-font-icon-svg) {
  display: inline-flex;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: center;
}

.wp-content [style*="font-size"],
.product-detail__body [style*="font-size"] {
  font-size: inherit !important;
}

.wp-content [style*="color"],
.product-detail__body [style*="color"] {
  color: inherit !important;
}

.wp-content iframe,
.wp-content video,
.product-detail__body iframe,
.product-detail__body video {
  max-width: 100%;
}

.mi-header-pill {
  width: min(1320px, calc(100% - 48px));
  grid-template-columns: minmax(210px, .72fr) minmax(0, 1.28fr) auto;
  gap: clamp(14px, 2vw, 26px);
}

.mi-brand--microimport {
  gap: 14px;
}

.mi-brand-logo--microimport {
  width: clamp(118px, 11vw, 145px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.mi-brand-caption {
  letter-spacing: .14em;
}

.mi-nav-link {
  letter-spacing: 0;
}

.mi-nav-dropdown {
  max-height: min(72vh, 620px);
  overflow: auto;
}

.mi-nav-dropdown-link {
  color: rgba(247, 242, 234, .82);
  font-weight: 760;
}

.mi-nav-dropdown--nested {
  border-color: rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .05);
}

.pill-apple--microimport {
  max-width: clamp(120px, 14vw, 184px);
  padding-left: clamp(8px, 1.2vw, 16px);
}

.pill-apple--microimport img {
  width: 100%;
  max-height: 44px;
  filter: none;
  object-fit: contain;
}

.mi-global-eyebrow-wrap--microimport {
  padding-top: 116px;
  padding-bottom: 18px;
  background:
    linear-gradient(180deg, #0e0e0e 0%, #111111 100%);
  border-bottom: 1px solid rgba(247, 242, 234, .08);
}

.mi-global-eyebrow-wrap--microimport .mi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(247, 242, 234, .58);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mi-global-eyebrow-wrap--microimport .mi-eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: #a96f56;
  flex-shrink: 0;
}

.site-body--home .mi-global-eyebrow-wrap--microimport {
  background: #0e0e0e;
}

.home-hero {
  min-height: clamp(570px, 74vh, 700px);
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 1) 0%, rgba(15, 15, 15, .98) 74%, rgba(34, 33, 31, .96) 90%, #eeeae4 100%),
    linear-gradient(90deg, rgba(15, 15, 15, .96) 0%, rgba(15, 15, 15, .84) 42%, rgba(15, 15, 15, .58) 100%),
    #111111;
  overflow: hidden;
}

.home-hero__grid {
  width: min(1280px, calc(100% - 48px));
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  padding: clamp(44px, 6vw, 72px) 0 clamp(58px, 7vw, 86px);
}

.home-hero__content {
  text-align: left;
}

.home-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(247, 242, 234, .58);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-hero .eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: #a96f56;
}

.home-hero h1 {
  max-width: 680px;
  margin: 0 0 28px;
  color: #f6f3ed;
  font-size: clamp(42px, 4.7vw, 64px);
  line-height: 1.04;
  font-weight: 720;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-hero .button-row {
  justify-content: flex-start;
}

.home-hero .button--primary,
.button--primary {
  min-height: 44px;
  min-width: 0;
  padding: 0 20px;
  border-radius: 999px;
  background: #a96f56;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(169, 111, 86, .28);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.home-hero .button--primary:hover,
.button--primary:hover {
  background: #8a5540;
}

.button,
.button--secondary,
.button--ghost,
.text-link {
  letter-spacing: 0;
}

.button--secondary {
  border-radius: 999px;
  background: rgba(247, 242, 234, .08);
  border: 1px solid rgba(247, 242, 234, .16);
  color: rgba(247, 242, 234, .86) !important;
}

.button--ghost {
  border-radius: 999px;
}

.home-hero__person {
  position: relative;
}

.home-hero__person::before {
  content: none;
}

.home-hero__person img {
  position: relative;
  width: min(350px, 32vw);
  filter: saturate(.94) contrast(1.02);
}

.section--muted {
  background: linear-gradient(180deg, #f7f4ef 0%, #eee8df 18%, #eee8df 82%, #f7f4ef 100%);
}

.site-body--home #solucoes {
  background: linear-gradient(180deg, #eeeae4 0%, #f7f4ef 22%, #f7f4ef 100%);
}

.site-body--home .feature-band {
  background: linear-gradient(180deg, #181818 0%, #0e0e0e 16%, #0e0e0e 84%, #252321 100%);
}

.site-body--home .cta-band {
  background: linear-gradient(180deg, #2a2825 0%, #141414 28%, #0a0a0a 100%);
}

.podcast-archive-hero__grid,
.podcast-detail-hero__grid {
  padding-top: clamp(42px, 6vw, 70px);
  padding-bottom: clamp(42px, 6vw, 70px);
}

.podcast-archive-hero__grid > img,
.podcast-detail-hero figure {
  width: min(100%, 520px);
  justify-self: end;
}

.podcast-archive-hero h1,
.podcast-detail-hero h1 {
  font-size: clamp(2.15rem, 4.2vw, 4.15rem);
}

.podcast-directory {
  background: linear-gradient(180deg, #f7f4ef 0%, #eee9e2 100%);
}

.podcast-search {
  margin-bottom: 26px;
}

.podcast-search > label {
  display: block;
  margin-bottom: 8px;
  color: #252928;
  font-size: .92rem;
  font-weight: 760;
}

.podcast-search__field {
  position: relative;
  max-width: 720px;
}

.podcast-search__field input {
  width: 100%;
  min-height: 52px;
  padding: 0 52px 0 16px;
  border: 1px solid rgba(24, 25, 26, .18);
  border-radius: 8px;
  background: #fff;
  color: #18191a;
  font: inherit;
  box-shadow: 0 12px 30px rgba(24, 25, 26, .06);
}

.podcast-search__field input:focus {
  outline: 2px solid rgba(169, 111, 86, .38);
  outline-offset: 2px;
}

.podcast-search__icon {
  position: absolute;
  top: 50%;
  right: 19px;
  width: 15px;
  height: 15px;
  border: 2px solid #805240;
  border-radius: 50%;
  transform: translateY(-58%);
  pointer-events: none;
}

.podcast-search__icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: #805240;
  transform: rotate(45deg);
}

.podcast-search__status {
  margin: 9px 0 0;
  color: #5f635f;
  font-size: .88rem;
}

.podcast-search__results {
  margin-top: 24px;
}

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

.podcast-grid--directory .podcast-episode-card {
  grid-template-columns: 184px minmax(0, 1fr);
}

.podcast-grid--directory .podcast-episode-card__image img {
  height: 100%;
  min-height: 184px;
  aspect-ratio: 1 / 1;
}

.podcast-grid--directory .podcast-episode-card__body {
  align-content: start;
  padding: 16px;
}

.podcast-grid--directory .podcast-episode-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: .92rem;
}

.podcast-grid--directory .podcast-mini-player audio {
  height: 42px;
}

.works-page {
  background: #f7f4ef;
  color: #18191a;
}

.works-hero {
  background: linear-gradient(180deg, #111 0%, #171717 78%, #ece8e1 100%);
  color: #f7f2ea;
}

.works-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: clamp(50px, 7vw, 82px) 0 clamp(72px, 8vw, 104px);
}

.works-hero h1 {
  max-width: 680px;
  margin: 0 0 18px;
  color: #f7f2ea;
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
  line-height: 1.02;
}

.works-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(247, 242, 234, .72);
}

.works-hero__media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
}

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

.works-videos {
  background: linear-gradient(180deg, #ece8e1 0%, #f7f4ef 18%, #f7f4ef 100%);
}

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

.works-video-card {
  overflow: hidden;
  border: 1px solid rgba(24, 25, 26, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(24, 25, 26, .08);
}

.works-video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
}

.works-video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.works-video-card__body {
  padding: 20px;
}

.works-video-card__body span {
  color: #8a5540;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.works-video-card h3 {
  margin: 6px 0 8px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.15;
}

.works-video-card p {
  margin: 0;
  color: #5f635f;
}

.works-portfolio {
  background: linear-gradient(180deg, #f7f4ef 0%, #e9e4dc 84%, #171717 100%);
  padding-bottom: clamp(88px, 10vw, 132px);
}

.works-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.works-gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #18191a;
}

.works-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}

.works-gallery__item:hover img {
  transform: scale(1.025);
}

.works-gallery__item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 16px 14px;
  color: #fff;
  font-size: .92rem;
  font-weight: 760;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
}

.visual-card,
.content-card,
.product-card,
.podcast-episode-card,
.podcast-player--premium,
.archive-list a,
.product-detail__body,
.product-detail__image {
  border-radius: 8px;
}

.podcast-episode-card__body > *,
.content-card > *,
.visual-card__body > *,
.product-card > * {
  min-width: 0;
  max-width: 100%;
}

.podcast-episode-card h3,
.podcast-episode-card h3 a,
.podcast-episode-card p,
.content-card strong,
.content-card span,
.visual-card strong,
.visual-card span,
.product-card strong,
.product-card span {
  overflow-wrap: anywhere;
}

.podcast-mini-player audio {
  max-width: 100%;
}

.mi-footer-logo img {
  width: min(160px, 100%);
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
}

.mi-footer-nav {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mi-footer-title {
  letter-spacing: .16em;
}

@media (max-width: 1240px) {
  .mi-header-pill {
    grid-template-columns: auto auto;
  }

  .pill-apple--microimport {
    max-width: 156px;
  }
}

@media (max-width: 760px) {
  .mi-header-pill {
    width: calc(100% - 24px);
  }

  .mi-brand-logo--microimport {
    width: clamp(96px, 30vw, 118px);
    max-height: 52px;
  }

  .pill-apple--microimport {
    max-width: 98px;
    padding-left: 0;
  }

  .pill-apple--microimport img {
    max-height: 30px;
  }

  .mi-global-eyebrow-wrap--microimport {
    padding-top: 92px;
    padding-bottom: 14px;
  }

  .mi-global-eyebrow-wrap--microimport .mi-container,
  .home-hero__grid {
    width: calc(100% - 28px);
  }

  .mi-global-eyebrow-wrap--microimport .mi-eyebrow {
    font-size: 10px;
    letter-spacing: .11em;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0 0;
  }

  .home-hero h1 {
    font-size: clamp(36px, 10.6vw, 48px);
  }

  .home-hero__person {
    justify-self: center;
    overflow: hidden;
  }

  .home-hero__person img {
    width: min(290px, 78vw);
  }

  .podcast-grid--directory {
    grid-template-columns: 1fr;
  }

  .podcast-grid--directory .podcast-episode-card {
    grid-template-columns: 1fr;
  }

  .podcast-grid--directory .podcast-episode-card__image img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .works-hero__grid,
  .works-video-grid,
  .works-gallery {
    grid-template-columns: 1fr;
  }

  .works-hero__grid {
    padding-top: 40px;
    gap: 30px;
  }

  .works-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .page-hero {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .page-hero__media {
    min-height: 218px;
  }

  .page-hero__copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .wp-content,
  .product-detail,
  .podcast-player {
    width: calc(100% - 28px);
  }

  .mi-footer-shell {
    gap: 36px;
  }
}

/* Home concept: Luz Arquitetonica */
.site-body--home {
  background: #f4f7f6;
  color: #18221f;
}

.site-body--home .mi-site-header {
  background: rgba(17, 29, 26, .97);
  border-bottom-color: rgba(255, 255, 255, .12);
}

.site-body--home .mi-header-pill {
  background: rgba(20, 31, 28, .96);
  border-color: rgba(255, 255, 255, .13);
  box-shadow: 0 18px 54px rgba(10, 25, 21, .2);
}

.site-body--home .mi-global-eyebrow-wrap--microimport {
  background: linear-gradient(180deg, #111d1a 0%, #182b27 100%);
  border-bottom: 0;
}

.site-body--home .mi-global-eyebrow-wrap--microimport .mi-eyebrow {
  color: rgba(255, 255, 255, .72);
}

.site-body--home .mi-global-eyebrow-wrap--microimport .mi-eyebrow::before {
  background: #d7b66d;
}

.site-body--home .home-hero {
  min-height: clamp(500px, 64vh, 600px);
  color: #18221f;
  background:
    linear-gradient(180deg, #dfeae7 0%, #e5eef4 48%, #f4f7f6 100%);
}

.site-body--home .home-hero h1 {
  color: #18221f;
  text-shadow: none;
}

.site-body--home .home-hero .button--primary {
  background: #176b67;
  box-shadow: 0 12px 30px rgba(23, 107, 103, .22);
}

.site-body--home .home-hero .button--primary:hover {
  background: #105955;
}

.site-body--home .home-hero__person img {
  filter: saturate(.98) contrast(1.01);
  filter: drop-shadow(0 28px 34px rgba(24, 34, 31, .16));
}

.site-body--home #solucoes {
  padding-top: clamp(38px, 5vw, 62px);
  background: linear-gradient(180deg, #f4f7f6 0%, #ffffff 38%, #e4efeb 100%);
}

.site-body--home .visual-card,
.site-body--home .content-card,
.site-body--home .product-card,
.site-body--home .podcast-episode-card {
  border-color: rgba(24, 34, 31, .1);
  box-shadow: 0 16px 40px rgba(38, 67, 60, .09);
}

.site-body--home #solucoes .visual-card:nth-child(1) {
  border-top: 4px solid #176b67;
}

.site-body--home #solucoes .visual-card:nth-child(2) {
  border-top: 4px solid #a95840;
}

.site-body--home #solucoes .visual-card:nth-child(3) {
  border-top: 4px solid #4f86a6;
}

.site-body--home #solucoes .visual-card:nth-child(4) {
  border-top: 4px solid #d7b66d;
}

.site-body--home .feature-band {
  background: linear-gradient(180deg, #e4efeb 0%, #e5eef4 52%, #f8faf9 100%);
  color: #18221f;
}

.site-body--home .feature-grid h2,
.site-body--home .feature-grid p {
  color: #18221f;
}

.site-body--home .feature-grid p {
  color: #42544f;
}

.site-body--home .feature-band .eyebrow,
.site-body--home .section .eyebrow {
  color: #176b67;
}

.site-body--home .feature-band .button--secondary {
  background: #fff;
  border-color: rgba(24, 34, 31, .16);
  color: #18221f !important;
}

.site-body--home .feature-image {
  box-shadow: 0 24px 60px rgba(38, 67, 60, .14);
}

.site-body--home main > section:nth-of-type(4) {
  background: linear-gradient(180deg, #f8faf9 0%, #fff 100%);
}

.site-body--home .section--muted {
  background: linear-gradient(180deg, #fff 0%, #e5eef4 22%, #e4efeb 82%, #f8faf9 100%);
}

.site-body--home main > section:nth-of-type(6) {
  background: linear-gradient(180deg, #f8faf9 0%, #f2e6e2 58%, #edf1ef 100%);
}

.site-body--home .product-card img {
  background: #f7faf8;
}

.site-body--home .text-link {
  color: #176b67;
}

.site-body--home .cta-band {
  background: linear-gradient(180deg, #edf1ef 0%, #315d58 22%, #182b27 68%, #0a0f0e 100%);
}

.site-body--home .cta-grid h2,
.site-body--home .cta-grid p {
  color: #fff;
}

.site-body--home .cta-grid p {
  color: rgba(255, 255, 255, .76);
}

.site-body--home .cta-band .eyebrow {
  color: #d7b66d;
}

.site-body--home .cta-band .button--primary {
  background: #a95840;
}

.site-body--home .cta-band .button--ghost {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
}

.site-body--home .mi-site-footer {
  background: #0a0f0e;
}

@media (max-width: 760px) {
  .site-body--home .home-hero__grid {
    gap: 18px;
    padding-top: 30px;
  }

  .site-body--home .home-hero__content {
    order: 1;
  }

  .site-body--home .home-hero h1 {
    max-width: 12ch;
    font-size: clamp(34px, 9.5vw, 42px);
    margin-bottom: 20px;
  }

  .site-body--home .home-hero__person {
    order: 2;
  }

  .site-body--home .home-hero__person img {
    width: min(220px, 62vw);
  }
}

/* Home refinement: unified navigation and focused content */
.site-body--home .mi-site-header {
  top: 0;
  padding: 10px 0 12px;
  background: linear-gradient(90deg, #0c1916 0%, #17362f 58%, #28594f 100%);
  border: 0;
  box-shadow: none;
  isolation: isolate;
}

.site-body--home .mi-header-pill {
  position: relative;
  z-index: 1;
  min-height: 72px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-body--home .mi-global-eyebrow-wrap--microimport {
  display: none;
}

.site-body--home .home-hero {
  min-height: clamp(590px, 72vh, 680px);
  padding-top: 94px;
  background: linear-gradient(180deg, #cfe0dc 0%, #dfeae7 18%, #e5eef4 56%, #f4f7f6 100%);
}

.site-body--home .home-hero .button--primary,
.site-body--home .button--primary {
  background: #a95840;
  border-color: #a95840;
  box-shadow: 0 12px 30px rgba(169, 88, 64, .22);
}

.site-body--home .home-hero .button--primary:hover,
.site-body--home .button--primary:hover {
  background: #87402f;
  border-color: #87402f;
}

.site-body--home .button--secondary {
  background: #a95840;
  border-color: #a95840;
  color: #fff !important;
}

.site-body--home .button--secondary:hover {
  background: #87402f;
  border-color: #87402f;
}

.site-body--home .feature-band .button--secondary {
  background: transparent;
  border-color: #a95840;
  color: #87402f !important;
}

.site-body--home .feature-band .button--secondary:hover {
  background: #a95840;
  color: #fff !important;
}

.site-body--home .home-podcast {
  background: linear-gradient(180deg, #f8faf9 0%, #e8f0ee 100%);
}

.home-podcast__layout {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.55fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.home-podcast__intro {
  position: sticky;
  top: 118px;
}

.home-podcast__intro h2 {
  margin: 0 0 14px;
  color: #18221f;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.06;
}

.home-podcast__intro p {
  max-width: 520px;
  color: #42544f;
}

.home-podcast__list {
  display: grid;
  gap: 12px;
}

.home-podcast__episode {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(24, 34, 31, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 32px rgba(38, 67, 60, .07);
}

.home-podcast__episode .podcast-episode-card__image img {
  width: 100%;
  height: 100%;
  min-height: 154px;
  object-fit: cover;
}

.home-podcast__episode-body {
  display: grid;
  min-width: 0;
  gap: 8px;
  align-content: center;
  padding: 14px 16px;
}

.home-podcast__episode h3 {
  margin: 0;
  color: #18221f;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.2;
}

.home-podcast__episode h3 a {
  color: inherit;
}

.home-podcast__episode .podcast-mini-player audio {
  height: 38px;
}

.site-body--home .cta-band {
  background: #e4efeb;
  color: #18221f;
}

.site-body--home .cta-grid h2,
.site-body--home .cta-grid p {
  color: #18221f;
}

.site-body--home .cta-grid p {
  color: #42544f;
}

.site-body--home .cta-band .eyebrow {
  color: #a95840;
}

.site-body--home .cta-band .button--ghost {
  background: transparent;
  border-color: #a95840;
  color: #87402f !important;
}

.site-body--home .cta-band .button--ghost:hover {
  background: #a95840;
  color: #fff !important;
}

.site-body--home .mi-site-footer {
  background: linear-gradient(180deg, #28594f 0%, #17362f 14%, #0a0f0e 42%, #080909 100%);
  border-top: 0;
}

.site-body--home .mi-footer-bottom {
  border-top: 0;
}

.button--primary,
.button--secondary,
.podcast-mini-player button,
.podcast-controls button {
  background: #a95840;
  border-color: #a95840;
  color: #fff !important;
}

.button--primary:hover,
.button--secondary:hover,
.podcast-mini-player button:hover,
.podcast-controls button:hover {
  background: #87402f;
  border-color: #87402f;
}

.button--ghost {
  border-color: #a95840;
}

@media (max-width: 760px) {
  .site-body--home .mi-site-header {
    padding: 8px 0 10px;
  }

  .site-body--home .mi-header-pill {
    min-height: 62px;
  }

  .site-body--home .home-hero {
    min-height: auto;
    padding-top: 78px;
  }

  .home-podcast__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-podcast__intro {
    position: static;
  }

  .home-podcast__episode {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .home-podcast__episode .podcast-episode-card__image img {
    min-height: 142px;
  }

  .home-podcast__episode-body {
    padding: 12px;
  }

  .home-podcast__episode .content-card__meta {
    font-size: .72rem;
  }
}

/* Site-wide palette: Luz Arquitetonica */
:root {
  --bg: #0c1916;
  --surface: #17362f;
  --surface-2: #28594f;
  --paper: #f4f7f6;
  --paper-2: #e4efeb;
  --text: #f7faf8;
  --text-dark: #18221f;
  --muted: #c7d7d2;
  --muted-dark: #42544f;
  --line: rgba(255, 255, 255, .12);
  --line-dark: rgba(24, 34, 31, .12);
  --copper: #a95840;
  --green: #28594f;
  --blue: #4f86a6;
  --gold: #d7b66d;
  --cor-bg: #0c1916;
  --cor-bg-suave: #17362f;
  --cor-bg-card: #28594f;
  --cor-header-bg: #17362f;
  --cor-submenu-bg: #17362f;
  --cor-footer-bg: #080909;
  --cor-ouro: #a95840;
  --cor-ouro-claro: #c7785f;
  --cor-ouro-escuro: #87402f;
  --mi-v2-black: #0c1916;
  --mi-v2-carbon: #17362f;
  --mi-v2-carbon-2: #28594f;
  --mi-v2-porcelain: #f4f7f6;
  --mi-v2-porcelain-2: #e4efeb;
  --mi-v2-ink: #18221f;
  --mi-v2-muted: #52645f;
  --mi-v2-muted-strong: #42544f;
  --mi-v2-terra: #a95840;
  --mi-v2-terra-dark: #87402f;
}

.site-body {
  background: #f4f7f6;
  color: #18221f;
}

.mi-site-header,
.site-body--home .mi-site-header {
  top: 0;
  padding: 10px 0 12px;
  background: linear-gradient(90deg, #0c1916 0%, #17362f 58%, #28594f 100%);
  border: 0;
  box-shadow: none;
  isolation: isolate;
}

.mi-header-pill,
.site-body--home .mi-header-pill {
  position: relative;
  z-index: 1;
  min-height: 72px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.mi-global-eyebrow-wrap--microimport {
  padding-top: 112px;
  background: linear-gradient(90deg, #0c1916 0%, #17362f 58%, #28594f 100%);
  border: 0;
}

.mi-global-eyebrow-wrap--microimport .mi-eyebrow {
  color: rgba(255, 255, 255, .72);
}

.mi-global-eyebrow-wrap--microimport .mi-eyebrow::before {
  background: #a95840;
}

main,
.content-page,
.works-page {
  background: #f4f7f6;
  color: #18221f;
}

.content-page {
  background: linear-gradient(180deg, #cfe0dc 0%, #e5eef4 13rem, #f4f7f6 34rem);
}

.page-hero__media {
  background: #edf3f1;
  border-color: rgba(24, 34, 31, .12);
  box-shadow: 0 24px 64px rgba(38, 67, 60, .13);
}

.page-hero__copy h1,
.page-hero__copy .lede,
.wp-content :is(h1, h2, h3, h4),
.product-detail__body :is(h1, h2, h3, h4) {
  color: #18221f;
}

.page-hero__copy .eyebrow,
.section .eyebrow,
.content-card__meta,
.text-link,
.wp-content a {
  color: #a95840;
}

.wp-content p,
.wp-content li,
.product-detail__body p,
.product-detail__body li {
  color: #42544f;
}

.section,
.podcast-topic-strip {
  background: #f4f7f6;
  color: #18221f;
}

.section--muted,
.podcast-directory,
.works-videos {
  background: linear-gradient(180deg, #f4f7f6 0%, #e5eef4 52%, #e4efeb 100%);
}

.visual-card,
.content-card,
.product-card,
.podcast-topic-list a,
.podcast-episode-card,
.podcast-player--premium,
.archive-list a,
.product-detail__body,
.product-detail__image,
.works-video-card {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(24, 34, 31, .11);
  box-shadow: 0 16px 40px rgba(38, 67, 60, .09);
}

.product-card img,
.product-detail__image {
  background: #f7faf8;
}

.podcast-archive-hero,
.podcast-detail-hero,
.works-hero {
  background: linear-gradient(180deg, #cfe0dc 0%, #dfeae7 30%, #e5eef4 72%, #f4f7f6 100%);
  color: #18221f;
  border: 0;
}

.podcast-archive-hero h1,
.podcast-detail-hero h1,
.works-hero h1 {
  color: #18221f;
}

.podcast-archive-hero p,
.podcast-detail-hero p,
.works-hero p:not(.eyebrow) {
  color: #42544f;
}

.podcast-archive-hero img,
.podcast-detail-hero figure img,
.works-hero__media {
  border-color: rgba(24, 34, 31, .12);
  box-shadow: 0 24px 60px rgba(38, 67, 60, .14);
}

.works-portfolio {
  background: linear-gradient(180deg, #f4f7f6 0%, #e4efeb 82%, #28594f 100%);
}

.feature-band,
.cta-band {
  background: linear-gradient(180deg, #e4efeb 0%, #e5eef4 52%, #f8faf9 100%);
  color: #18221f;
}

.feature-grid h2,
.cta-grid h2 {
  color: #18221f;
}

.feature-grid p,
.cta-grid p {
  color: #42544f;
}

.mi-section-light,
.mi-cf .mi-cf-section-light {
  background: #f4f7f6 !important;
  color: #18221f !important;
}

.mi-section-dark,
.mi-cf .mi-cf-section-dark,
.mi-cf .mi-cf-hero,
.hero-interno,
.cf-hero,
.cf-intro-cards {
  background: linear-gradient(135deg, #0c1916 0%, #17362f 58%, #28594f 100%) !important;
}

.mi-site-footer,
.site-body--home .mi-site-footer {
  background: linear-gradient(180deg, #28594f 0%, #17362f 14%, #0a0f0e 42%, #080909 100%);
  border: 0;
}

.mi-footer-bottom,
.site-body--home .mi-footer-bottom {
  border-top: 0;
}

@media (max-width: 760px) {
  .mi-site-header,
  .site-body--home .mi-site-header {
    padding: 8px 0 10px;
  }

  .mi-header-pill,
  .site-body--home .mi-header-pill {
    min-height: 62px;
  }

  .mi-global-eyebrow-wrap--microimport {
    padding-top: 86px;
  }
}

/* Home study: Alisse + liquid glass */
.site-body--home .mi-site-header {
  top: 18px;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.site-body--home .mi-header-pill {
  width: min(1320px, calc(100% - 48px));
  min-height: 74px;
  padding: 0 14px 0 24px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 999px;
  background: rgba(12, 31, 27, .72);
  box-shadow:
    0 22px 64px rgba(18, 42, 36, .2),
    inset 0 1px 0 rgba(255, 255, 255, .11);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
}

.site-body--home .mi-nav-link:hover,
.site-body--home .mi-nav-link:focus-visible,
.site-body--home .mi-nav-item:hover > .mi-nav-link,
.site-body--home .mi-nav-item.is-open > .mi-nav-link {
  background: rgba(255, 255, 255, .1);
}

.site-body--home .home-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(700px, 88svh, 880px);
  padding-top: 0;
  overflow: hidden;
  color: #18221f;
  background: #dce9e6;
}

.site-body--home .home-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% 58%;
  opacity: .25;
  filter: saturate(.5) contrast(.78) brightness(1.28);
  transform: scale(1.015);
}

.site-body--home .home-hero::before,
.site-body--home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.site-body--home .home-hero::before {
  background:
    linear-gradient(90deg,
      rgba(232, 241, 238, .98) 0%,
      rgba(226, 238, 234, .93) 42%,
      rgba(216, 232, 227, .64) 68%,
      rgba(207, 225, 220, .78) 100%),
    linear-gradient(180deg,
      rgba(197, 220, 214, .28) 0%,
      rgba(229, 238, 244, .44) 62%,
      rgba(244, 247, 246, .96) 100%);
}

.site-body--home .home-hero::after {
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(244, 247, 246, 0), #f4f7f6 90%);
}

.site-body--home .home-hero__grid {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  min-height: clamp(700px, 88svh, 880px);
  padding: 154px 0 72px;
  grid-template-columns: minmax(0, 1.14fr) minmax(330px, .72fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.site-body--home .home-hero__content {
  max-width: 790px;
}

.site-body--home .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  max-width: 680px;
  margin: 0 0 24px;
  color: #536660;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-body--home .home-hero__eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  flex: 0 0 auto;
  background: #a95840;
}

.site-body--home .home-hero h1 {
  max-width: 790px;
  margin: 0;
  color: #14221e;
  font-size: clamp(48px, 5.25vw, 76px);
  font-weight: 720;
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}

.site-body--home .home-hero h1 span {
  color: #a95840;
}

.site-body--home .home-hero__lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: #42544f;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.62;
}

.site-body--home .home-hero .button-row {
  gap: 10px;
  margin-top: 32px;
}

.site-body--home .home-hero .button {
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  box-shadow:
    0 13px 34px rgba(31, 64, 55, .12),
    inset 0 1px 0 rgba(255, 255, 255, .28);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.site-body--home .home-hero .button--primary {
  background: rgba(169, 88, 64, .88);
  border-color: rgba(255, 255, 255, .32);
  color: #fff !important;
}

.site-body--home .home-hero .button--primary:hover {
  background: rgba(135, 64, 47, .94);
}

.button--glass {
  background: rgba(255, 255, 255, .42);
  border-color: rgba(255, 255, 255, .62);
  color: #17362f !important;
}

.button--glass:hover {
  background: rgba(255, 255, 255, .68);
  color: #0c1916 !important;
}

.site-body--home .home-hero__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.site-body--home .home-hero__credentials span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28);
  color: #52645f;
  font-size: 11px;
  font-weight: 680;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-body--home .home-hero__person {
  position: relative;
  align-self: end;
  justify-self: end;
  width: min(100%, 430px);
  margin: 0;
  overflow: visible;
}

.site-body--home .home-hero__person img {
  width: min(410px, 34vw);
  max-height: 660px;
  margin-inline: auto;
  object-fit: contain;
  object-position: bottom center;
  filter:
    saturate(.9)
    contrast(1.01)
    drop-shadow(0 30px 28px rgba(33, 58, 51, .2));
}

.site-body--home .home-hero__person figcaption {
  position: absolute;
  right: 4px;
  bottom: 68px;
  min-height: 40px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  background: rgba(238, 246, 243, .42);
  box-shadow:
    0 16px 38px rgba(29, 60, 52, .13),
    inset 0 1px 0 rgba(255, 255, 255, .4);
  color: #31544c;
  font-size: 11px;
  font-weight: 760;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.site-body--home #solucoes {
  position: relative;
  background: linear-gradient(180deg, #f4f7f6 0%, #fff 48%, #e4efeb 100%);
}

.whatsapp-float {
  border: 1px solid rgba(255, 255, 255, .38);
  box-shadow:
    0 14px 36px rgba(22, 84, 50, .28),
    inset 0 1px 0 rgba(255, 255, 255, .25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@media (max-width: 1180px) {
  .site-body--home .mi-header-pill {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-body--home .mi-global-nav {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(12, 31, 27, .94);
    backdrop-filter: blur(26px) saturate(1.16);
    -webkit-backdrop-filter: blur(26px) saturate(1.16);
  }

  .site-body--home .home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(290px, .62fr);
  }
}

@media (max-width: 760px) {
  .site-body--home .mi-site-header {
    top: 10px;
    padding: 0;
  }

  .site-body--home .mi-header-pill {
    width: calc(100% - 24px);
    min-height: 64px;
    padding: 0 8px 0 16px;
  }

  .site-body--home .home-hero {
    min-height: auto;
  }

  .site-body--home .home-hero__background {
    object-position: 42% center;
    opacity: .2;
  }

  .site-body--home .home-hero::before {
    background:
      linear-gradient(180deg,
        rgba(220, 235, 230, .94) 0%,
        rgba(229, 238, 244, .89) 54%,
        rgba(244, 247, 246, .98) 100%);
  }

  .site-body--home .home-hero__grid {
    width: calc(100% - 28px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 112px 0 0;
  }

  .site-body--home .home-hero__eyebrow {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: .1em;
  }

  .site-body--home .home-hero__eyebrow::before {
    width: 28px;
  }

  .site-body--home .home-hero h1 {
    max-width: 13ch;
    font-size: clamp(38px, 10.8vw, 48px);
    line-height: 1.01;
  }

  .site-body--home .home-hero__lead {
    margin-top: 20px;
    font-size: 15px;
  }

  .site-body--home .home-hero .button-row {
    align-items: stretch;
    margin-top: 25px;
  }

  .site-body--home .home-hero .button {
    flex: 1 1 180px;
  }

  .site-body--home .home-hero__credentials {
    margin-top: 18px;
  }

  .site-body--home .home-hero__person {
    justify-self: center;
    width: min(330px, 92vw);
  }

  .site-body--home .home-hero__person img {
    width: min(285px, 76vw);
    max-height: 430px;
  }

  .site-body--home .home-hero__person figcaption {
    right: 0;
    bottom: 38px;
  }
}

@media (max-width: 420px) {
  .site-body--home .home-hero__credentials span {
    padding-inline: 10px;
    font-size: 10px;
  }

  .site-body--home .home-hero__person figcaption {
    display: none;
  }
}

.works-social-archive {
  background: linear-gradient(180deg, #244d45 0%, #17362f 16%, #0d1c18 100%);
  color: #fff;
}

.works-social-archive .split-heading {
  align-items: end;
}

.works-social-archive :is(h2, p) {
  color: rgba(255, 255, 255, .9);
}

.works-social-archive .eyebrow,
.works-social-archive .keyword-accent {
  color: #d99a83;
}

.works-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.works-social-card {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.works-social-card > a {
  min-height: 100%;
}

.works-social-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.works-social-card > div {
  display: grid;
  min-width: 0;
  padding: 20px;
  align-content: center;
  gap: 10px;
}

.works-social-card h3,
.works-social-card p {
  margin: 0;
}

.works-social-card h3 {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.works-social-card p {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.works-social-card .text-link {
  color: #efb29d;
  font-size: 12px;
}

.mi-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 18px;
}

.mi-footer-social a {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 680;
}

.mi-footer-social a:hover {
  color: #efb29d;
}

@media (max-width: 980px) {
  .works-social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .works-social-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .works-social-card img {
    min-height: 100%;
  }

  .works-social-card > div {
    padding: 14px;
  }

  .works-social-card p {
    -webkit-line-clamp: 2;
  }
}

/* Podcast detail system: approved light premium pattern */
.site-body--podcast {
  background: #f4f7f6;
  color: #18221f;
}

.site-body--podcast .mi-site-header {
  top: 18px;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.site-body--podcast .mi-header-pill {
  width: min(1320px, calc(100% - 48px));
  min-height: 74px;
  padding: 0 14px 0 24px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 999px;
  background: rgba(12, 31, 27, .72);
  box-shadow:
    0 22px 64px rgba(18, 42, 36, .2),
    inset 0 1px 0 rgba(255, 255, 255, .11);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
}

.site-body--podcast .mi-global-eyebrow-wrap--microimport {
  display: none;
}

.podcast-detail--premium {
  background: #f4f7f6;
  color: #18221f;
}

.podcast-detail--premium .podcast-detail-hero {
  min-height: 690px;
  background:
    linear-gradient(90deg,
      rgba(234, 242, 239, .98) 0%,
      rgba(229, 240, 236, .95) 50%,
      rgba(216, 232, 227, .83) 100%),
    url("/assets/img/site/automacao-imoveis-inteligentes-keypad-lutron-alisse-micro-import.webp") center 58% / cover no-repeat;
}

.podcast-detail--premium .podcast-detail-hero__grid {
  min-height: 690px;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .86fr);
  gap: clamp(42px, 6vw, 86px);
  padding-top: 142px;
  padding-bottom: 88px;
}

.podcast-detail--premium .podcast-detail-hero__copy {
  max-width: 720px;
}

.podcast-detail--premium .podcast-detail-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #536660;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.podcast-detail--premium .podcast-detail-hero .eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: #a95840;
}

.podcast-detail--premium .podcast-detail-hero h1 {
  max-width: 700px;
  margin: 0;
  color: #14221e;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 720;
  line-height: .99;
  letter-spacing: 0;
  text-wrap: balance;
}

.podcast-detail--premium .podcast-detail-hero h1 span,
.podcast-detail--premium .podcast-player__intro h2 span {
  color: #a95840;
}

.podcast-detail--premium .podcast-detail-hero .lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: #42544f;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.62;
}

.podcast-detail--premium .podcast-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: #52645f;
  font-size: 12px;
  font-weight: 720;
}

.podcast-detail--premium .podcast-detail-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  background: rgba(255, 255, 255, .3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.podcast-detail--premium .podcast-detail-hero .button-row {
  margin-top: 28px;
}

.podcast-detail--premium .podcast-detail-hero .button {
  min-height: 47px;
  border-radius: 999px;
  box-shadow:
    0 12px 30px rgba(31, 64, 55, .11),
    inset 0 1px 0 rgba(255, 255, 255, .24);
  backdrop-filter: blur(17px) saturate(1.15);
  -webkit-backdrop-filter: blur(17px) saturate(1.15);
}

.podcast-detail--premium .podcast-detail-hero .button--primary {
  background: rgba(169, 88, 64, .9);
  border-color: rgba(255, 255, 255, .3);
}

.podcast-detail--premium .podcast-detail-hero .button--secondary {
  background: rgba(255, 255, 255, .36);
  border-color: rgba(255, 255, 255, .62);
  color: #17362f !important;
}

.podcast-detail--premium .podcast-detail-hero .button--secondary:hover {
  background: rgba(255, 255, 255, .68);
  color: #0c1916 !important;
}

.podcast-detail--premium .podcast-detail-hero figure {
  width: 100%;
  max-width: 550px;
  padding: 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 8px;
  background: rgba(255, 255, 255, .28);
  box-shadow:
    0 26px 70px rgba(36, 67, 59, .17),
    inset 0 1px 0 rgba(255, 255, 255, .4);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.podcast-detail--premium .podcast-detail-hero figure img {
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  filter: saturate(.86) contrast(.96) brightness(1.05);
}

.podcast-episode-cover {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 6px;
  object-fit: cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.podcast-detail--premium .podcast-detail-hero figcaption {
  display: grid;
  gap: 3px;
  padding: 14px 5px 4px;
}

.podcast-detail--premium .podcast-detail-hero figcaption span {
  color: #a95840;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.podcast-detail--premium .podcast-detail-hero figcaption strong {
  color: #2f4f47;
  font-size: 14px;
  line-height: 1.3;
}

.podcast-detail--premium .podcast-player--premium {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  scroll-margin-top: 112px;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  margin-top: -38px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background: rgba(246, 250, 248, .82);
  box-shadow:
    0 24px 60px rgba(38, 67, 60, .12),
    inset 0 1px 0 rgba(255, 255, 255, .64);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
}

.podcast-detail--premium .podcast-player__intro .eyebrow {
  margin-bottom: 11px;
  color: #a95840;
}

.podcast-detail--premium .podcast-player__intro h2 {
  margin: 0 0 12px;
  color: #18221f;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.06;
}

.podcast-detail--premium .podcast-player__intro p:last-child {
  color: #52645f;
  line-height: 1.6;
}

.podcast-detail--premium .podcast-player__media {
  min-width: 0;
}

.podcast-detail--premium .podcast-player__media audio {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 8px;
  border: 1px solid rgba(24, 34, 31, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
}

.podcast-detail--premium .podcast-controls {
  justify-content: flex-end;
  margin-top: 11px;
}

.podcast-detail--premium .podcast-controls button {
  background: #a95840;
  border-color: #a95840;
}

.podcast-reading {
  margin-top: -1px;
  padding: clamp(72px, 8vw, 116px) 0 clamp(82px, 9vw, 132px);
  background: linear-gradient(180deg, #f4f7f6 0%, #fff 46%, #e4efeb 100%);
}

.podcast-reading__grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(250px, 320px);
  gap: clamp(52px, 8vw, 108px);
  align-items: start;
}

.podcast-detail--premium .podcast-transcript {
  width: auto;
  margin: 0;
  padding: 0;
  color: #2f413c;
}

.podcast-reading__label {
  margin: 0 0 30px !important;
  color: #a95840 !important;
  font-size: 11px !important;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.podcast-detail--premium .podcast-transcript h3 {
  margin-top: 2.4rem;
  color: #17362f;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.15;
}

.podcast-detail--premium .podcast-transcript strong {
  color: inherit;
  font-weight: 620;
}

.podcast-detail--premium .podcast-transcript em {
  color: inherit;
  font-weight: 450;
}

.podcast-detail--premium .podcast-transcript li::marker {
  color: #7d8f89;
}

.podcast-detail--premium .podcast-transcript [itemscope][itemtype*="AudioObject"] {
  display: none;
}

.podcast-aside {
  position: sticky;
  top: 122px;
  padding: 4px 0 6px 30px;
  border-left: 1px solid rgba(169, 88, 64, .32);
}

.podcast-aside .eyebrow {
  margin-bottom: 14px;
  color: #a95840;
}

.podcast-aside h2 {
  margin: 0;
  color: #18221f;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.podcast-aside ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.podcast-aside li {
  position: relative;
  padding-left: 19px;
  color: #52645f;
  font-size: 14px;
  line-height: 1.45;
}

.podcast-aside li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a95840;
}

@media (max-width: 900px) {
  .podcast-detail--premium .podcast-detail-hero__grid {
    grid-template-columns: 1fr;
  }

  .podcast-detail--premium .podcast-detail-hero figure {
    width: min(100%, 620px);
    justify-self: start;
  }

  .podcast-detail--premium .podcast-player--premium,
  .podcast-reading__grid {
    grid-template-columns: 1fr;
  }

  .podcast-aside {
    position: static;
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .site-body--podcast .mi-site-header {
    top: 10px;
    padding: 0;
  }

  .site-body--podcast .mi-header-pill {
    width: calc(100% - 24px);
    min-height: 64px;
    padding: 0 8px 0 16px;
  }

  .podcast-detail--premium .podcast-detail-hero {
    min-height: 0;
  }

  .podcast-detail--premium .podcast-detail-hero__grid {
    min-height: 0;
    gap: 32px;
    padding: 112px 0 76px;
  }

  .podcast-detail--premium .podcast-detail-hero h1 {
    font-size: clamp(38px, 11vw, 49px);
  }

  .podcast-detail--premium .podcast-detail-hero figure {
    order: initial;
  }

  .podcast-detail--premium .podcast-detail-hero .button-row {
    align-items: stretch;
  }

  .podcast-detail--premium .podcast-detail-hero .button {
    flex: 1 1 160px;
  }

  .podcast-detail--premium .podcast-player--premium {
    width: calc(100% - 28px);
    margin-top: -30px;
    padding: 22px 18px;
  }

  .podcast-detail--premium .podcast-controls {
    justify-content: stretch;
  }

  .podcast-detail--premium .podcast-controls button {
    flex: 1 1 100%;
  }

  .podcast-reading {
    padding-top: 64px;
  }

  .podcast-reading__grid {
    width: calc(100% - 28px);
    gap: 54px;
  }

  .podcast-aside {
    padding-left: 22px;
  }
}

/* Global premium system: approved home and podcast language */
:root {
  --mi-light-0: #ffffff;
  --mi-light-1: #f4f7f6;
  --mi-light-2: #e4efeb;
  --mi-light-blue: #e5eef4;
  --mi-ink: #18221f;
  --mi-copy: #42544f;
  --mi-green: #28594f;
  --mi-green-deep: #0c1916;
  --mi-terra: #a95840;
  --mi-terra-deep: #87402f;
  --mi-line: rgba(24, 34, 31, .11);
  --mi-shadow: 0 22px 60px rgba(38, 67, 60, .12);
}

.mi-global-eyebrow-wrap--microimport {
  display: none;
}

.mi-site-header,
.site-body--home .mi-site-header,
.site-body--podcast .mi-site-header {
  top: 18px;
  padding: 0;
  overflow: visible;
  background: transparent;
}

.mi-header-pill,
.site-body--home .mi-header-pill,
.site-body--podcast .mi-header-pill {
  width: min(1320px, calc(100% - 48px));
  min-height: 74px;
  padding: 0 14px 0 24px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(12, 31, 27, .78);
  box-shadow:
    0 22px 64px rgba(18, 42, 36, .2),
    inset 0 1px 0 rgba(255, 255, 255, .11);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
}

.mi-nav-link:hover,
.mi-nav-link:focus-visible,
.mi-nav-item:hover > .mi-nav-link,
.mi-nav-item:hover > .mi-nav-row > .mi-nav-link,
.mi-nav-item.is-open > .mi-nav-row > .mi-nav-link,
.mi-nav-item.is-open > .mi-nav-link {
  background: rgba(255, 255, 255, .1);
}

.mi-nav-dropdown {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(12, 31, 27, .96);
  box-shadow: 0 26px 60px rgba(7, 18, 15, .28);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.keyword-accent {
  color: var(--mi-terra);
}

.button {
  min-height: 46px;
  padding-inline: 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0;
}

.button--primary,
.site-body--home .button--primary {
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(169, 88, 64, .92);
  color: #fff !important;
  box-shadow:
    0 12px 30px rgba(80, 42, 31, .16),
    inset 0 1px 0 rgba(255, 255, 255, .2);
}

.button--primary:hover,
.site-body--home .button--primary:hover {
  background: var(--mi-terra-deep);
}

.button--secondary,
.button--glass {
  border: 1px solid rgba(255, 255, 255, .64);
  background: rgba(255, 255, 255, .42);
  color: #17362f !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.button--secondary:hover,
.button--glass:hover {
  background: rgba(255, 255, 255, .72);
  color: var(--mi-green-deep) !important;
}

.content-page {
  padding-bottom: clamp(82px, 9vw, 132px);
  background:
    linear-gradient(180deg,
      #d2e2de 0%,
      var(--mi-light-blue) 24rem,
      var(--mi-light-1) 42rem,
      #fff 72%,
      var(--mi-light-2) 100%);
}

.page-hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 620px;
  padding: 142px 0 76px;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .78fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.page-hero__copy {
  order: 1;
}

.page-hero__media {
  order: 2;
  min-height: clamp(280px, 33vw, 430px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 8px;
  background: rgba(255, 255, 255, .36);
  box-shadow: var(--mi-shadow), inset 0 1px 0 rgba(255, 255, 255, .5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.page-hero__media img {
  min-height: inherit;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.86) contrast(.98);
}

.page-hero__copy .eyebrow,
.section .eyebrow,
.podcast-player__intro .eyebrow {
  color: var(--mi-terra);
}

.page-hero__copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--mi-ink);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero__copy .lede {
  max-width: 660px;
  color: var(--mi-copy);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}

.wp-content {
  width: min(860px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(38px, 5vw, 72px) 0 0;
  color: var(--mi-copy);
}

.wp-content :is(p, li),
.product-detail__body :is(p, li) {
  color: var(--mi-copy);
  font-size: 17px;
  line-height: 1.72;
}

.wp-content :is(h1, h2, h3, h4),
.product-detail__body :is(h1, h2, h3, h4) {
  color: var(--mi-ink);
  font-weight: 680;
  letter-spacing: 0;
}

.wp-content strong,
.product-detail__body strong {
  color: inherit;
  font-weight: 620;
}

.wp-content em,
.product-detail__body em {
  color: inherit;
  font-weight: 450;
}

.wp-content li::marker,
.product-detail__body li::marker {
  color: #7d8f89;
}

.wp-content blockquote,
.product-detail__body blockquote {
  margin: 2rem 0;
  padding: 8px 0 8px 24px;
  border-left: 2px solid rgba(169, 88, 64, .42);
  color: #52645f;
}

.wp-content :is(.elementor-section, .elementor-container, .elementor-column, .elementor-widget-wrap),
.product-detail__body :is(.elementor-section, .elementor-container, .elementor-column, .elementor-widget-wrap) {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 0 !important;
  margin-inline: 0 !important;
  padding-inline: 0 !important;
}

.product-detail {
  width: min(1120px, calc(100% - 48px));
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: start;
  padding: clamp(52px, 7vw, 92px) 0 0;
}

.product-detail__image,
.product-detail__body {
  border: 1px solid var(--mi-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 48px rgba(38, 67, 60, .09);
}

.product-detail__image {
  position: sticky;
  top: 116px;
  padding: clamp(20px, 3vw, 34px);
}

.product-detail__body {
  padding: clamp(26px, 4vw, 46px);
}

.podcast-archive-hero,
.podcast-detail-hero,
.works-hero {
  background:
    linear-gradient(90deg,
      rgba(234, 242, 239, .98) 0%,
      rgba(229, 240, 236, .95) 50%,
      rgba(216, 232, 227, .84) 100%),
    url("/assets/img/site/automacao-imoveis-inteligentes-keypad-lutron-alisse-micro-import.webp") center 58% / cover no-repeat;
  color: var(--mi-ink);
}

.podcast-archive-hero__grid {
  min-height: 640px;
  padding-top: 142px;
  padding-bottom: 78px;
}

.podcast-archive-hero h1,
.works-hero h1 {
  color: var(--mi-ink);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
}

.podcast-archive-hero p,
.works-hero p:not(.eyebrow) {
  color: var(--mi-copy);
}

.podcast-archive-hero__grid > img.podcast-show-artwork {
  width: min(390px, 100%);
  aspect-ratio: 1;
  justify-self: end;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  box-shadow: var(--mi-shadow);
}

.podcast-topic-strip {
  background: linear-gradient(180deg, var(--mi-light-1), #fff);
}

.podcast-directory {
  background: linear-gradient(180deg, #fff 0%, var(--mi-light-blue) 55%, var(--mi-light-2) 100%);
}

.podcast-topic-list a,
.podcast-episode-card {
  border: 1px solid var(--mi-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 40px rgba(38, 67, 60, .08);
}

.podcast-episode-card__image {
  overflow: hidden;
  background: var(--mi-light-2);
}

.podcast-episode-card__image img {
  filter: saturate(.86) contrast(.98);
}

.podcast-episode-card h3,
.podcast-episode-card h3 a {
  color: var(--mi-ink);
  letter-spacing: 0;
}

.podcast-episode-card p {
  color: var(--mi-copy);
}

.podcast-detail--premium .podcast-detail-hero h1 .keyword-accent,
.podcast-detail--premium .podcast-player__intro h2 .keyword-accent {
  color: var(--mi-terra);
}

.podcast-reading {
  background: linear-gradient(180deg, var(--mi-light-1) 0%, #fff 46%, var(--mi-light-2) 100%);
}

.podcast-aside {
  color: var(--mi-copy);
}

.podcast-aside > p:not(.eyebrow) {
  margin: 16px 0 24px;
  color: var(--mi-copy);
  font-size: 14px;
  line-height: 1.6;
}

.podcast-aside__meta {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
}

.podcast-aside__meta div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--mi-line);
}

.podcast-aside__meta dt,
.podcast-aside__meta dd {
  margin: 0;
  font-size: 12px;
}

.podcast-aside__meta dt {
  color: #71827d;
  font-weight: 620;
}

.podcast-aside__meta dd {
  color: #31544c;
  font-weight: 720;
  text-align: right;
}

.podcast-detail--premium .podcast-transcript [itemscope][itemtype*="AudioObject"],
.podcast-detail--premium .podcast-transcript audio {
  display: none !important;
}

.works-hero__grid {
  min-height: 640px;
  padding-top: 142px;
  padding-bottom: 78px;
}

.works-hero__media {
  border: 10px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  box-shadow: var(--mi-shadow);
}

.works-videos {
  background: linear-gradient(180deg, var(--mi-light-1) 0%, #fff 58%, var(--mi-light-blue) 100%);
}

.works-portfolio {
  background: linear-gradient(180deg, var(--mi-light-blue) 0%, var(--mi-light-2) 84%, #244d45 100%);
}

.mi-site-footer,
.site-body--home .mi-site-footer {
  border: 0;
  background: linear-gradient(180deg, #244d45 0%, #17362f 18%, #0a100e 56%, #080909 100%);
}

.mi-footer-bottom,
.site-body--home .mi-footer-bottom {
  border-top: 0;
}

@media (max-width: 1180px) {
  .mi-header-pill,
  .site-body--home .mi-header-pill,
  .site-body--podcast .mi-header-pill {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mi-global-nav {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(12, 31, 27, .97);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
  }
}

@media (max-width: 900px) {
  .page-hero,
  .podcast-archive-hero__grid,
  .works-hero__grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero__media,
  .podcast-show-artwork,
  .works-hero__media {
    width: min(100%, 620px);
    justify-self: start;
  }

  .product-detail__image {
    position: static;
  }
}

@media (max-width: 760px) {
  .mi-site-header,
  .site-body--home .mi-site-header,
  .site-body--podcast .mi-site-header {
    top: 10px;
    padding: 0;
  }

  .mi-header-pill,
  .site-body--home .mi-header-pill,
  .site-body--podcast .mi-header-pill {
    width: calc(100% - 24px);
    min-height: 64px;
    padding: 0 8px 0 16px;
  }

  .page-hero,
  .podcast-archive-hero__grid,
  .works-hero__grid {
    width: calc(100% - 28px);
    min-height: 0;
    gap: 30px;
    padding-top: 112px;
    padding-bottom: 62px;
  }

  .page-hero__copy h1,
  .podcast-archive-hero h1,
  .works-hero h1 {
    font-size: clamp(36px, 10.8vw, 49px);
  }

  .page-hero__media {
    min-height: 230px;
  }

  .wp-content,
  .product-detail {
    width: calc(100% - 28px);
  }

  .wp-content {
    padding-top: 28px;
  }

  .wp-content :is(p, li),
  .product-detail__body :is(p, li) {
    font-size: 16px;
  }

  .product-detail {
    gap: 24px;
    padding-top: 38px;
  }

  .product-detail__body {
    padding: 22px 18px;
  }

  .podcast-show-artwork {
    width: min(86vw, 390px);
  }
}

/* Podcast directory, global identity and accessible compact players */
.mi-brand--microimport {
  min-width: 0;
}

.mi-brand-caption {
  display: grid;
  min-width: 0;
  max-width: 250px;
  gap: 2px;
  letter-spacing: 0;
  line-height: 1.15;
}

.mi-brand-caption span:first-child {
  color: rgba(255, 255, 255, .96);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.mi-brand-caption span:last-child {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  font-weight: 620;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.mi-header-pill,
.site-body--home .mi-header-pill,
.site-body--podcast .mi-header-pill {
  grid-template-columns: minmax(310px, .82fr) minmax(0, 1.18fr) auto;
  background: rgba(8, 28, 23, .9);
}

.podcast-grid--directory {
  grid-template-columns: 1fr;
  gap: 14px;
}

.podcast-grid--directory .podcast-episode-card,
.home-podcast__list .podcast-episode-card {
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  align-items: stretch;
}

.podcast-grid--directory .podcast-episode-card__image,
.home-podcast__list .podcast-episode-card__image {
  min-height: 100%;
}

.podcast-grid--directory .podcast-episode-card__image img,
.home-podcast__list .podcast-episode-card__image img {
  height: 100%;
  min-height: 170px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.podcast-grid--directory .podcast-episode-card__body,
.home-podcast__list .podcast-episode-card__body {
  align-content: center;
  gap: 9px;
  padding: clamp(18px, 2.5vw, 28px);
}

.podcast-grid--directory .podcast-episode-card h3,
.home-podcast__list .podcast-episode-card h3 {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.18;
}

.podcast-grid--directory .podcast-episode-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
  line-height: 1.55;
}

.podcast-mini-player {
  display: block;
  margin-top: 3px;
}

.podcast-mini-player audio {
  display: none;
}

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

.podcast-controls button,
.podcast-mini-player .podcast-controls button,
.podcast-detail--premium .podcast-controls button {
  display: inline-flex;
  min-width: 0;
  min-height: 40px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(24, 34, 31, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  color: var(--mi-green-deep) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .68);
  font: inherit;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.podcast-controls button:first-child,
.podcast-mini-player .podcast-controls button:first-child {
  border-color: rgba(255, 255, 255, .3);
  background: var(--mi-terra);
  color: #fff !important;
}

.podcast-controls button:hover,
.podcast-controls button:focus-visible,
.podcast-mini-player .podcast-controls button:hover,
.podcast-mini-player .podcast-controls button:focus-visible {
  border-color: rgba(169, 88, 64, .5);
  background: rgba(255, 255, 255, .92);
  color: var(--mi-terra-deep) !important;
}

.podcast-controls button:first-child:hover,
.podcast-controls button:first-child:focus-visible {
  background: var(--mi-terra-deep);
  color: #fff !important;
}

.podcast-controls button span[aria-hidden="true"] {
  width: 12px;
  font-size: 11px;
  line-height: 1;
  text-align: center;
}

.podcast-player__media > audio {
  width: 100%;
  margin-bottom: 12px;
}

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

.podcast-date-directory details {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--mi-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.podcast-date-directory summary {
  display: flex;
  min-height: 52px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--mi-ink);
  font-weight: 760;
  cursor: pointer;
}

.podcast-date-directory summary small {
  color: var(--mi-copy);
  font-size: 11px;
  font-weight: 620;
}

.podcast-date-directory__months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 10px 10px;
  gap: 6px;
}

.podcast-date-directory__months a {
  display: flex;
  min-width: 0;
  padding: 9px 10px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 6px;
  background: rgba(229, 238, 234, .7);
  color: var(--mi-green-deep);
  font-size: 12px;
  text-transform: capitalize;
}

.podcast-date-directory__months a:hover {
  background: rgba(169, 88, 64, .12);
}

.podcast-date-directory__months small {
  color: var(--mi-terra-deep);
  font-size: 10px;
  font-weight: 760;
}

.podcast-month-hero {
  padding: 154px 0 76px;
  background:
    linear-gradient(100deg, rgba(234, 242, 239, .98), rgba(218, 233, 228, .9)),
    url("/assets/img/site/automacao-imoveis-inteligentes-keypad-lutron-alisse-micro-import.webp") center / cover no-repeat;
}

.podcast-month-hero h1 {
  max-width: 850px;
  margin: 10px 0 18px;
  color: var(--mi-ink);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  text-transform: capitalize;
}

.podcast-month-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--mi-copy);
  font-size: 17px;
  line-height: 1.6;
}

.podcast-month-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, .58fr) minmax(0, 1fr);
  gap: 12px;
  margin: 0 0 28px;
}

.podcast-month-nav:last-child {
  margin: 34px 0 0;
}

.podcast-month-nav a,
.podcast-month-nav__empty {
  display: grid;
  min-height: 96px;
  align-content: center;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
  color: var(--mi-ink);
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(38, 67, 60, .09), inset 0 1px 0 rgba(255, 255, 255, .62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.podcast-month-nav a:hover,
.podcast-month-nav a:focus-visible {
  border-color: rgba(169, 88, 64, .34);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 22px 58px rgba(38, 67, 60, .14), inset 0 1px 0 rgba(255, 255, 255, .7);
  outline: none;
  transform: translateY(-1px);
}

.podcast-month-nav span {
  color: var(--mi-terra);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.podcast-month-nav strong {
  color: var(--mi-green-deep);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.12;
  letter-spacing: 0;
}

.podcast-month-nav small {
  color: var(--mi-copy);
  font-size: 13px;
  font-weight: 680;
}

.podcast-month-nav__all {
  text-align: center;
}

.podcast-month-nav__item--next a,
.podcast-month-nav__item--next .podcast-month-nav__empty {
  text-align: right;
}

.podcast-month-nav__empty {
  opacity: .58;
}

.podcast-pagination {
  display: flex;
  margin-top: 34px;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.podcast-pagination > span {
  color: var(--mi-copy);
  font-size: 13px;
  font-weight: 680;
}

@media (max-width: 1180px) {
  .mi-header-pill,
  .site-body--home .mi-header-pill,
  .site-body--podcast .mi-header-pill {
    grid-template-columns: auto auto;
  }

  .mi-brand-caption {
    max-width: 290px;
  }
}

@media (max-width: 900px) {
  .podcast-date-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .mi-brand-caption,
  .mi-brand-divider {
    display: none;
  }

  .podcast-archive-hero__grid > img,
  .podcast-detail-hero figure {
    order: initial;
  }

  .podcast-archive-hero__grid > img.podcast-show-artwork {
    width: min(68vw, 270px);
    justify-self: start;
  }

  .podcast-grid--directory .podcast-episode-card,
  .home-podcast__list .podcast-episode-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .podcast-grid--directory .podcast-episode-card__image img,
  .home-podcast__list .podcast-episode-card__image img {
    min-height: 104px;
  }

  .podcast-grid--directory .podcast-episode-card__body,
  .home-podcast__list .podcast-episode-card__body {
    padding: 15px 13px;
  }

  .podcast-grid--directory .podcast-episode-card p {
    display: none;
  }

  .podcast-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .podcast-controls button,
  .podcast-mini-player .podcast-controls button,
  .podcast-detail--premium .podcast-controls button {
    min-height: 38px;
    padding: 0 8px;
    font-size: 11px;
  }

  .podcast-date-directory {
    grid-template-columns: 1fr;
  }

  .podcast-month-hero {
    padding: 118px 0 58px;
  }

  .podcast-month-hero h1 {
    font-size: clamp(36px, 10.8vw, 49px);
  }

  .podcast-pagination {
    flex-wrap: wrap;
  }

  .podcast-month-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .podcast-month-nav a,
  .podcast-month-nav__empty {
    min-height: 82px;
    padding: 16px;
  }

  .podcast-month-nav__all,
  .podcast-month-nav__item--next a,
  .podcast-month-nav__item--next .podcast-month-nav__empty {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .podcast-grid--directory .podcast-episode-card,
  .home-podcast__list .podcast-episode-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .podcast-controls button span[aria-hidden="true"] {
    display: none;
  }
}

.site-body--authorized-apple {
  background:
    linear-gradient(180deg, #dbe9e5 0%, #eef5f2 26rem, #fff 54rem, #f6f1eb 100%);
}

.site-body--apple {
  background:
    linear-gradient(180deg, #dbe9e5 0%, #eef5f2 28rem, #f8faf9 62rem, #f2ece4 100%);
}

.authorized-apple-page {
  overflow: hidden;
  color: var(--mi-ink);
}

.apple-page {
  overflow: hidden;
  color: var(--mi-ink);
}

.authorized-hero {
  padding: 132px 0 70px;
}

.authorized-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.authorized-hero__copy {
  min-width: 0;
}

.authorized-hero__copy h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--mi-ink);
  font-size: clamp(38px, 4.25vw, 62px);
  font-weight: 730;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.authorized-hero__copy .lede {
  max-width: 670px;
  color: var(--mi-copy);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.66;
}

.authorized-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
}

.authorized-hero__facts div,
.authorized-device-card,
.authorized-steps li {
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 24px 70px rgba(22, 39, 35, .10), inset 0 1px 0 rgba(255, 255, 255, .66);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.authorized-hero__facts div {
  padding: 16px;
}

.authorized-hero__facts dt {
  color: var(--mi-terra);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.authorized-hero__facts dd {
  margin: 5px 0 0;
  color: var(--mi-green-deep);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.35;
}

.authorized-hero__visual {
  position: relative;
  margin: 0;
  min-width: 0;
}

.authorized-hero__visual > img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  box-shadow: var(--mi-shadow);
  filter: saturate(.9) contrast(.98);
}

.authorized-hero__visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(300px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  background: rgba(18, 30, 27, .82);
  color: #fff;
  box-shadow: 0 18px 46px rgba(10, 17, 15, .24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.authorized-hero__visual figcaption img {
  width: 210px;
  max-width: 100%;
  margin-bottom: 10px;
}

.authorized-hero__visual figcaption span {
  display: block;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.45;
}

.authorized-summary {
  padding: 36px 0;
  background: linear-gradient(90deg, rgba(24, 64, 54, .96), rgba(57, 104, 84, .93));
  color: #fff;
}

.authorized-summary__grid,
.authorized-process__grid,
.authorized-automation__grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.authorized-summary h2,
.authorized-process h2,
.authorized-automation h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.authorized-summary p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.66;
}

.authorized-device-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.authorized-device-card {
  display: flex;
  min-height: 100%;
  padding: 20px;
  flex-direction: column;
}

.authorized-device-card img {
  width: 100%;
  height: 150px;
  margin-bottom: 18px;
  object-fit: contain;
}

.authorized-device-card h3 {
  margin: 0 0 8px;
  color: var(--mi-green-deep);
  font-size: 18px;
  line-height: 1.18;
}

.authorized-device-card p,
.authorized-process p,
.authorized-automation p {
  color: var(--mi-copy);
  line-height: 1.65;
}

.authorized-process {
  padding: clamp(58px, 8vw, 104px) 0;
  background:
    linear-gradient(135deg, rgba(226, 238, 233, .94), rgba(251, 248, 243, .96)),
    url("/assets/img/site/automacao-imoveis-inteligentes-keypad-lutron-alisse-micro-import.webp") center / cover no-repeat;
}

.authorized-process__intro p:not(.eyebrow) {
  max-width: 590px;
}

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

.authorized-steps li {
  padding: 20px;
}

.authorized-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mi-terra);
  color: #fff;
  font-size: 12px;
  font-weight: 820;
}

.authorized-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mi-ink);
  font-size: 18px;
  line-height: 1.2;
}

.authorized-steps p {
  margin: 0;
  font-size: 14px;
}

.authorized-automation {
  padding: 42px 0;
  background:
    linear-gradient(90deg, rgba(14, 34, 30, .97), rgba(24, 64, 54, .95)),
    url("/wp-content/uploads/banner-fachada2.jpg") center / cover no-repeat;
  color: #fff;
}

.authorized-automation h2 {
  max-width: 780px;
}

.authorized-automation p {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
}

.apple-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(680px, 88svh, 860px);
  padding: 130px 0 78px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.apple-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% 52%;
  opacity: .18;
  filter: saturate(.58) contrast(.88) brightness(1.22);
  transform: scale(1.02);
}

.apple-hero::before,
.apple-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.apple-hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(232, 241, 238, .98) 0%, rgba(228, 239, 235, .92) 43%, rgba(221, 234, 230, .74) 100%),
    radial-gradient(circle at 82% 24%, rgba(169, 88, 64, .18), transparent 34rem);
}

.apple-hero::after {
  z-index: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(244, 247, 246, .94) 100%);
}

.apple-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .7fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.apple-hero__copy h1 {
  max-width: 790px;
  margin: 0 0 24px;
  color: var(--mi-ink);
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 740;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.apple-hero__copy .lede {
  max-width: 690px;
  color: var(--mi-copy);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.68;
}

.apple-hero__visual {
  position: relative;
  margin: 0;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 8px;
  background: rgba(255, 255, 255, .48);
  box-shadow: 0 30px 90px rgba(38, 67, 60, .14), inset 0 1px 0 rgba(255, 255, 255, .7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.apple-hero__visual > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.apple-hero__visual figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
  background: rgba(12, 31, 27, .82);
  color: #fff;
  box-shadow: 0 20px 56px rgba(7, 18, 15, .28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.apple-hero__visual figcaption span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.apple-hero__visual figcaption strong {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.12;
  text-wrap: balance;
}

.apple-intro {
  padding: clamp(56px, 6vw, 86px) 0;
  background: linear-gradient(90deg, rgba(24, 64, 54, .96), rgba(57, 104, 84, .92));
  color: #fff;
}

.apple-intro__grid,
.apple-showcase__grid,
.apple-environments__grid,
.apple-authorized__grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.apple-intro h2,
.apple-showcase h2,
.apple-environments h2,
.apple-authorized h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.apple-intro h2 {
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.08;
}

.apple-intro p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.66;
}

.apple-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.apple-feature-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 18px 50px rgba(38, 67, 60, .09), inset 0 1px 0 rgba(255, 255, 255, .7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.apple-feature-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mi-terra);
  color: #fff;
  font-size: 12px;
  font-weight: 820;
}

.apple-feature-card h3 {
  margin: 0 0 10px;
  color: var(--mi-green-deep);
  font-size: 19px;
  line-height: 1.18;
}

.apple-feature-card p,
.apple-showcase p,
.apple-environments p,
.apple-authorized p {
  color: var(--mi-copy);
  line-height: 1.65;
}

.apple-showcase {
  padding: clamp(62px, 8vw, 110px) 0;
  background:
    linear-gradient(135deg, rgba(226, 238, 233, .96), rgba(248, 250, 249, .97)),
    url("/assets/img/site/keypad-lutron-alisse-miautomacao.webp") center / cover no-repeat;
}

.apple-showcase figure {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 8px;
  background: rgba(255, 255, 255, .54);
  box-shadow: var(--mi-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.apple-showcase figure img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.apple-showcase h2,
.apple-environments h2,
.apple-authorized h2 {
  margin-bottom: 18px;
}

.apple-environments {
  padding: clamp(62px, 8vw, 110px) 0;
  background:
    linear-gradient(90deg, rgba(12, 31, 27, .94), rgba(24, 64, 54, .9)),
    url("/assets/img/site/quarto-hotel-lutron-myRoom-miautomacao.webp") center / cover no-repeat;
  color: #fff;
}

.apple-environments p {
  max-width: 700px;
  color: rgba(255, 255, 255, .78);
}

.apple-environment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.apple-environment-list span {
  min-height: 92px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-weight: 780;
  line-height: 1.18;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .11);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.apple-authorized {
  padding: clamp(58px, 7vw, 96px) 0;
  background: linear-gradient(180deg, #f8faf9 0%, #eef5f2 100%);
}

.apple-authorized__badge {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
  box-shadow: var(--mi-shadow);
}

.apple-authorized__badge img {
  width: min(100%, 330px);
}

.site-body--equipment {
  background:
    linear-gradient(180deg, #dbe9e5 0%, #eef5f2 28rem, #f8faf9 64rem, #f2ece4 100%);
}

.equipment-page {
  overflow: hidden;
  color: var(--mi-ink);
}

.equipment-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(640px, 82svh, 820px);
  padding: 130px 0 72px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.equipment-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .16;
  filter: saturate(.62) contrast(.88) brightness(1.18);
  transform: scale(1.02);
}

.equipment-hero::before,
.equipment-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.equipment-hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(232, 241, 238, .98) 0%, rgba(228, 239, 235, .93) 48%, rgba(221, 234, 230, .78) 100%),
    radial-gradient(circle at 78% 26%, rgba(169, 88, 64, .16), transparent 34rem);
}

.equipment-hero::after {
  z-index: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(244, 247, 246, .94) 100%);
}

.equipment-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .7fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.equipment-hero__copy h1 {
  max-width: 790px;
  margin: 0 0 24px;
  color: var(--mi-ink);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 740;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

.equipment-hero__copy .lede {
  max-width: 700px;
  color: var(--mi-copy);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.66;
}

.equipment-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
}

.equipment-hero__facts div,
.equipment-card,
.equipment-steps li,
.equipment-directory__grid a,
.equipment-related__grid a {
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 18px 50px rgba(38, 67, 60, .09), inset 0 1px 0 rgba(255, 255, 255, .7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.equipment-hero__facts div {
  padding: 16px;
}

.equipment-hero__facts dt {
  color: var(--mi-terra);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.equipment-hero__facts dd {
  margin: 5px 0 0;
  color: var(--mi-green-deep);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.35;
}

.equipment-hero__visual {
  position: relative;
  margin: 0;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 8px;
  background: rgba(255, 255, 255, .48);
  box-shadow: 0 30px 90px rgba(38, 67, 60, .14), inset 0 1px 0 rgba(255, 255, 255, .7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.equipment-hero__visual > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.equipment-hero__visual figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
  background: rgba(12, 31, 27, .82);
  color: #fff;
  box-shadow: 0 20px 56px rgba(7, 18, 15, .28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.equipment-hero__visual figcaption span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.equipment-hero__visual figcaption strong {
  display: block;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.12;
  text-wrap: balance;
}

.equipment-intro {
  padding: clamp(56px, 6vw, 86px) 0;
  background: linear-gradient(90deg, rgba(24, 64, 54, .96), rgba(57, 104, 84, .92));
  color: #fff;
}

.equipment-intro__grid,
.equipment-process__grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.equipment-intro h2,
.equipment-process h2,
.equipment-related h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.equipment-intro p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.66;
}

.equipment-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.equipment-card {
  min-height: 100%;
  padding: 22px;
}

.equipment-card span,
.equipment-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mi-terra);
  color: #fff;
  font-size: 12px;
  font-weight: 820;
}

.equipment-card h3,
.equipment-steps strong {
  display: block;
  margin: 0 0 10px;
  color: var(--mi-green-deep);
  font-size: 19px;
  line-height: 1.18;
}

.equipment-card p,
.equipment-process p {
  color: var(--mi-copy);
  line-height: 1.65;
}

.equipment-process {
  padding: clamp(62px, 8vw, 110px) 0;
  background:
    linear-gradient(135deg, rgba(226, 238, 233, .96), rgba(248, 250, 249, .97)),
    url("/assets/img/site/keypad-lutron-alisse-miautomacao.webp") center / cover no-repeat;
}

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

.equipment-steps li {
  padding: 20px;
}

.equipment-steps p {
  margin: 0;
  font-size: 14px;
}

.equipment-related,
.equipment-directory {
  padding-bottom: clamp(58px, 7vw, 96px);
  background: linear-gradient(180deg, #f8faf9 0%, #eef5f2 100%);
}

.equipment-related__heading {
  margin-bottom: 20px;
}

.equipment-related__grid,
.equipment-directory__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.equipment-related__grid a,
.equipment-directory__grid a {
  min-height: 84px;
  padding: 18px;
  color: var(--mi-green-deep);
  font-weight: 780;
  line-height: 1.18;
}

.equipment-directory__grid a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.equipment-directory__grid small {
  color: var(--mi-copy);
  font-size: 12px;
  font-weight: 640;
  line-height: 1.3;
}

@media (max-width: 980px) {
  .authorized-hero__grid,
  .authorized-summary__grid,
  .authorized-process__grid,
  .authorized-automation__grid,
  .apple-hero__grid,
  .apple-intro__grid,
  .apple-showcase__grid,
  .apple-environments__grid,
  .apple-authorized__grid,
  .equipment-hero__grid,
  .equipment-intro__grid,
  .equipment-process__grid {
    grid-template-columns: 1fr;
  }

  .authorized-hero {
    padding-top: 118px;
  }

  .apple-hero {
    min-height: 0;
    padding-top: 118px;
  }

  .equipment-hero {
    min-height: 0;
    padding-top: 118px;
  }

  .apple-hero__grid {
    gap: 30px;
  }

  .authorized-hero__facts,
  .authorized-device-grid,
  .apple-feature-grid,
  .apple-environment-list,
  .equipment-hero__facts,
  .equipment-card-grid,
  .equipment-related__grid,
  .equipment-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .authorized-automation .button-row,
  .apple-authorized__grid .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .authorized-hero {
    padding: 104px 0 54px;
  }

  .authorized-hero__copy h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .apple-hero {
    padding: 92px 0 52px;
  }

  .equipment-hero {
    padding: 92px 0 52px;
  }

  .apple-hero__copy h1 {
    font-size: clamp(32px, 9.2vw, 39px);
    line-height: 1.06;
    text-wrap: auto;
  }

  .equipment-hero__copy h1 {
    font-size: clamp(32px, 9.2vw, 39px);
    line-height: 1.06;
    text-wrap: auto;
  }

  .apple-hero__copy .lede {
    font-size: 16px;
    line-height: 1.56;
  }

  .equipment-hero__copy .lede {
    font-size: 16px;
    line-height: 1.56;
  }

  .authorized-hero__facts,
  .authorized-device-grid,
  .authorized-steps,
  .apple-feature-grid,
  .apple-environment-list,
  .equipment-hero__facts,
  .equipment-card-grid,
  .equipment-steps,
  .equipment-related__grid,
  .equipment-directory__grid {
    grid-template-columns: 1fr;
  }

  .authorized-hero__visual > img {
    aspect-ratio: 4 / 3;
  }

  .authorized-hero__visual figcaption {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .apple-hero__visual {
    padding: 10px;
  }

  .apple-hero__visual figcaption {
    position: static;
    margin-top: 10px;
  }

  .equipment-hero__visual {
    padding: 10px;
  }

  .equipment-hero__visual figcaption {
    position: static;
    margin-top: 10px;
  }

  .apple-showcase figure img {
    aspect-ratio: 4 / 3;
  }

}

/* Obras: video archive with local thumbnails */
.works-featured {
  background:
    linear-gradient(180deg, var(--mi-light-1) 0%, #fff 42%, var(--mi-light-blue) 100%);
}

.works-featured .section-heading {
  max-width: 880px;
}

.works-featured-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.works-media-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--mi-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(38, 67, 60, .1);
}

.works-media-card__thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #dbe8e4;
  color: #fff;
  aspect-ratio: 9 / 16;
}

.works-media-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.works-media-card__thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(12, 25, 22, .06) 0%, transparent 38%, rgba(12, 25, 22, .76) 100%);
}

.works-media-card:hover .works-media-card__thumb img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.works-media-card__source,
.works-media-card__play {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 999px;
  background: rgba(12, 25, 22, .45);
  color: #fff;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.works-media-card__source {
  top: 12px;
  left: 12px;
  padding: 0 10px;
}

.works-media-card__play {
  right: 12px;
  bottom: 12px;
  padding: 0 12px;
}

.works-media-card__body {
  display: grid;
  min-width: 0;
  gap: 8px;
  padding: 16px;
}

.works-media-card__body > span {
  color: var(--mi-terra);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.works-media-card h3 {
  margin: 0;
  color: var(--mi-ink);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.12;
  letter-spacing: 0;
}

.works-media-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--mi-copy);
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.works-media-card--lead {
  background: rgba(255, 255, 255, .96);
}

.works-media-card--compact {
  box-shadow: 0 14px 34px rgba(38, 67, 60, .08);
}

.works-media-card--compact .works-media-card__body {
  padding: 14px;
}

.works-media-card--compact h3 {
  font-size: 17px;
}

.works-media-card--compact p {
  font-size: 13px;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.works-categories {
  background:
    linear-gradient(180deg, var(--mi-light-blue) 0%, var(--mi-light-2) 42%, #fff 100%);
}

.works-category-list {
  display: grid;
  gap: 14px;
}

.works-category {
  overflow: hidden;
  border: 1px solid var(--mi-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 42px rgba(38, 67, 60, .08);
}

.works-category summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2.3vw, 26px);
  cursor: pointer;
  color: var(--mi-ink);
  font-weight: 760;
  list-style: none;
}

.works-category summary::-webkit-details-marker {
  display: none;
}

.works-category summary::after {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(169, 88, 64, .28);
  border-radius: 50%;
  color: var(--mi-terra);
  content: "+";
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
}

.works-category[open] summary::after {
  content: "-";
}

.works-category summary span {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.08;
}

.works-category summary small {
  margin-left: auto;
  color: #6d7d78;
  font-size: 12px;
  font-weight: 720;
  white-space: nowrap;
}

.works-category > p {
  max-width: 860px;
  margin: -8px clamp(18px, 2.3vw, 26px) 22px;
  color: var(--mi-copy);
  font-size: 16px;
  line-height: 1.65;
}

.works-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 2.3vw, 26px) clamp(18px, 2.3vw, 26px);
}

.works-portfolio {
  background:
    linear-gradient(180deg, #fff 0%, var(--mi-light-1) 32%, var(--mi-light-2) 78%, #244d45 100%);
}

@media (max-width: 1180px) {
  .works-featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .works-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .works-media-card__body {
    padding: 13px;
  }

  .works-media-card h3 {
    font-size: 16px;
  }

  .works-media-card p {
    font-size: 13px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .works-category summary {
    align-items: flex-start;
    padding: 18px;
  }

  .works-category summary {
    flex-wrap: wrap;
  }

  .works-category summary small {
    order: 3;
    width: 100%;
    margin: 0;
  }

  .works-category summary::after {
    margin-left: auto;
  }

  .works-category > p {
    margin: -4px 18px 18px;
    font-size: 15px;
  }

  .works-category-grid {
    padding: 0 10px 10px;
  }
}

@media (max-width: 460px) {
  .works-featured-grid,
  .works-category-grid {
    grid-template-columns: 1fr;
  }

  .works-media-card {
    grid-template-columns: minmax(112px, 40%) minmax(0, 1fr);
  }

  .works-media-card__thumb {
    min-height: 100%;
  }

  .works-media-card__source {
    top: 8px;
    left: 8px;
  }

  .works-media-card__play {
    right: 8px;
    bottom: 8px;
  }
}

/* Strategic public pages */
.contact-page,
.solution-page {
  background: linear-gradient(180deg, var(--mi-light-1) 0%, #fff 38%, var(--mi-light-2) 100%);
  color: var(--mi-ink);
}

.contact-hero,
.solution-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      rgba(234, 242, 239, .98) 0%,
      rgba(229, 240, 236, .95) 50%,
      rgba(216, 232, 227, .86) 100%),
    url("/assets/img/site/automacao-imoveis-inteligentes-keypad-lutron-alisse-micro-import.webp") center / cover no-repeat;
  color: var(--mi-ink);
}

.solution-hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .16;
  filter: saturate(.86) contrast(.95);
}

.contact-hero__grid,
.solution-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 580px;
  grid-template-columns: minmax(0, .96fr) minmax(360px, 1.04fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  padding-top: 126px;
  padding-bottom: 66px;
}

.contact-hero__grid > *,
.solution-hero__grid > *,
.contact-hero__copy,
.solution-hero__copy {
  min-width: 0;
}

.contact-hero__copy h1,
.solution-hero__copy h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--mi-ink);
  font-size: clamp(40px, 4.35vw, 64px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
}

.contact-hero__copy .lede,
.solution-hero__copy .lede {
  max-width: 700px;
  margin: 0 0 28px;
  color: var(--mi-copy);
  font-size: clamp(16px, 1.32vw, 20px);
  line-height: 1.58;
}

.contact-hero__visual,
.solution-hero__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  box-shadow: var(--mi-shadow);
}

.contact-hero__visual img,
.solution-hero__visual > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-hero__visual figcaption,
.solution-hero__visual figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  background: rgba(12, 25, 22, .48);
  color: #fff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-hero__visual figcaption span,
.solution-hero__visual figcaption span {
  color: #efc3b3;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-hero__visual figcaption strong,
.solution-hero__visual figcaption strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.solution-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
}

.solution-hero__facts div,
.contact-card,
.contact-highlight-grid article,
.solution-card {
  border: 1px solid var(--mi-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 40px rgba(38, 67, 60, .09);
}

.solution-hero__facts div {
  padding: 16px;
}

.solution-hero__facts dt,
.solution-hero__facts dd {
  margin: 0;
}

.solution-hero__facts dt {
  margin-bottom: 7px;
  color: var(--mi-terra);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.solution-hero__facts dd {
  color: var(--mi-copy);
  font-size: 13px;
  line-height: 1.45;
}

.contact-options,
.solution-capabilities {
  background: linear-gradient(180deg, #fff 0%, var(--mi-light-blue) 100%);
}

.contact-card-grid,
.contact-highlight-grid,
.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-card,
.contact-highlight-grid article,
.solution-card {
  display: grid;
  min-width: 0;
  gap: 10px;
  padding: clamp(20px, 2.3vw, 28px);
  color: inherit;
  text-decoration: none;
}

.contact-card span,
.contact-highlight-grid span,
.solution-card span {
  color: var(--mi-terra);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-highlight-grid h3,
.solution-card h3 {
  margin: 0;
  color: var(--mi-ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.contact-card strong {
  font-size: clamp(18px, 1.35vw, 21px);
}

.contact-card p,
.contact-highlight-grid p,
.solution-card p {
  margin: 0;
  color: var(--mi-copy);
  font-size: 15px;
  line-height: 1.6;
}

.contact-card:hover,
.solution-related a:hover {
  transform: translateY(-2px);
}

.contact-projects,
.solution-intro,
.solution-feature {
  background: linear-gradient(180deg, var(--mi-light-blue) 0%, var(--mi-light-1) 100%);
}

.contact-projects__grid,
.solution-intro__grid,
.solution-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(58px, 7vw, 96px) 0;
}

.contact-projects h2,
.solution-intro h2,
.solution-feature h2 {
  margin: 0;
  color: var(--mi-ink);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.contact-projects p,
.solution-intro p,
.solution-feature p {
  margin: 0;
  color: var(--mi-copy);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.7;
}

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

.contact-project-list li,
.solution-related a {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 16px 18px;
  border: 1px solid var(--mi-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .84);
  color: var(--mi-ink);
  font-weight: 760;
  line-height: 1.25;
  box-shadow: 0 12px 30px rgba(38, 67, 60, .07);
}

.contact-highlights {
  background: linear-gradient(180deg, var(--mi-light-1) 0%, #fff 100%);
}

.solution-related {
  display: grid;
  gap: 12px;
}

.solution-related a {
  justify-content: space-between;
  color: var(--mi-terra-deep);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.solution-related a::after {
  content: ">";
  color: var(--mi-terra);
}

@media (max-width: 1100px) {
  .contact-card-grid,
  .contact-highlight-grid,
  .solution-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1360px) {
  .mi-header-pill,
  .site-body--home .mi-header-pill,
  .site-body--podcast .mi-header-pill {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mi-global-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    display: none;
    max-height: calc(100vh - 112px);
    overflow: auto;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background: rgba(12, 31, 27, .97);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
    backdrop-filter: blur(26px) saturate(1.16);
    -webkit-backdrop-filter: blur(26px) saturate(1.16);
  }

  .mi-site-header.is-menu-open .mi-global-nav {
    display: flex;
  }

  .mi-nav-row {
    width: 100%;
  }

  .mi-nav-link,
  .mi-nav-trigger {
    justify-content: space-between;
    min-height: 44px;
  }

  .mi-nav-row > .mi-nav-link,
  .mi-nav-dropdown .mi-nav-row > .mi-nav-dropdown-link {
    flex: 1;
  }

  .mi-nav-submenu-toggle {
    width: 44px;
    min-height: 44px;
    margin-left: 0;
  }

  .mi-nav-item--dropdown::after {
    display: none;
  }

  .mi-nav-dropdown {
    position: static;
    min-width: 0;
    display: none;
    margin: 2px 0 8px;
    padding: 6px;
    border-radius: 14px;
    box-shadow: none;
    transform: none;
    background: rgba(255, 255, 255, .04);
  }

  .mi-nav-dropdown--grouped {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mi-nav-dropdown-group {
    padding: 4px;
  }

  .mi-nav-item.is-open > .mi-nav-dropdown {
    display: block;
  }

  .mi-nav-item:hover > .mi-nav-dropdown,
  .mi-nav-item:focus-within > .mi-nav-dropdown {
    display: none;
  }

  .mi-nav-item.is-open:hover > .mi-nav-dropdown,
  .mi-nav-item.is-open:focus-within > .mi-nav-dropdown {
    display: block;
  }

  .mi-nav-item.is-open:hover > .mi-nav-dropdown--grouped {
    display: grid;
  }

  .mi-nav-dropdown--nested {
    max-height: none;
    margin-left: 0;
    background: rgba(255, 255, 255, .04);
  }

  .mi-nav-subitem.is-open > .mi-nav-dropdown--nested {
    display: block;
  }

  .mi-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .contact-hero__grid,
  .solution-hero__grid,
  .contact-projects__grid,
  .solution-intro__grid,
  .solution-feature__grid {
    grid-template-columns: 1fr;
  }

  .solution-hero__facts {
    grid-template-columns: 1fr;
  }

  .contact-hero__visual,
  .solution-hero__visual {
    width: min(100%, 620px);
  }
}

@media (max-width: 640px) {
  .mi-site-header,
  .site-body--home .mi-site-header,
  .site-body--podcast .mi-site-header {
    width: 100vw;
  }

  .mi-header-pill,
  .site-body--home .mi-header-pill,
  .site-body--podcast .mi-header-pill {
    position: relative;
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px);
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto !important;
    overflow: hidden;
  }

  .mi-brand--microimport {
    max-width: calc(100vw - 92px);
    min-width: 0;
  }

  .mi-brand-logo--microimport {
    width: min(112px, 32vw);
  }

  .pill-apple--microimport {
    display: none;
  }

  .mi-header-actions {
    position: fixed;
    top: 20px;
    right: auto;
    left: min(322px, calc(100% - 68px));
    z-index: 10020;
    flex: 0 0 auto;
    width: 44px;
    transform: none;
  }

  .mi-menu-toggle {
    position: static;
    display: inline-flex !important;
    flex: 0 0 44px;
    background: rgba(255, 255, 255, .08);
  }

  .mi-menu-toggle span {
    background: #fff;
  }

  .contact-hero__grid,
  .solution-hero__grid {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    gap: 30px;
    padding-inline: 16px;
    padding-top: 112px;
    padding-bottom: 62px;
  }

  .contact-hero__copy h1,
  .solution-hero__copy h1 {
    width: min(100%, calc(100vw - 32px));
    max-width: min(11.5ch, calc(100vw - 32px));
    font-size: clamp(31px, 8.9vw, 38px);
    line-height: 1.05;
    overflow-wrap: break-word;
    text-wrap: auto;
  }

  .contact-hero__copy .lede,
  .solution-hero__copy .lede {
    width: min(32ch, calc(100vw - 32px));
    max-width: min(32ch, calc(100vw - 32px));
    font-size: 16px;
    line-height: 1.55;
    overflow-wrap: break-word;
    white-space: normal !important;
  }

  .contact-hero__visual,
  .solution-hero__visual {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .contact-card-grid,
  .contact-highlight-grid,
  .solution-card-grid,
  .contact-project-list {
    grid-template-columns: 1fr;
  }

  .contact-hero__visual figcaption,
  .solution-hero__visual figcaption {
    position: static;
    border-radius: 0;
    background: #17362f;
    overflow-wrap: break-word;
    white-space: normal !important;
  }

  .contact-hero__visual figcaption strong,
  .solution-hero__visual figcaption strong {
    display: block;
    max-width: calc(100vw - 64px);
    overflow-wrap: break-word;
    white-space: normal !important;
  }
}

/* Navigation hardening for desktop hover and mobile menus */
.mi-site-header,
.site-body--home .mi-site-header,
.site-body--podcast .mi-site-header,
.mi-header-pill,
.site-body--home .mi-header-pill,
.site-body--podcast .mi-header-pill {
  overflow: visible;
}

.mi-nav-row--top {
  border-radius: 999px;
}

@media (min-width: 1361px) {
  .mi-nav-dropdown {
    display: block;
    max-height: none;
    overflow: visible;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition:
      opacity .16s ease,
      visibility .16s ease,
      transform .16s ease;
    visibility: hidden;
  }

  .mi-nav-item:hover > .mi-nav-dropdown,
  .mi-nav-item:focus-within > .mi-nav-dropdown,
  .mi-nav-item.is-open > .mi-nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
  }

  .mi-nav-item--dropdown::after {
    height: 22px;
    z-index: 19;
  }

  .mi-nav-dropdown a,
  .mi-nav-dropdown-link {
    max-width: min(340px, calc(100vw - 80px));
    white-space: normal;
  }

  .mi-nav-dropdown--nested {
    display: none;
    max-height: min(54vh, 430px);
    overflow: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .mi-nav-subitem:hover > .mi-nav-dropdown--nested,
  .mi-nav-subitem:focus-within > .mi-nav-dropdown--nested,
  .mi-nav-subitem.is-open > .mi-nav-dropdown--nested {
    display: block;
  }
}

@media (max-width: 1360px) {
  .mi-header-pill,
  .site-body--home .mi-header-pill,
  .site-body--podcast .mi-header-pill {
    overflow: visible !important;
  }

  .mi-global-nav {
    position: fixed;
    top: 104px;
    right: max(14px, env(safe-area-inset-right));
    left: max(14px, env(safe-area-inset-left));
    z-index: 10010;
    width: auto;
    max-height: calc(100svh - 122px);
    overflow: auto;
    overscroll-behavior: contain;
  }

  .mi-nav-link,
  .mi-nav-dropdown a,
  .mi-nav-dropdown-link {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mi-nav-dropdown,
  .mi-nav-dropdown--nested {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 760px) {
  .mi-global-nav {
    top: 84px;
    right: 12px;
    left: 12px;
    max-height: calc(100svh - 98px);
  }
}

/* myCare hospital automation */
.site-body--mycare {
  background:
    linear-gradient(180deg,
      #dce9e6 0%,
      var(--mi-light-blue) 26rem,
      var(--mi-light-1) 48rem,
      #fff 68%,
      var(--mi-light-2) 100%);
  color: var(--mi-ink);
}

.mycare-page {
  overflow: hidden;
}

.mycare-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(720px, 88svh, 900px);
  display: grid;
  align-items: center;
  padding: 156px 0 84px;
  overflow: hidden;
}

.mycare-hero__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
  filter: saturate(.78) contrast(.88) brightness(1.12);
}

.mycare-hero::before,
.mycare-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.mycare-hero::before {
  background:
    linear-gradient(90deg,
      rgba(232, 241, 238, .98) 0%,
      rgba(226, 238, 234, .94) 43%,
      rgba(216, 232, 227, .78) 70%,
      rgba(207, 225, 220, .9) 100%),
    radial-gradient(circle at 78% 28%, rgba(169, 88, 64, .14), transparent 30rem);
}

.mycare-hero::after {
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(244, 247, 246, 0), #f4f7f6 84%);
}

.mycare-hero__grid,
.mycare-intro__grid,
.mycare-ipad-grid,
.mycare-operations__grid,
.mycare-technology__grid,
.mycare-cta__grid {
  display: grid;
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.mycare-hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .72fr);
}

.mycare-hero__copy h1 {
  max-width: 840px;
  margin: 0;
  color: var(--mi-ink);
  font-size: clamp(48px, 5.6vw, 84px);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}

.mycare-hero__copy .lede {
  max-width: 710px;
  margin: 26px 0 0;
  color: var(--mi-copy);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.66;
}

.mycare-hero__copy .button-row {
  margin-top: 32px;
}

.mycare-hero__tags,
.mycare-status-list,
.mycare-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.mycare-hero__tags li,
.mycare-status-list span,
.mycare-feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  background: rgba(255, 255, 255, .32);
  color: #52645f;
  font-size: 11px;
  font-weight: 720;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mycare-hero__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 24px;
  background: rgba(255, 255, 255, .36);
  box-shadow: var(--mi-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mycare-hero__visual img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.mycare-hero__visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  background: rgba(12, 31, 27, .86);
  color: #fff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mycare-hero__visual figcaption span,
.mycare-card span,
.mycare-steps span {
  display: block;
  margin-bottom: 8px;
  color: rgba(217, 198, 173, .96);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mycare-hero__visual figcaption strong {
  display: block;
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.22;
  letter-spacing: 0;
}

.mycare-intro,
.mycare-technology {
  padding: clamp(72px, 9vw, 118px) 0;
  background: linear-gradient(180deg, #f4f7f6 0%, #fff 100%);
}

.mycare-intro__grid,
.mycare-technology__grid {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
}

.mycare-intro h2,
.mycare-ipad-copy h2,
.mycare-operations h2,
.mycare-technology h2,
.mycare-cta h2 {
  margin: 0;
  color: var(--mi-ink);
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.mycare-intro p,
.mycare-ipad-copy p,
.mycare-operations p,
.mycare-technology p,
.mycare-cta p {
  color: var(--mi-copy);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.7;
}

.mycare-card-grid,
.mycare-steps,
.mycare-gallery,
.mycare-tech-cards {
  display: grid;
  gap: 18px;
}

.mycare-card-grid,
.mycare-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mycare-card,
.mycare-steps article,
.mycare-tech-cards article {
  border: 1px solid var(--mi-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 48px rgba(38, 67, 60, .09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mycare-card,
.mycare-steps article {
  min-height: 250px;
  padding: 26px;
}

.mycare-card span,
.mycare-steps span {
  color: var(--mi-terra);
}

.mycare-card h3,
.mycare-steps h3,
.mycare-tech-cards h3 {
  margin: 0 0 12px;
  color: var(--mi-ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.mycare-card p,
.mycare-steps p,
.mycare-tech-cards p {
  margin: 0;
  color: var(--mi-copy);
  line-height: 1.62;
}

.mycare-ipad-section {
  padding: clamp(76px, 10vw, 136px) 0;
  background:
    linear-gradient(180deg, #fff 0%, var(--mi-light-blue) 48%, var(--mi-light-2) 100%);
}

.mycare-ipad-grid {
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
}

.mycare-ipad-copy {
  max-width: 640px;
}

.mycare-ipad {
  position: relative;
  justify-self: end;
  width: min(100%, 680px);
  padding: clamp(16px, 2vw, 22px);
  border: clamp(10px, 1.8vw, 16px) solid #111615;
  border-radius: clamp(28px, 4vw, 46px);
  background: #111615;
  box-shadow:
    0 30px 80px rgba(38, 67, 60, .22),
    inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.mycare-ipad__camera {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  transform: translateY(-50%);
}

.mycare-screen {
  min-height: 470px;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(18px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(244, 247, 246, .98), rgba(229, 238, 244, .96)),
    radial-gradient(circle at 82% 10%, rgba(169, 88, 64, .16), transparent 18rem);
}

.mycare-screen__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.mycare-screen__top span,
.mycare-screen__scene span {
  display: block;
  color: var(--mi-terra);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mycare-screen__top strong {
  display: block;
  margin-top: 4px;
  color: var(--mi-ink);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.05;
}

.mycare-screen__top small {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(40, 89, 79, .1);
  color: var(--mi-green);
  font-size: 12px;
  font-weight: 760;
}

.mycare-screen__scene {
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 22px;
  background: rgba(255, 255, 255, .56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
}

.mycare-screen__scene strong {
  display: block;
  margin-top: 8px;
  color: var(--mi-ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: .98;
}

.mycare-screen__scene p {
  max-width: 460px;
  margin: 10px 0 0;
  color: var(--mi-copy);
  font-size: 15px;
  line-height: 1.48;
}

.mycare-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mycare-app-grid button {
  min-width: 0;
  min-height: 112px;
  padding: 17px;
  border: 1px solid rgba(24, 34, 31, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  color: var(--mi-ink);
  text-align: left;
  box-shadow: 0 12px 28px rgba(38, 67, 60, .08);
}

.mycare-app-grid strong,
.mycare-app-grid span {
  display: block;
}

.mycare-app-grid strong {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.15;
}

.mycare-app-grid span {
  color: var(--mi-copy);
  font-size: 13px;
}

.mycare-journey {
  background: linear-gradient(180deg, var(--mi-light-2) 0%, #fff 100%);
}

.mycare-operations {
  padding: clamp(76px, 10vw, 132px) 0;
  background:
    linear-gradient(135deg, rgba(12, 31, 27, .98) 0%, rgba(23, 54, 47, .94) 60%, rgba(40, 89, 79, .9) 100%);
  color: #fff;
}

.mycare-operations__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.mycare-operations figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.mycare-operations figure img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.mycare-operations h2 {
  color: #fff;
}

.mycare-operations p {
  color: rgba(255, 255, 255, .76);
}

.mycare-status-list span {
  border-color: rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .82);
}

.mycare-gallery-section {
  background: linear-gradient(180deg, #fff 0%, var(--mi-light-1) 100%);
}

.mycare-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.mycare-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mi-shadow);
}

.mycare-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mycare-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(12, 31, 27, .82);
  color: #fff;
  font-size: 12px;
  font-weight: 760;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mycare-technology {
  background:
    linear-gradient(180deg, var(--mi-light-1) 0%, #fff 44%, var(--mi-light-blue) 100%);
}

.mycare-tech-cards {
  grid-template-columns: 1fr;
}

.mycare-tech-cards article {
  padding: 24px;
}

.mycare-cta {
  padding: clamp(76px, 10vw, 130px) 0;
  background:
    linear-gradient(180deg, var(--mi-light-blue) 0%, var(--mi-light-2) 34%, #244d45 100%);
}

.mycare-cta__grid {
  grid-template-columns: minmax(0, 1fr) auto;
}

.mycare-cta .button--glass {
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .24);
  color: var(--mi-green-deep) !important;
}

@media (max-width: 1100px) {
  .mycare-card-grid,
  .mycare-steps,
  .mycare-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .mycare-hero__grid,
  .mycare-intro__grid,
  .mycare-ipad-grid,
  .mycare-operations__grid,
  .mycare-technology__grid,
  .mycare-cta__grid {
    grid-template-columns: 1fr;
  }

  .mycare-ipad {
    justify-self: start;
  }

  .mycare-cta .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .mycare-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .mycare-hero__grid,
  .mycare-card-grid,
  .mycare-steps,
  .mycare-gallery {
    grid-template-columns: 1fr;
  }

  .mycare-hero__copy h1 {
    max-width: 11.5ch;
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.04;
  }

  .mycare-hero__visual figcaption {
    position: static;
    border-radius: 0;
  }

  .mycare-card,
  .mycare-steps article {
    min-height: 0;
  }

  .mycare-ipad {
    width: 100%;
    padding: 12px;
    border-width: 10px;
    border-radius: 30px;
  }

  .mycare-ipad__camera {
    display: none;
  }

  .mycare-screen {
    min-height: 0;
    border-radius: 20px;
    padding: 16px;
  }

  .mycare-screen__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .mycare-screen__scene strong {
    font-size: clamp(30px, 10vw, 42px);
  }

  .mycare-app-grid {
    grid-template-columns: 1fr;
  }

  .mycare-app-grid button {
    min-height: 86px;
  }

  .mycare-operations figure img {
    aspect-ratio: 4 / 3;
  }
}
